pub struct SuiteAuth {
pub provider: String,
pub required: bool,
pub secret_env: String,
pub rest: Option<SuiteAuthRest>,
pub graphql: Option<SuiteAuthGraphql>,
}Fields§
§provider: String§required: bool§secret_env: String§rest: Option<SuiteAuthRest>§graphql: Option<SuiteAuthGraphql>Trait Implementations§
Source§impl<'de> Deserialize<'de> for SuiteAuth
impl<'de> Deserialize<'de> for SuiteAuth
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 SuiteAuth
impl RefUnwindSafe for SuiteAuth
impl Send for SuiteAuth
impl Sync for SuiteAuth
impl Unpin for SuiteAuth
impl UnsafeUnpin for SuiteAuth
impl UnwindSafe for SuiteAuth
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