pub struct GraphView {
pub kind: String,
pub seeds: Vec<String>,
pub query: Option<String>,
pub hops: u8,
pub as_of: Option<i64>,
pub time_axis: String,
pub direction: String,
}Fields§
§kind: String§seeds: Vec<String>§query: Option<String>§hops: u8§as_of: Option<i64>§time_axis: String§direction: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for GraphView
impl<'de> Deserialize<'de> for GraphView
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
impl StructuralPartialEq for GraphView
Auto Trait Implementations§
impl Freeze for GraphView
impl RefUnwindSafe for GraphView
impl Send for GraphView
impl Sync for GraphView
impl Unpin for GraphView
impl UnsafeUnpin for GraphView
impl UnwindSafe for GraphView
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