pub struct Filing {
pub at: Option<i32>,
pub note: Option<String>,
pub provider: Option<String>,
pub ref: Option<String>,
pub status: Option<String>,
}Fields§
§at: Option<i32>At is the unix second the filing record was written.
note: Option<String>Note explains a filing Hanzo did not perform itself: what remains to be done and by whom.
provider: Option<String>Provider is the filing partner that performed the filing, or "manual" when no partner is wired.
ref: Option<String>Ref is the partner’s or the state’s filing reference. Empty when nothing was actually filed — no filing id is ever fabricated.
status: Option<String>Status is manual (no partner wired — a registered agent files out-of-band), submitted (the partner accepted it, awaiting the state), filed (the state accepted it) or rejected.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Filing
impl<'de> Deserialize<'de> for Filing
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 Filing
Auto Trait Implementations§
impl Freeze for Filing
impl RefUnwindSafe for Filing
impl Send for Filing
impl Sync for Filing
impl Unpin for Filing
impl UnsafeUnpin for Filing
impl UnwindSafe for Filing
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