pub enum UsedFor {
Node,
Edge,
Record,
All,
}Expand description
Enum for whether a resource is used for nodes, edges, or both.
Variants§
Node
Used for nodes.
Edge
Used for edges.
Record
Used for records.
All
Used for both nodes and edges.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for UsedFor
impl<'de> Deserialize<'de> for UsedFor
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
Auto Trait Implementations§
impl Freeze for UsedFor
impl RefUnwindSafe for UsedFor
impl Send for UsedFor
impl Sync for UsedFor
impl Unpin for UsedFor
impl UnwindSafe for UsedFor
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