Struct otter_api_tests::imports::nix::kmod::ModuleInitFlags [−]
pub struct ModuleInitFlags { /* fields omitted */ }Expand description
Flags used by the finit_module function.
Implementations
impl ModuleInitFlags
impl ModuleInitFlagspub const MODULE_INIT_IGNORE_MODVERSIONS: ModuleInitFlags
pub const MODULE_INIT_IGNORE_MODVERSIONS: ModuleInitFlagsIgnore symbol version hashes.
pub const MODULE_INIT_IGNORE_VERMAGIC: ModuleInitFlags
pub const MODULE_INIT_IGNORE_VERMAGIC: ModuleInitFlagsIgnore kernel version magic.
pub const fn empty() -> ModuleInitFlags
pub const fn empty() -> ModuleInitFlagsReturns an empty set of flags
pub const fn all() -> ModuleInitFlags
pub const fn all() -> ModuleInitFlagsReturns the set containing all flags.
pub fn from_bits(bits: u32) -> Option<ModuleInitFlags>
pub fn from_bits(bits: u32) -> Option<ModuleInitFlags>Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.
pub const fn from_bits_truncate(bits: u32) -> ModuleInitFlags
pub const fn from_bits_truncate(bits: u32) -> ModuleInitFlagsConvert from underlying bit representation, dropping any bits that do not correspond to flags.
pub const unsafe fn from_bits_unchecked(bits: u32) -> ModuleInitFlags
pub const unsafe fn from_bits_unchecked(bits: u32) -> ModuleInitFlagsConvert from underlying bit representation, preserving all bits (even those not corresponding to a defined flag).
pub const fn intersects(&self, other: ModuleInitFlags) -> bool
pub const fn intersects(&self, other: ModuleInitFlags) -> boolReturns true if there are flags common to both self and other.
pub const fn contains(&self, other: ModuleInitFlags) -> bool
pub const fn contains(&self, other: ModuleInitFlags) -> boolReturns true all of the flags in other are contained within self.
pub fn insert(&mut self, other: ModuleInitFlags)
pub fn insert(&mut self, other: ModuleInitFlags)Inserts the specified flags in-place.
pub fn remove(&mut self, other: ModuleInitFlags)
pub fn remove(&mut self, other: ModuleInitFlags)Removes the specified flags in-place.
pub fn toggle(&mut self, other: ModuleInitFlags)
pub fn toggle(&mut self, other: ModuleInitFlags)Toggles the specified flags in-place.
pub fn set(&mut self, other: ModuleInitFlags, value: bool)
pub fn set(&mut self, other: ModuleInitFlags, value: bool)Inserts or removes the specified flags depending on the passed value.
Trait Implementations
impl Binary for ModuleInitFlags
impl Binary for ModuleInitFlagsimpl BitAnd<ModuleInitFlags> for ModuleInitFlags
impl BitAnd<ModuleInitFlags> for ModuleInitFlagspub fn bitand(self, other: ModuleInitFlags) -> ModuleInitFlags
pub fn bitand(self, other: ModuleInitFlags) -> ModuleInitFlagsReturns the intersection between the two sets of flags.
type Output = ModuleInitFlags
type Output = ModuleInitFlagsThe resulting type after applying the & operator.
impl BitAndAssign<ModuleInitFlags> for ModuleInitFlags
impl BitAndAssign<ModuleInitFlags> for ModuleInitFlagspub fn bitand_assign(&mut self, other: ModuleInitFlags)
pub fn bitand_assign(&mut self, other: ModuleInitFlags)Disables all flags disabled in the set.
impl BitOr<ModuleInitFlags> for ModuleInitFlags
impl BitOr<ModuleInitFlags> for ModuleInitFlagspub fn bitor(self, other: ModuleInitFlags) -> ModuleInitFlags
pub fn bitor(self, other: ModuleInitFlags) -> ModuleInitFlagsReturns the union of the two sets of flags.
type Output = ModuleInitFlags
type Output = ModuleInitFlagsThe resulting type after applying the | operator.
impl BitOrAssign<ModuleInitFlags> for ModuleInitFlags
impl BitOrAssign<ModuleInitFlags> for ModuleInitFlagspub fn bitor_assign(&mut self, other: ModuleInitFlags)
pub fn bitor_assign(&mut self, other: ModuleInitFlags)Adds the set of flags.
impl BitXor<ModuleInitFlags> for ModuleInitFlags
impl BitXor<ModuleInitFlags> for ModuleInitFlagspub fn bitxor(self, other: ModuleInitFlags) -> ModuleInitFlags
pub fn bitxor(self, other: ModuleInitFlags) -> ModuleInitFlagsReturns the left flags, but with all the right flags toggled.
type Output = ModuleInitFlags
type Output = ModuleInitFlagsThe resulting type after applying the ^ operator.
impl BitXorAssign<ModuleInitFlags> for ModuleInitFlags
impl BitXorAssign<ModuleInitFlags> for ModuleInitFlagspub fn bitxor_assign(&mut self, other: ModuleInitFlags)
pub fn bitxor_assign(&mut self, other: ModuleInitFlags)Toggles the set of flags.
impl Clone for ModuleInitFlags
impl Clone for ModuleInitFlagspub fn clone(&self) -> ModuleInitFlags
pub fn clone(&self) -> ModuleInitFlagsReturns a copy of the value. Read more
Performs copy-assignment from source. Read more
impl Debug for ModuleInitFlags
impl Debug for ModuleInitFlagsimpl Extend<ModuleInitFlags> for ModuleInitFlags
impl Extend<ModuleInitFlags> for ModuleInitFlagspub fn extend<T>(&mut self, iterator: T) where
T: IntoIterator<Item = ModuleInitFlags>,
pub fn extend<T>(&mut self, iterator: T) where
T: IntoIterator<Item = ModuleInitFlags>, Extends a collection with the contents of an iterator. Read more
extend_one)Extends a collection with exactly one element.
extend_one)Reserves capacity in a collection for the given number of additional elements. Read more
impl FromIterator<ModuleInitFlags> for ModuleInitFlags
impl FromIterator<ModuleInitFlags> for ModuleInitFlagspub fn from_iter<T>(iterator: T) -> ModuleInitFlags where
T: IntoIterator<Item = ModuleInitFlags>,
pub fn from_iter<T>(iterator: T) -> ModuleInitFlags where
T: IntoIterator<Item = ModuleInitFlags>, Creates a value from an iterator. Read more
impl Hash for ModuleInitFlags
impl Hash for ModuleInitFlagsimpl LowerHex for ModuleInitFlags
impl LowerHex for ModuleInitFlagsimpl Not for ModuleInitFlags
impl Not for ModuleInitFlagspub fn not(self) -> ModuleInitFlags
pub fn not(self) -> ModuleInitFlagsReturns the complement of this set of flags.
type Output = ModuleInitFlags
type Output = ModuleInitFlagsThe resulting type after applying the ! operator.
impl Octal for ModuleInitFlags
impl Octal for ModuleInitFlagsimpl Ord for ModuleInitFlags
impl Ord for ModuleInitFlagspub fn cmp(&self, other: &ModuleInitFlags) -> Ordering
pub fn cmp(&self, other: &ModuleInitFlags) -> OrderingCompares and returns the maximum of two values. Read more
Compares and returns the minimum of two values. Read more
impl PartialEq<ModuleInitFlags> for ModuleInitFlags
impl PartialEq<ModuleInitFlags> for ModuleInitFlagspub fn eq(&self, other: &ModuleInitFlags) -> bool
pub fn eq(&self, other: &ModuleInitFlags) -> boolThis method tests for self and other values to be equal, and is used
by ==. Read more
pub fn ne(&self, other: &ModuleInitFlags) -> bool
pub fn ne(&self, other: &ModuleInitFlags) -> boolThis method tests for !=.
impl PartialOrd<ModuleInitFlags> for ModuleInitFlags
impl PartialOrd<ModuleInitFlags> for ModuleInitFlagspub fn partial_cmp(&self, other: &ModuleInitFlags) -> Option<Ordering>
pub fn partial_cmp(&self, other: &ModuleInitFlags) -> Option<Ordering>This method returns an ordering between self and other values if one exists. Read more
This method tests less than (for self and other) and is used by the < operator. Read more
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
This method tests greater than (for self and other) and is used by the > operator. Read more
impl Sub<ModuleInitFlags> for ModuleInitFlags
impl Sub<ModuleInitFlags> for ModuleInitFlagspub fn sub(self, other: ModuleInitFlags) -> ModuleInitFlags
pub fn sub(self, other: ModuleInitFlags) -> ModuleInitFlagsReturns the set difference of the two sets of flags.
type Output = ModuleInitFlags
type Output = ModuleInitFlagsThe resulting type after applying the - operator.
impl SubAssign<ModuleInitFlags> for ModuleInitFlags
impl SubAssign<ModuleInitFlags> for ModuleInitFlagspub fn sub_assign(&mut self, other: ModuleInitFlags)
pub fn sub_assign(&mut self, other: ModuleInitFlags)Disables all flags enabled in the set.
impl UpperHex for ModuleInitFlags
impl UpperHex for ModuleInitFlagsimpl Copy for ModuleInitFlagsimpl Eq for ModuleInitFlagsimpl StructuralEq for ModuleInitFlagsimpl StructuralPartialEq for ModuleInitFlagsAuto Trait Implementations
impl RefUnwindSafe for ModuleInitFlagsimpl Send for ModuleInitFlagsimpl Sync for ModuleInitFlagsimpl Unpin for ModuleInitFlagsimpl UnwindSafe for ModuleInitFlagsBlanket Implementations
Mutably borrows from an owned value. Read more
pub fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>ⓘNotable traits for Box<R, Global>
impl<R> Read for Box<R, Global> where
R: Read + ?Sized, impl<W> Write for Box<W, Global> where
W: Write + ?Sized, impl<I, A> Iterator for Box<I, A> where
A: Allocator,
I: Iterator + ?Sized, type Item = <I as Iterator>::Item;impl<F, A> Future for Box<F, A> where
A: Allocator + 'static,
F: Future + Unpin + ?Sized, type Output = <F as Future>::Output;
pub fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>ⓘNotable traits for Box<R, Global>
impl<R> Read for Box<R, Global> where
R: Read + ?Sized, impl<W> Write for Box<W, Global> where
W: Write + ?Sized, impl<I, A> Iterator for Box<I, A> where
A: Allocator,
I: Iterator + ?Sized, type Item = <I as Iterator>::Item;impl<F, A> Future for Box<F, A> where
A: Allocator + 'static,
F: Future + Unpin + ?Sized, type Output = <F as Future>::Output;Convert Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait. Read more
pub fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
pub fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait. Read more
Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s. Read more
pub fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
pub fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s. Read more
impl<A> DynCastExt for A
impl<A> DynCastExt for Apub fn dyn_cast<T>(
self
) -> Result<<A as DynCastExtHelper<T>>::Target, <A as DynCastExtHelper<T>>::Source> where
T: ?Sized,
A: DynCastExtHelper<T>,
pub fn dyn_cast<T>(
self
) -> Result<<A as DynCastExtHelper<T>>::Target, <A as DynCastExtHelper<T>>::Source> where
T: ?Sized,
A: DynCastExtHelper<T>, Use this to cast from one trait object type to another. Read more
pub fn dyn_upcast<T>(self) -> <A as DynCastExtAdvHelper<T, T>>::Target where
T: ?Sized,
A: DynCastExtAdvHelper<T, T, Source = <A as DynCastExtAdvHelper<T, T>>::Target>,
pub fn dyn_upcast<T>(self) -> <A as DynCastExtAdvHelper<T, T>>::Target where
T: ?Sized,
A: DynCastExtAdvHelper<T, T, Source = <A as DynCastExtAdvHelper<T, T>>::Target>, Use this to upcast a trait to one of its supertraits. Read more
pub fn dyn_cast_adv<F, T>(
self
) -> Result<<A as DynCastExtAdvHelper<F, T>>::Target, <A as DynCastExtAdvHelper<F, T>>::Source> where
T: ?Sized,
A: DynCastExtAdvHelper<F, T>,
F: ?Sized,
pub fn dyn_cast_adv<F, T>(
self
) -> Result<<A as DynCastExtAdvHelper<F, T>>::Target, <A as DynCastExtAdvHelper<F, T>>::Source> where
T: ?Sized,
A: DynCastExtAdvHelper<F, T>,
F: ?Sized, pub fn dyn_cast_with_config<C>(
self
) -> Result<<A as DynCastExtAdvHelper<<C as DynCastConfig>::Source, <C as DynCastConfig>::Target>>::Target, <A as DynCastExtAdvHelper<<C as DynCastConfig>::Source, <C as DynCastConfig>::Target>>::Source> where
C: DynCastConfig,
A: DynCastExtAdvHelper<<C as DynCastConfig>::Source, <C as DynCastConfig>::Target>,
pub fn dyn_cast_with_config<C>(
self
) -> Result<<A as DynCastExtAdvHelper<<C as DynCastConfig>::Source, <C as DynCastConfig>::Target>>::Target, <A as DynCastExtAdvHelper<<C as DynCastConfig>::Source, <C as DynCastConfig>::Target>>::Source> where
C: DynCastConfig,
A: DynCastExtAdvHelper<<C as DynCastConfig>::Source, <C as DynCastConfig>::Target>, Use this to cast from one trait object type to another. With this method the type parameter is a config type that uniquely specifies which cast should be preformed. Read more
Compare self to key and return true if they are equal.
fn instrument(self, span: Span) -> Instrumented<Self>ⓘNotable traits for Instrumented<T>
impl<T> Future for Instrumented<T> where
T: Future, type Output = <T as Future>::Output;
fn instrument(self, span: Span) -> Instrumented<Self>ⓘNotable traits for Instrumented<T>
impl<T> Future for Instrumented<T> where
T: Future, type Output = <T as Future>::Output;Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more
fn in_current_span(self) -> Instrumented<Self>ⓘNotable traits for Instrumented<T>
impl<T> Future for Instrumented<T> where
T: Future, type Output = <T as Future>::Output;
fn in_current_span(self) -> Instrumented<Self>ⓘNotable traits for Instrumented<T>
impl<T> Future for Instrumented<T> where
T: Future, type Output = <T as Future>::Output;pub fn vzip(self) -> V