pub struct Settings {
pub domain: String,
pub uri: String,
pub salt: String,
pub network: String,
pub scheme: String,
pub statement: String,
pub sign_in_expires_in: u64,
pub session_expires_in: u64,
pub targets: Option<Vec<Principal>>,
pub runtime_features: Option<Vec<RuntimeFeature>>,
}Fields§
§domain: String§uri: String§salt: String§network: String§scheme: String§statement: String§sign_in_expires_in: u64§session_expires_in: u64§targets: Option<Vec<Principal>>§runtime_features: Option<Vec<RuntimeFeature>>Trait Implementations§
Auto Trait Implementations§
impl Freeze for Settings
impl RefUnwindSafe for Settings
impl Send for Settings
impl Sync for Settings
impl Unpin for Settings
impl UnsafeUnpin for Settings
impl UnwindSafe for Settings
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