pub struct ProofOfInterfaceAuthorization {
pub interface_id: u64,
pub token: Event,
}
Expand description
A credential passed into the fuchsia.net.*
family of APIs to authenticate
access to a particular interface. The Netstack only needs the ability to
inspect the token’s basic info when proving that the client is authorized
to access a resource.
Fields§
§interface_id: u64
The ID of the interface this credential is authenticating.
token: Event
The EVENT providing authentication over this interface.
Trait Implementations§
Source§impl Decode<ProofOfInterfaceAuthorization, DefaultFuchsiaResourceDialect> for ProofOfInterfaceAuthorization
impl Decode<ProofOfInterfaceAuthorization, DefaultFuchsiaResourceDialect> for ProofOfInterfaceAuthorization
Source§impl Encode<ProofOfInterfaceAuthorization, DefaultFuchsiaResourceDialect> for &mut ProofOfInterfaceAuthorization
impl Encode<ProofOfInterfaceAuthorization, DefaultFuchsiaResourceDialect> for &mut ProofOfInterfaceAuthorization
Source§impl<T0: Encode<u64, DefaultFuchsiaResourceDialect>, T1: Encode<HandleType<Event, { _ }, 0>, DefaultFuchsiaResourceDialect>> Encode<ProofOfInterfaceAuthorization, DefaultFuchsiaResourceDialect> for (T0, T1)
impl<T0: Encode<u64, DefaultFuchsiaResourceDialect>, T1: Encode<HandleType<Event, { _ }, 0>, DefaultFuchsiaResourceDialect>> Encode<ProofOfInterfaceAuthorization, DefaultFuchsiaResourceDialect> for (T0, T1)
Source§impl Hash for ProofOfInterfaceAuthorization
impl Hash for ProofOfInterfaceAuthorization
Source§impl Ord for ProofOfInterfaceAuthorization
impl Ord for ProofOfInterfaceAuthorization
Source§fn cmp(&self, other: &ProofOfInterfaceAuthorization) -> Ordering
fn cmp(&self, other: &ProofOfInterfaceAuthorization) -> Ordering
1.21.0 · 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 ProofOfInterfaceAuthorization
impl PartialEq for ProofOfInterfaceAuthorization
Source§fn eq(&self, other: &ProofOfInterfaceAuthorization) -> bool
fn eq(&self, other: &ProofOfInterfaceAuthorization) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl PartialOrd for ProofOfInterfaceAuthorization
impl PartialOrd for ProofOfInterfaceAuthorization
Source§impl ResourceTypeMarker for ProofOfInterfaceAuthorization
impl ResourceTypeMarker for ProofOfInterfaceAuthorization
Source§type Borrowed<'a> = &'a mut ProofOfInterfaceAuthorization
type Borrowed<'a> = &'a mut ProofOfInterfaceAuthorization
The Rust type to use for encoding. This is a particular
Encode<Self>
type cheaply obtainable from &mut Self::Owned
. There are three cases: Read moreSource§fn take_or_borrow<'a>(
value: &'a mut <Self as TypeMarker>::Owned,
) -> Self::Borrowed<'a>
fn take_or_borrow<'a>( value: &'a mut <Self as TypeMarker>::Owned, ) -> Self::Borrowed<'a>
Cheaply converts from
&mut Self::Owned
to Self::Borrowed
. For
HandleBased
types this is “take” (it returns an owned handle and
replaces value
with Handle::invalid
), and for all other types it is
“borrow” (just converts from one reference to another).Source§impl TypeMarker for ProofOfInterfaceAuthorization
impl TypeMarker for ProofOfInterfaceAuthorization
Source§type Owned = ProofOfInterfaceAuthorization
type Owned = ProofOfInterfaceAuthorization
The owned Rust type which this FIDL type decodes into.
Source§fn inline_align(_context: Context) -> usize
fn inline_align(_context: Context) -> usize
Returns the minimum required alignment of the inline portion of the
encoded object. It must be a (nonzero) power of two.
Source§fn inline_size(_context: Context) -> usize
fn inline_size(_context: Context) -> usize
Returns the size of the inline portion of the encoded object, including
padding for alignment. Must be a multiple of
inline_align
.§fn encode_is_copy() -> bool
fn encode_is_copy() -> bool
Returns true if the memory layout of
Self::Owned
matches the FIDL wire
format and encoding requires no validation. When true, we can optimize
encoding arrays and vectors of Self::Owned
to a single memcpy. Read more§fn decode_is_copy() -> bool
fn decode_is_copy() -> bool
Returns true if the memory layout of
Self::Owned
matches the FIDL wire
format and decoding requires no validation. When true, we can optimize
decoding arrays and vectors of Self::Owned
to a single memcpy.impl Eq for ProofOfInterfaceAuthorization
impl Standalone<DefaultFuchsiaResourceDialect> for ProofOfInterfaceAuthorization
impl StructuralPartialEq for ProofOfInterfaceAuthorization
Auto Trait Implementations§
impl Freeze for ProofOfInterfaceAuthorization
impl RefUnwindSafe for ProofOfInterfaceAuthorization
impl Send for ProofOfInterfaceAuthorization
impl Sync for ProofOfInterfaceAuthorization
impl Unpin for ProofOfInterfaceAuthorization
impl UnwindSafe for ProofOfInterfaceAuthorization
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