pub struct OrgExportMeta {
pub org_id: String,
pub org_name: String,
pub exported_at: String,
pub node: String,
pub tables: Vec<String>,
pub row_counts: Vec<(String, i64)>,
pub version: String,
}Expand description
Org export package metadata.
Fields§
§org_id: String§org_name: String§exported_at: String§node: String§tables: Vec<String>§row_counts: Vec<(String, i64)>§version: StringTrait Implementations§
Source§impl Clone for OrgExportMeta
impl Clone for OrgExportMeta
Source§fn clone(&self) -> OrgExportMeta
fn clone(&self) -> OrgExportMeta
Returns a duplicate of the value. Read more
1.0.0 · 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 OrgExportMeta
impl Debug for OrgExportMeta
Source§impl<'de> Deserialize<'de> for OrgExportMeta
impl<'de> Deserialize<'de> for OrgExportMeta
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
Auto Trait Implementations§
impl Freeze for OrgExportMeta
impl RefUnwindSafe for OrgExportMeta
impl Send for OrgExportMeta
impl Sync for OrgExportMeta
impl Unpin for OrgExportMeta
impl UnsafeUnpin for OrgExportMeta
impl UnwindSafe for OrgExportMeta
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