pub struct ExportBundle {
pub schema_version: String,
pub spec_version: String,
pub exported_at: String,
pub units: Vec<ExportUnit>,
pub passports: Vec<Passport>,
pub graph: ExportGraph,
pub warnings: Vec<ExportWarning>,
}Fields§
§schema_version: String§spec_version: String§exported_at: String§units: Vec<ExportUnit>§passports: Vec<Passport>§graph: ExportGraph§warnings: Vec<ExportWarning>Trait Implementations§
Source§impl Clone for ExportBundle
impl Clone for ExportBundle
Source§fn clone(&self) -> ExportBundle
fn clone(&self) -> ExportBundle
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 ExportBundle
impl Debug for ExportBundle
Source§impl<'de> Deserialize<'de> for ExportBundle
impl<'de> Deserialize<'de> for ExportBundle
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 ExportBundle
impl PartialEq for ExportBundle
Source§impl Serialize for ExportBundle
impl Serialize for ExportBundle
impl StructuralPartialEq for ExportBundle
Auto Trait Implementations§
impl Freeze for ExportBundle
impl RefUnwindSafe for ExportBundle
impl Send for ExportBundle
impl Sync for ExportBundle
impl Unpin for ExportBundle
impl UnsafeUnpin for ExportBundle
impl UnwindSafe for ExportBundle
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