pub struct SentinelCredsRecord {
pub jwt: String,
pub seed: String,
}Expand description
Sentinel credentials returned alongside a successful bind.
Fields§
§jwt: String§seed: StringTrait Implementations§
Source§impl Clone for SentinelCredsRecord
impl Clone for SentinelCredsRecord
Source§fn clone(&self) -> SentinelCredsRecord
fn clone(&self) -> SentinelCredsRecord
Returns a duplicate of the value. Read more
1.0.0 · 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 SentinelCredsRecord
impl Debug for SentinelCredsRecord
Source§impl<'de> Deserialize<'de> for SentinelCredsRecord
impl<'de> Deserialize<'de> for SentinelCredsRecord
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
Source§impl PartialEq for SentinelCredsRecord
impl PartialEq for SentinelCredsRecord
Source§impl Serialize for SentinelCredsRecord
impl Serialize for SentinelCredsRecord
impl StructuralPartialEq for SentinelCredsRecord
Auto Trait Implementations§
impl Freeze for SentinelCredsRecord
impl RefUnwindSafe for SentinelCredsRecord
impl Send for SentinelCredsRecord
impl Sync for SentinelCredsRecord
impl Unpin for SentinelCredsRecord
impl UnsafeUnpin for SentinelCredsRecord
impl UnwindSafe for SentinelCredsRecord
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