Create

Enum Create 

Source
pub enum Create {}

Trait Implementations§

Source§

impl<'o> Operation<'o> for Create

Source§

type RequestBody = (&'o CreateIn, &'o CStr)

Source§

type ReplyState = OpenOutFlags

Source§

impl<'o> ReplyKnown<'o> for Create

Source§

fn known(reply: Reply<'o, Self>, entry: impl Known, ttl: Ttl) -> Done<'o>

Source§

impl<'o> ReplyOpen<'o> for Create

Source§

fn known_with_handle( reply: Reply<'o, Self>, known: impl Known, ttl: Ttl, handle: u64, ) -> Done<'o>
where Self: ReplyKnown<'o>,

Source§

fn force_direct_io(reply: &mut Reply<'o, Self>)

Source§

fn non_seekable(reply: &mut Reply<'o, Self>)

Source§

fn is_stream(reply: &mut Reply<'o, Self>)

Source§

impl<'o> ReplyPermissionDenied<'o> for Create

Source§

fn permission_denied(reply: Reply<'o, Self>) -> Done<'o>

Source§

impl<'o> RequestFlags<'o> for Create

Source§

type Flags = OFlag

Source§

fn flags(request: &Request<'o, Self>) -> Self::Flags

Source§

impl<'o> RequestMode<'o> for Create

Source§

fn mode(request: &Request<'o, Self>) -> Mode

Source§

fn umask(request: &Request<'o, Self>) -> Mode

Source§

impl<'o> RequestName<'o> for Create

Source§

fn name<'a>(request: &'a Request<'o, Self>) -> &'a OsStr

Auto Trait Implementations§

§

impl Freeze for Create

§

impl RefUnwindSafe for Create

§

impl Send for Create

§

impl Sync for Create

§

impl Unpin for Create

§

impl UnwindSafe for Create

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

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

Source§

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

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

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

Source§

fn into(self) -> U

Calls U::from(self).

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

Source§

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

Source§

type Error = Infallible

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

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

Performs the conversion.
Source§

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

Source§

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

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

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

Performs the conversion.