pub struct GraphReadOut {
pub assertions: Option<Vec<WireFact>>,
}Fields§
§assertions: Option<Vec<WireFact>>Assertions are the matching rows in the order they were written, oldest first. Every version is here: this read resolves nothing and withholds nothing, so a superseded claim and the one that superseded it both appear.
Implementations§
Source§impl GraphReadOut
impl GraphReadOut
pub fn new() -> GraphReadOut
Trait Implementations§
Source§impl Clone for GraphReadOut
impl Clone for GraphReadOut
Source§fn clone(&self) -> GraphReadOut
fn clone(&self) -> GraphReadOut
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 GraphReadOut
impl Debug for GraphReadOut
Source§impl Default for GraphReadOut
impl Default for GraphReadOut
Source§fn default() -> GraphReadOut
fn default() -> GraphReadOut
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GraphReadOut
impl<'de> Deserialize<'de> for GraphReadOut
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 GraphReadOut
impl PartialEq for GraphReadOut
Source§impl Serialize for GraphReadOut
impl Serialize for GraphReadOut
impl StructuralPartialEq for GraphReadOut
Auto Trait Implementations§
impl Freeze for GraphReadOut
impl RefUnwindSafe for GraphReadOut
impl Send for GraphReadOut
impl Sync for GraphReadOut
impl Unpin for GraphReadOut
impl UnsafeUnpin for GraphReadOut
impl UnwindSafe for GraphReadOut
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