pub struct OperatorId(/* private fields */);Expand description
Unique identifier for a human operator.
Implementations§
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 moreimpl Copy for OperatorId
Source§impl Debug for OperatorId
impl Debug for OperatorId
Source§impl Default for OperatorId
impl Default 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
impl Eq for OperatorId
Source§impl From<OperatorId> for Uuid
impl From<OperatorId> for Uuid
Source§fn from(id: OperatorId) -> Self
fn from(id: OperatorId) -> Self
Converts to this type from the input type.
Source§impl From<Uuid> for OperatorId
impl From<Uuid> for OperatorId
Source§impl FromStr for OperatorId
Every id round-trips through its own Display.
impl FromStr for OperatorId
Every id round-trips through its own Display.
Without this, anything that parses an id from a string — clap
value_parsers, query strings, config files — has to widen the
field back to a bare Uuid at the boundary and convert by
hand, which is the exact laundering the newtype exists to
prevent. agora-cli carried a hand-written
parse_moderation_action_id for precisely this reason.
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§impl PartialOrd for OperatorId
impl PartialOrd for OperatorId
Source§impl Serialize for OperatorId
impl Serialize 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