pub enum FarmAccessRow {
PublicToggle,
PublicDiscount,
AllowRemove {
character_id: Uuid,
label: String,
tax_discount_bps: u32,
},
NearbyAdd {
name: String,
},
}Expand description
One navigable row in the deed farm-access panel.
Variants§
Trait Implementations§
Source§impl Clone for FarmAccessRow
impl Clone for FarmAccessRow
Source§fn clone(&self) -> FarmAccessRow
fn clone(&self) -> FarmAccessRow
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 FarmAccessRow
impl Debug for FarmAccessRow
Source§impl PartialEq for FarmAccessRow
impl PartialEq for FarmAccessRow
impl StructuralPartialEq for FarmAccessRow
Auto Trait Implementations§
impl Freeze for FarmAccessRow
impl RefUnwindSafe for FarmAccessRow
impl Send for FarmAccessRow
impl Sync for FarmAccessRow
impl Unpin for FarmAccessRow
impl UnsafeUnpin for FarmAccessRow
impl UnwindSafe for FarmAccessRow
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