pub struct AllowlistCall {
pub identity: String,
}Expand description
Per-call context bound to the most recent guarded join point. Set by
the host before proceed() is invoked; cleared by release.
Fields§
§identity: StringThe identity being checked at this join point.
Trait Implementations§
Source§impl Clone for AllowlistCall
impl Clone for AllowlistCall
Source§fn clone(&self) -> AllowlistCall
fn clone(&self) -> AllowlistCall
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 moreAuto Trait Implementations§
impl Freeze for AllowlistCall
impl RefUnwindSafe for AllowlistCall
impl Send for AllowlistCall
impl Sync for AllowlistCall
impl Unpin for AllowlistCall
impl UnsafeUnpin for AllowlistCall
impl UnwindSafe for AllowlistCall
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