#[repr(u8)]pub enum TreeElementKind {
Leaf = 0,
Node = 1,
SubTree = 2,
}Expand description
The different kinds of a BehaviorTreeElement
Variants§
Trait Implementations§
Source§impl Clone for TreeElementKind
impl Clone for TreeElementKind
Source§fn clone(&self) -> TreeElementKind
fn clone(&self) -> TreeElementKind
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 TreeElementKind
impl Debug for TreeElementKind
Source§impl PartialEq for TreeElementKind
impl PartialEq for TreeElementKind
Source§fn eq(&self, other: &TreeElementKind) -> bool
fn eq(&self, other: &TreeElementKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for TreeElementKind
impl Eq for TreeElementKind
impl StructuralPartialEq for TreeElementKind
Auto Trait Implementations§
impl Freeze for TreeElementKind
impl RefUnwindSafe for TreeElementKind
impl Send for TreeElementKind
impl Sync for TreeElementKind
impl Unpin for TreeElementKind
impl UnsafeUnpin for TreeElementKind
impl UnwindSafe for TreeElementKind
Blanket Implementations§
Source§impl<T> AnyPortValue for T
impl<T> AnyPortValue for T
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