pub struct DGLMetadata {
pub common: CommonGraphMetadata,
pub is_heterogeneous: bool,
pub edge_format: String,
}Expand description
Metadata about the exported DGL data.
Fields§
§common: CommonGraphMetadataCommon graph metadata fields.
is_heterogeneous: boolWhether export is heterogeneous.
edge_format: StringEdge index format (COO).
Trait Implementations§
Source§impl Clone for DGLMetadata
impl Clone for DGLMetadata
Source§fn clone(&self) -> DGLMetadata
fn clone(&self) -> DGLMetadata
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 DGLMetadata
impl Debug for DGLMetadata
Source§impl<'de> Deserialize<'de> for DGLMetadata
impl<'de> Deserialize<'de> for DGLMetadata
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 DGLMetadata
impl RefUnwindSafe for DGLMetadata
impl Send for DGLMetadata
impl Sync for DGLMetadata
impl Unpin for DGLMetadata
impl UnwindSafe for DGLMetadata
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