pub struct ActorRef {
pub kind: ActorKind,
pub id: ActorId,
}Expand description
Identifies the user, service, or system responsible for a commit.
LoonFS stores this value as provided. It does not authenticate the actor or look up profile information.
Fields§
§kind: ActorKindThe type of actor.
id: ActorIdA stable identifier supplied by the application.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ActorRef
impl<'de> Deserialize<'de> for ActorRef
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 ActorRef
impl StructuralPartialEq for ActorRef
Auto Trait Implementations§
impl Freeze for ActorRef
impl RefUnwindSafe for ActorRef
impl Send for ActorRef
impl Sync for ActorRef
impl Unpin for ActorRef
impl UnsafeUnpin for ActorRef
impl UnwindSafe for ActorRef
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