pub struct Intention {
pub id: Uuid,
pub description: String,
pub priority: u32,
pub completion_status: f64,
pub associated_perceptions: Vec<PerceptionId>,
}Expand description
Intentional directions and goals
Fields§
§id: Uuid§description: String§priority: u32§completion_status: f64§associated_perceptions: Vec<PerceptionId>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Intention
impl<'de> Deserialize<'de> for Intention
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
Auto Trait Implementations§
impl Freeze for Intention
impl RefUnwindSafe for Intention
impl Send for Intention
impl Sync for Intention
impl Unpin for Intention
impl UnsafeUnpin for Intention
impl UnwindSafe for Intention
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