pub struct StructureIn {
pub jurisdiction: Option<String>,
pub name: Option<String>,
pub structure: Option<String>,
}Fields§
§jurisdiction: Option<String>Jurisdiction is the state of formation: DE or WY.
name: Option<String>Name is the proposed company name.
structure: Option<String>Structure is the legal entity: c-corp, llc or dao-llc.
Implementations§
Source§impl StructureIn
impl StructureIn
pub fn new() -> StructureIn
Trait Implementations§
Source§impl Clone for StructureIn
impl Clone for StructureIn
Source§fn clone(&self) -> StructureIn
fn clone(&self) -> StructureIn
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 StructureIn
impl Debug for StructureIn
Source§impl Default for StructureIn
impl Default for StructureIn
Source§fn default() -> StructureIn
fn default() -> StructureIn
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StructureIn
impl<'de> Deserialize<'de> for StructureIn
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 StructureIn
impl PartialEq for StructureIn
Source§impl Serialize for StructureIn
impl Serialize for StructureIn
impl StructuralPartialEq for StructureIn
Auto Trait Implementations§
impl Freeze for StructureIn
impl RefUnwindSafe for StructureIn
impl Send for StructureIn
impl Sync for StructureIn
impl Unpin for StructureIn
impl UnsafeUnpin for StructureIn
impl UnwindSafe for StructureIn
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