Struct base::sys::linux::shm::MemfdSeals

source ·
pub struct MemfdSeals(i32);
Expand description

A set of memfd seals.

An enumeration of each bit can be found at fcntl(2).

Tuple Fields§

§0: i32

Implementations§

source§

impl MemfdSeals

source

pub fn new() -> MemfdSeals

Returns an empty set of memfd seals.

source

pub fn bitmask(self) -> i32

Gets the raw bitmask of seals enumerated in fcntl(2).

source

pub fn grow_seal(self) -> bool

True if the grow seal bit is present.

source

pub fn set_grow_seal(&mut self)

Sets the grow seal bit.

source

pub fn shrink_seal(self) -> bool

True if the shrink seal bit is present.

source

pub fn set_shrink_seal(&mut self)

Sets the shrink seal bit.

source

pub fn write_seal(self) -> bool

True if the write seal bit is present.

source

pub fn set_write_seal(&mut self)

Sets the write seal bit.

source

pub fn future_write_seal(self) -> bool

True if the future write seal bit is present.

source

pub fn set_future_write_seal(&mut self)

Sets the future write seal bit.

source

pub fn seal_seal(self) -> bool

True of the seal seal bit is present.

source

pub fn set_seal_seal(&mut self)

Sets the seal seal bit.

Trait Implementations§

source§

impl Clone for MemfdSeals

source§

fn clone(&self) -> MemfdSeals

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Default for MemfdSeals

source§

fn default() -> MemfdSeals

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

impl Copy for MemfdSeals

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

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

§

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 Twhere U: TryFrom<T>,

§

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.