pub enum NodeMetadataError {
Capacity,
NameTooLong,
UnknownNode,
UnknownEntity,
DuplicateId,
}Expand description
Metadata recorder/runtime error.
Variants§
Capacity
Fixed recorder capacity exhausted.
NameTooLong
Stable ID, node name, namespace, topic, service, action, or parameter name was too long.
UnknownNode
Entity references a node ID that has not been declared.
UnknownEntity
Callback effect references an entity ID that has not been declared.
DuplicateId
Stable ID already exists in the same component metadata.
Trait Implementations§
Source§impl Clone for NodeMetadataError
impl Clone for NodeMetadataError
Source§fn clone(&self) -> NodeMetadataError
fn clone(&self) -> NodeMetadataError
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 NodeMetadataError
impl Debug for NodeMetadataError
Source§impl From<NodeMetadataError> for NodeDeclError
impl From<NodeMetadataError> for NodeDeclError
Source§fn from(value: NodeMetadataError) -> Self
fn from(value: NodeMetadataError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for NodeMetadataError
impl PartialEq for NodeMetadataError
impl Copy for NodeMetadataError
impl Eq for NodeMetadataError
impl StructuralPartialEq for NodeMetadataError
Auto Trait Implementations§
impl Freeze for NodeMetadataError
impl RefUnwindSafe for NodeMetadataError
impl Send for NodeMetadataError
impl Sync for NodeMetadataError
impl Unpin for NodeMetadataError
impl UnsafeUnpin for NodeMetadataError
impl UnwindSafe for NodeMetadataError
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