pub struct InstructionBundle {
pub system: Option<String>,
pub developer: Option<String>,
pub developer_context: Option<String>,
}Fields§
§system: Option<String>§developer: Option<String>§developer_context: Option<String>Per-turn developer-authority context supplied on turn/start. Volatile:
providers must render it after system and developer so prompt-cache
breakpoints on the stable prefix survive per-turn changes. Never
persisted to thread state.
Trait Implementations§
Source§impl Clone for InstructionBundle
impl Clone for InstructionBundle
Source§fn clone(&self) -> InstructionBundle
fn clone(&self) -> InstructionBundle
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 InstructionBundle
impl Debug for InstructionBundle
Source§impl Default for InstructionBundle
impl Default for InstructionBundle
Source§fn default() -> InstructionBundle
fn default() -> InstructionBundle
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InstructionBundle
impl<'de> Deserialize<'de> for InstructionBundle
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
impl Eq for InstructionBundle
Source§impl PartialEq for InstructionBundle
impl PartialEq for InstructionBundle
Source§fn eq(&self, other: &InstructionBundle) -> bool
fn eq(&self, other: &InstructionBundle) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for InstructionBundle
impl Serialize for InstructionBundle
impl StructuralPartialEq for InstructionBundle
Auto Trait Implementations§
impl Freeze for InstructionBundle
impl RefUnwindSafe for InstructionBundle
impl Send for InstructionBundle
impl Sync for InstructionBundle
impl Unpin for InstructionBundle
impl UnsafeUnpin for InstructionBundle
impl UnwindSafe for InstructionBundle
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,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.