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§
Source§impl Ord for Area
impl Ord for Area
Source§impl PartialOrd for Area
impl PartialOrd for Area
impl Copy for Area
impl Eq 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 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