pub struct PassConfig {
pub registry_verifying_key: String,
pub maximum_clock_skew_seconds: u64,
}Expand description
Registry pass verification configuration. Every field is required when present.
Fields§
§registry_verifying_key: StringRegistry Ed25519 verifying key as exactly 64 hexadecimal characters.
maximum_clock_skew_seconds: u64Maximum admitted server-clock skew in seconds.
Trait Implementations§
Source§impl Clone for PassConfig
impl Clone for PassConfig
Source§fn clone(&self) -> PassConfig
fn clone(&self) -> PassConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PassConfig
impl Debug for PassConfig
Source§impl<'de> Deserialize<'de> for PassConfig
impl<'de> Deserialize<'de> for PassConfig
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 PassConfig
impl RefUnwindSafe for PassConfig
impl Send for PassConfig
impl Sync for PassConfig
impl Unpin for PassConfig
impl UnsafeUnpin for PassConfig
impl UnwindSafe for PassConfig
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