pub struct ConvexProjectionRows {
pub nodes: Vec<ConvexNodeRow>,
pub edges: Vec<ConvexEdgeRow>,
}Fields§
§nodes: Vec<ConvexNodeRow>§edges: Vec<ConvexEdgeRow>Trait Implementations§
Source§impl Clone for ConvexProjectionRows
impl Clone for ConvexProjectionRows
Source§fn clone(&self) -> ConvexProjectionRows
fn clone(&self) -> ConvexProjectionRows
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ConvexProjectionRows
impl Debug for ConvexProjectionRows
Source§impl Default for ConvexProjectionRows
impl Default for ConvexProjectionRows
Source§fn default() -> ConvexProjectionRows
fn default() -> ConvexProjectionRows
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ConvexProjectionRows
impl<'de> Deserialize<'de> for ConvexProjectionRows
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ConvexProjectionRows, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ConvexProjectionRows, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&GraphProjection> for ConvexProjectionRows
impl From<&GraphProjection> for ConvexProjectionRows
Source§fn from(projection: &GraphProjection) -> ConvexProjectionRows
fn from(projection: &GraphProjection) -> ConvexProjectionRows
Converts to this type from the input type.
Source§impl PartialEq for ConvexProjectionRows
impl PartialEq for ConvexProjectionRows
Source§fn eq(&self, other: &ConvexProjectionRows) -> bool
fn eq(&self, other: &ConvexProjectionRows) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ConvexProjectionRows
impl Serialize for ConvexProjectionRows
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for ConvexProjectionRows
impl StructuralPartialEq for ConvexProjectionRows
Auto Trait Implementations§
impl Freeze for ConvexProjectionRows
impl RefUnwindSafe for ConvexProjectionRows
impl Send for ConvexProjectionRows
impl Sync for ConvexProjectionRows
impl Unpin for ConvexProjectionRows
impl UnsafeUnpin for ConvexProjectionRows
impl UnwindSafe for ConvexProjectionRows
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