pub enum SignerKind {
ServiceAccount,
Device,
}Expand description
What kind of principal signed a verdict.
Variants§
ServiceAccount
A trusted automation principal. Trust-set membership remains caller policy.
Device
A human device key. Device verdicts are always advisory-only.
Implementations§
Source§impl SignerKind
impl SignerKind
Trait Implementations§
Source§impl Clone for SignerKind
impl Clone for SignerKind
Source§fn clone(&self) -> SignerKind
fn clone(&self) -> SignerKind
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 moreimpl Copy for SignerKind
Source§impl Debug for SignerKind
impl Debug for SignerKind
Source§impl Default for SignerKind
impl Default for SignerKind
Source§fn default() -> SignerKind
fn default() -> SignerKind
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SignerKind
impl<'de> Deserialize<'de> for SignerKind
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
impl Eq for SignerKind
Source§impl PartialEq for SignerKind
impl PartialEq for SignerKind
Source§impl Serialize for SignerKind
impl Serialize for SignerKind
impl StructuralPartialEq for SignerKind
Auto Trait Implementations§
impl Freeze for SignerKind
impl RefUnwindSafe for SignerKind
impl Send for SignerKind
impl Sync for SignerKind
impl Unpin for SignerKind
impl UnsafeUnpin for SignerKind
impl UnwindSafe for SignerKind
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