pub struct ValidatorActionId { /* private fields */ }
Expand description
Contains information about actions used by the validator. The contents of
the struct are the same as the schema entity type structure, but the
member_of
relation is reversed to instead be descendants
.
Implementations§
source§impl ValidatorActionId
impl ValidatorActionId
sourcepub fn context(&self) -> impl Iterator<Item = (&SmolStr, &AttributeType)>
pub fn context(&self) -> impl Iterator<Item = (&SmolStr, &AttributeType)>
An iterator over the attributes of this action’s required context
Trait Implementations§
source§impl Clone for ValidatorActionId
impl Clone for ValidatorActionId
source§fn clone(&self) -> ValidatorActionId
fn clone(&self) -> ValidatorActionId
Returns a copy 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 ValidatorActionId
impl Debug for ValidatorActionId
source§impl Serialize for ValidatorActionId
impl Serialize for ValidatorActionId
source§impl TCNode<EntityUID> for ValidatorActionId
impl TCNode<EntityUID> for ValidatorActionId
source§fn add_edge_to(&mut self, k: EntityUID)
fn add_edge_to(&mut self, k: EntityUID)
Add an edge out off this node to the node with key
k
.source§fn out_edges(&self) -> Box<dyn Iterator<Item = &EntityUID> + '_>
fn out_edges(&self) -> Box<dyn Iterator<Item = &EntityUID> + '_>
Retrieve an iterator for the edges out of this node.
source§fn has_edge_to(&self, e: &EntityUID) -> bool
fn has_edge_to(&self, e: &EntityUID) -> bool
Return true when their is an edge between this node and the node with
key
k
.Auto Trait Implementations§
impl Freeze for ValidatorActionId
impl RefUnwindSafe for ValidatorActionId
impl Send for ValidatorActionId
impl Sync for ValidatorActionId
impl Unpin for ValidatorActionId
impl UnwindSafe for ValidatorActionId
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more