pub struct ChangesetModels {Show 15 fields
pub collections: Vec<Collection>,
pub samples: Vec<Sample>,
pub sequences: Vec<Sequence>,
pub block_groups: Vec<BlockGroup>,
pub nodes: Vec<Node>,
pub edges: Vec<Edge>,
pub block_group_edges: Vec<BlockGroupEdge>,
pub paths: Vec<Path>,
pub path_edges: Vec<PathEdge>,
pub accessions: Vec<Accession>,
pub accession_edges: Vec<AccessionEdge>,
pub accession_paths: Vec<AccessionPath>,
pub annotation_groups: Vec<AnnotationGroup>,
pub annotations: Vec<Annotation>,
pub annotation_group_samples: Vec<AnnotationGroupSample>,
}Fields§
§collections: Vec<Collection>§samples: Vec<Sample>§sequences: Vec<Sequence>§block_groups: Vec<BlockGroup>§nodes: Vec<Node>§edges: Vec<Edge>§block_group_edges: Vec<BlockGroupEdge>§paths: Vec<Path>§path_edges: Vec<PathEdge>§accessions: Vec<Accession>§accession_edges: Vec<AccessionEdge>§accession_paths: Vec<AccessionPath>§annotation_groups: Vec<AnnotationGroup>§annotations: Vec<Annotation>§annotation_group_samples: Vec<AnnotationGroupSample>Trait Implementations§
Source§impl<'a> Capnp<'a> for ChangesetModels
impl<'a> Capnp<'a> for ChangesetModels
Source§impl Debug for ChangesetModels
impl Debug for ChangesetModels
Source§impl Default for ChangesetModels
impl Default for ChangesetModels
Source§fn default() -> ChangesetModels
fn default() -> ChangesetModels
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ChangesetModels
impl<'de> Deserialize<'de> for ChangesetModels
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 ChangesetModels
impl PartialEq for ChangesetModels
Source§impl Serialize for ChangesetModels
impl Serialize for ChangesetModels
impl StructuralPartialEq for ChangesetModels
Auto Trait Implementations§
impl Freeze for ChangesetModels
impl RefUnwindSafe for ChangesetModels
impl Send for ChangesetModels
impl Sync for ChangesetModels
impl Unpin for ChangesetModels
impl UnsafeUnpin for ChangesetModels
impl UnwindSafe for ChangesetModels
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more