pub struct FarmGrantView {
pub character_id: Uuid,
pub character_label: String,
pub tax_discount_bps: u32,
}Expand description
Named tenant on a property plot (farm access + tax discount).
Fields§
§character_id: Uuid§character_label: StringDisplay name when known (AOI / online); empty if offline-only id.
tax_discount_bps: u32Trait Implementations§
Source§impl Clone for FarmGrantView
impl Clone for FarmGrantView
Source§fn clone(&self) -> FarmGrantView
fn clone(&self) -> FarmGrantView
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 FarmGrantView
impl Debug for FarmGrantView
Source§impl<'de> Deserialize<'de> for FarmGrantView
impl<'de> Deserialize<'de> for FarmGrantView
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
Source§impl PartialEq for FarmGrantView
impl PartialEq for FarmGrantView
Source§impl Serialize for FarmGrantView
impl Serialize for FarmGrantView
impl StructuralPartialEq for FarmGrantView
Auto Trait Implementations§
impl Freeze for FarmGrantView
impl RefUnwindSafe for FarmGrantView
impl Send for FarmGrantView
impl Sync for FarmGrantView
impl Unpin for FarmGrantView
impl UnsafeUnpin for FarmGrantView
impl UnwindSafe for FarmGrantView
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