pub struct OperatorId(pub String);Expand description
Opaque identifier for a human operator (Principal::Operator).
In v0.5 producers this is whatever the bearer-token subject claim resolves to; in v1+ producers this is the operator’s stable id in the authority-keys config.
Tuple Fields§
§0: StringImplementations§
Trait Implementations§
Source§impl Clone for OperatorId
impl Clone for OperatorId
Source§fn clone(&self) -> OperatorId
fn clone(&self) -> OperatorId
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 OperatorId
impl Debug for OperatorId
Source§impl<'de> Deserialize<'de> for OperatorId
impl<'de> Deserialize<'de> for OperatorId
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 Display for OperatorId
impl Display for OperatorId
Source§impl From<&str> for OperatorId
impl From<&str> for OperatorId
Source§impl From<String> for OperatorId
impl From<String> for OperatorId
Source§impl Hash for OperatorId
impl Hash for OperatorId
Source§impl Ord for OperatorId
impl Ord for OperatorId
Source§fn cmp(&self, other: &OperatorId) -> Ordering
fn cmp(&self, other: &OperatorId) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for OperatorId
impl PartialEq for OperatorId
Source§fn eq(&self, other: &OperatorId) -> bool
fn eq(&self, other: &OperatorId) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for OperatorId
impl PartialOrd for OperatorId
Source§impl Serialize for OperatorId
impl Serialize for OperatorId
impl Eq for OperatorId
impl StructuralPartialEq for OperatorId
Auto Trait Implementations§
impl Freeze for OperatorId
impl RefUnwindSafe for OperatorId
impl Send for OperatorId
impl Sync for OperatorId
impl Unpin for OperatorId
impl UnsafeUnpin for OperatorId
impl UnwindSafe for OperatorId
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