pub enum Area {
ChatRange,
DrawDistance,
Region,
}Expand description
represents a Second Life area of significance
Variants§
Implementations§
Source§impl Area
impl Area
Sourcepub const fn is_chat_range(&self) -> bool
pub const fn is_chat_range(&self) -> bool
Returns true if the enum is Area::ChatRange otherwise false
Sourcepub const fn is_draw_distance(&self) -> bool
pub const fn is_draw_distance(&self) -> bool
Returns true if the enum is Area::DrawDistance otherwise false
Trait Implementations§
impl Copy for Area
Source§impl<'de> Deserialize<'de> for Area
impl<'de> Deserialize<'de> for Area
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for Area
Source§impl Ord for Area
impl Ord for Area
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialOrd for Area
impl PartialOrd for Area
impl StructuralPartialEq for Area
Auto Trait Implementations§
impl Freeze for Area
impl RefUnwindSafe for Area
impl Send for Area
impl Sync for Area
impl Unpin for Area
impl UnsafeUnpin for Area
impl UnwindSafe for Area
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