pub struct AppRegistration {
pub id: String,
pub name: String,
pub website: Option<String>,
pub redirect_uri: String,
pub client_id: String,
pub client_secret: String,
pub vapid_key: Option<String>,
}Expand description
Response from a successful application registration.
Fields§
§id: String§name: String§website: Option<String>§redirect_uri: String§client_id: String§client_secret: String§vapid_key: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for AppRegistration
impl<'de> Deserialize<'de> for AppRegistration
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for AppRegistration
impl RefUnwindSafe for AppRegistration
impl Send for AppRegistration
impl Sync for AppRegistration
impl Unpin for AppRegistration
impl UnwindSafe for AppRegistration
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more