pub struct Sid {
pub revision: u8,
pub identifier_authority: u64,
pub sub_authorities: Vec<u32>,
}Expand description
Windows Security Identifier. Stored canonically; Display yields S-1-5-....
Fields§
§revision: u86-byte identifier authority (big-endian on the wire).
Implementations§
Trait Implementations§
impl Eq for Sid
impl StructuralPartialEq for Sid
Auto Trait Implementations§
impl Freeze for Sid
impl RefUnwindSafe for Sid
impl Send for Sid
impl Sync for Sid
impl Unpin for Sid
impl UnsafeUnpin for Sid
impl UnwindSafe for Sid
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