Struct btlib::IssuedProcRec
source · pub struct IssuedProcRec {
pub addr: IpAddr,
pub pub_creds: ConcretePub,
pub writecap: Writecap,
pub authz_attrs: AuthzAttrs,
}
Expand description
A record which stores the authorization attributes, credentials, writecap, and IP address of a process.
Fields§
§addr: IpAddr
The last known IP address of the process.
pub_creds: ConcretePub
The public credentials of the process.
writecap: Writecap
The writecap that was issued to the process.
authz_attrs: AuthzAttrs
The authorization attributes associated with the process.
Trait Implementations§
source§impl Clone for IssuedProcRec
impl Clone for IssuedProcRec
source§fn clone(&self) -> IssuedProcRec
fn clone(&self) -> IssuedProcRec
Returns a copy of the value. Read more
1.0.0 · 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 IssuedProcRec
impl Debug for IssuedProcRec
source§impl<'de> Deserialize<'de> for IssuedProcRec
impl<'de> Deserialize<'de> for IssuedProcRec
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 PartialEq<IssuedProcRec> for IssuedProcRec
impl PartialEq<IssuedProcRec> for IssuedProcRec
source§fn eq(&self, other: &IssuedProcRec) -> bool
fn eq(&self, other: &IssuedProcRec) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for IssuedProcRec
impl Serialize for IssuedProcRec
impl StructuralPartialEq for IssuedProcRec
Auto Trait Implementations§
impl RefUnwindSafe for IssuedProcRec
impl Send for IssuedProcRec
impl Sync for IssuedProcRec
impl Unpin for IssuedProcRec
impl UnwindSafe for IssuedProcRec
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