pub struct FollowCommand {
pub source_id: String,
pub edge_types: Vec<String>,
pub target_id: Option<String>,
}Expand description
FOLLOW command - follow edges from a block
Fields§
§source_id: StringSource block ID
edge_types: Vec<String>Edge types to follow
target_id: Option<String>Optional specific target block
Trait Implementations§
Source§impl Clone for FollowCommand
impl Clone for FollowCommand
Source§fn clone(&self) -> FollowCommand
fn clone(&self) -> FollowCommand
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 FollowCommand
impl Debug for FollowCommand
Source§impl<'de> Deserialize<'de> for FollowCommand
impl<'de> Deserialize<'de> for FollowCommand
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 FollowCommand
impl PartialEq for FollowCommand
Source§impl Serialize for FollowCommand
impl Serialize for FollowCommand
impl StructuralPartialEq for FollowCommand
Auto Trait Implementations§
impl Freeze for FollowCommand
impl RefUnwindSafe for FollowCommand
impl Send for FollowCommand
impl Sync for FollowCommand
impl Unpin for FollowCommand
impl UnwindSafe for FollowCommand
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