pub struct UpkeepIn {
pub agent_of_record: Option<bool>,
pub jurisdiction: Option<String>,
pub structure: Option<String>,
}Fields§
§agent_of_record: Option<bool>AgentOfRecord includes our agent fee, which most entities owe someone.
jurisdiction: Option<String>Jurisdiction is the state the entity stands in.
structure: Option<String>Structure is the entity kind: c-corp, llc or dao-llc.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for UpkeepIn
impl<'de> Deserialize<'de> for UpkeepIn
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 StructuralPartialEq for UpkeepIn
Auto Trait Implementations§
impl Freeze for UpkeepIn
impl RefUnwindSafe for UpkeepIn
impl Send for UpkeepIn
impl Sync for UpkeepIn
impl Unpin for UpkeepIn
impl UnsafeUnpin for UpkeepIn
impl UnwindSafe for UpkeepIn
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