pub struct EchoScriptMemory {
pub emotion: Option<String>,
pub tone: Option<String>,
pub speaker: Option<String>,
pub license: Option<String>,
pub lock: Option<String>,
pub reem: Option<String>,
pub audit: Option<String>,
pub prompts: Vec<String>,
pub links: Vec<String>,
pub timestamp: Option<String>,
}Expand description
๐ง Structured metadata parsed from EchoScript reflections
Fieldsยง
ยงemotion: Option<String>ยงtone: Option<String>ยงspeaker: Option<String>ยงlicense: Option<String>ยงlock: Option<String>ยงreem: Option<String>ยงaudit: Option<String>ยงprompts: Vec<String>ยงlinks: Vec<String>ยงtimestamp: Option<String>Trait Implementationsยง
Sourceยงimpl Clone for EchoScriptMemory
impl Clone for EchoScriptMemory
Sourceยงfn clone(&self) -> EchoScriptMemory
fn clone(&self) -> EchoScriptMemory
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 EchoScriptMemory
impl Debug for EchoScriptMemory
Sourceยงimpl Default for EchoScriptMemory
impl Default for EchoScriptMemory
Sourceยงfn default() -> EchoScriptMemory
fn default() -> EchoScriptMemory
Returns the โdefault valueโ for a type. Read more
Sourceยงimpl<'de> Deserialize<'de> for EchoScriptMemory
impl<'de> Deserialize<'de> for EchoScriptMemory
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 EchoScriptMemory
impl RefUnwindSafe for EchoScriptMemory
impl Send for EchoScriptMemory
impl Sync for EchoScriptMemory
impl Unpin for EchoScriptMemory
impl UnwindSafe for EchoScriptMemory
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ยง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