pub struct BlackboardDescriptor {
pub key: String,
pub label: String,
pub collection: NodeRepeatableCollectionDescriptor,
pub action_keys: Vec<String>,
}Expand description
Graph-level property collection exposed to adapters as a local blackboard UI.
Fields§
§key: String§label: String§collection: NodeRepeatableCollectionDescriptor§action_keys: Vec<String>Implementations§
Trait Implementations§
Source§impl Clone for BlackboardDescriptor
impl Clone for BlackboardDescriptor
Source§fn clone(&self) -> BlackboardDescriptor
fn clone(&self) -> BlackboardDescriptor
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BlackboardDescriptor
impl Debug for BlackboardDescriptor
Source§impl<'de> Deserialize<'de> for BlackboardDescriptor
impl<'de> Deserialize<'de> for BlackboardDescriptor
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 BlackboardDescriptor
impl PartialEq for BlackboardDescriptor
Source§fn eq(&self, other: &BlackboardDescriptor) -> bool
fn eq(&self, other: &BlackboardDescriptor) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for BlackboardDescriptor
impl Serialize for BlackboardDescriptor
impl StructuralPartialEq for BlackboardDescriptor
Auto Trait Implementations§
impl Freeze for BlackboardDescriptor
impl RefUnwindSafe for BlackboardDescriptor
impl Send for BlackboardDescriptor
impl Sync for BlackboardDescriptor
impl Unpin for BlackboardDescriptor
impl UnsafeUnpin for BlackboardDescriptor
impl UnwindSafe for BlackboardDescriptor
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