Enum rustix::backend::c::rt_scope_t
source · #[non_exhaustive]#[repr(u32)]pub(crate) enum rt_scope_t {
RT_SCOPE_UNIVERSE = 0,
RT_SCOPE_SITE = 200,
RT_SCOPE_LINK = 253,
RT_SCOPE_HOST = 254,
RT_SCOPE_NOWHERE = 255,
}
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
RT_SCOPE_UNIVERSE = 0
RT_SCOPE_SITE = 200
RT_SCOPE_LINK = 253
RT_SCOPE_HOST = 254
RT_SCOPE_NOWHERE = 255
Trait Implementations§
source§impl Clone for rt_scope_t
impl Clone for rt_scope_t
source§fn clone(&self) -> rt_scope_t
fn clone(&self) -> rt_scope_t
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for rt_scope_t
impl Debug for rt_scope_t
source§impl Hash for rt_scope_t
impl Hash for rt_scope_t
source§impl PartialEq for rt_scope_t
impl PartialEq for rt_scope_t
source§fn eq(&self, other: &rt_scope_t) -> bool
fn eq(&self, other: &rt_scope_t) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for rt_scope_t
impl Eq for rt_scope_t
impl StructuralPartialEq for rt_scope_t
Auto Trait Implementations§
impl Freeze for rt_scope_t
impl RefUnwindSafe for rt_scope_t
impl Send for rt_scope_t
impl Sync for rt_scope_t
impl Unpin for rt_scope_t
impl UnwindSafe for rt_scope_t
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