sel4

Struct ImplicitReplyAuthority

Source
pub struct ImplicitReplyAuthority<C> { /* private fields */ }
Expand description

Under this configuration, no reply authority is required.

Implementations§

Source§

impl<C> ImplicitReplyAuthority<C>

Source

pub const fn new(invocation_context: C) -> Self

Source

pub fn into_invocation_context(self) -> C

Source§

impl<C: InvocationContext> ImplicitReplyAuthority<C>

Source

pub fn reply(self, info: MessageInfo)

Corresponds to seL4_Reply.

Trait Implementations§

Source§

impl<C: Default> Default for ImplicitReplyAuthority<C>

Source§

fn default() -> ImplicitReplyAuthority<C>

Returns the “default value” for a type. Read more

Auto Trait Implementations§

§

impl<C> Freeze for ImplicitReplyAuthority<C>
where C: Freeze,

§

impl<C> RefUnwindSafe for ImplicitReplyAuthority<C>
where C: RefUnwindSafe,

§

impl<C> Send for ImplicitReplyAuthority<C>
where C: Send,

§

impl<C> Sync for ImplicitReplyAuthority<C>
where C: Sync,

§

impl<C> Unpin for ImplicitReplyAuthority<C>
where C: Unpin,

§

impl<C> UnwindSafe for ImplicitReplyAuthority<C>
where C: UnwindSafe,

Blanket Implementations§

§

impl<T> Any for T
where T: 'static + ?Sized,

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T> Borrow<T> for T
where T: ?Sized,

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

impl<T> BorrowMut<T> for T
where T: ?Sized,

§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T, U> Into<U> for T
where U: From<T>,

§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.