pub enum ActionConstraint {
All,
Eq(EqConstraint),
In(ActionInConstraint),
}
Expand description
Serde JSON structure for an action scope constraint in the EST format
Variants§
All
No constraint (i.e., action,
)
Eq(EqConstraint)
==
constraint
In(ActionInConstraint)
in
constraint
Implementations§
Source§impl ActionConstraint
impl ActionConstraint
Sourcepub fn link(
self,
_vals: &HashMap<SlotId, EntityUidJson>,
) -> Result<Self, LinkingError>
pub fn link( self, _vals: &HashMap<SlotId, EntityUidJson>, ) -> Result<Self, LinkingError>
Fill in any slots in the action constraint using the values in vals
.
Throws an error if vals
doesn’t contain a necessary mapping, but does
not throw an error if vals
contains unused mappings.
Sourcepub fn sub_entity_literals(
self,
mapping: &BTreeMap<EntityUID, EntityUID>,
) -> Result<Self, JsonDeserializationError>
pub fn sub_entity_literals( self, mapping: &BTreeMap<EntityUID, EntityUID>, ) -> Result<Self, JsonDeserializationError>
Substitute entity literals
Trait Implementations§
Source§impl Clone for ActionConstraint
impl Clone for ActionConstraint
Source§fn clone(&self) -> ActionConstraint
fn clone(&self) -> ActionConstraint
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 ActionConstraint
impl Debug for ActionConstraint
Source§impl<'de> Deserialize<'de> for ActionConstraint
impl<'de> Deserialize<'de> for ActionConstraint
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 Display for ActionConstraint
impl Display for ActionConstraint
Source§impl From<ActionConstraint> for ActionConstraint
impl From<ActionConstraint> for ActionConstraint
Source§fn from(constraint: ActionConstraint) -> ActionConstraint
fn from(constraint: ActionConstraint) -> ActionConstraint
Converts to this type from the input type.
Source§impl PartialEq for ActionConstraint
impl PartialEq for ActionConstraint
Source§impl Serialize for ActionConstraint
impl Serialize for ActionConstraint
Source§impl TryFrom<ActionConstraint> for ActionConstraint
impl TryFrom<ActionConstraint> for ActionConstraint
Source§type Error = FromJsonError
type Error = FromJsonError
The type returned in the event of a conversion error.
Source§fn try_from(
constraint: ActionConstraint,
) -> Result<ActionConstraint, Self::Error>
fn try_from( constraint: ActionConstraint, ) -> Result<ActionConstraint, Self::Error>
Performs the conversion.
impl StructuralPartialEq for ActionConstraint
Auto Trait Implementations§
impl Freeze for ActionConstraint
impl RefUnwindSafe for ActionConstraint
impl Send for ActionConstraint
impl Sync for ActionConstraint
impl Unpin for ActionConstraint
impl UnwindSafe for ActionConstraint
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