pub struct SessionFollowUp {
pub follow_up_id: String,
pub sequence: u64,
pub session_id: String,
pub principal_id: String,
pub instruction: String,
pub created_at: String,
}Expand description
Principal-owned, monotonic steering instruction consumed by an ADK graph.
Fields§
§follow_up_id: StringUnique follow-up identifier.
sequence: u64Monotonic sequence within the session.
session_id: StringThe session the follow-up belongs to.
principal_id: StringThe principal that owns the follow-up.
instruction: StringThe steering instruction text.
created_at: StringRFC 3339 creation timestamp.
Trait Implementations§
Source§impl Clone for SessionFollowUp
impl Clone for SessionFollowUp
Source§fn clone(&self) -> SessionFollowUp
fn clone(&self) -> SessionFollowUp
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 SessionFollowUp
impl Debug for SessionFollowUp
Source§impl<'de> Deserialize<'de> for SessionFollowUp
impl<'de> Deserialize<'de> for SessionFollowUp
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 SessionFollowUp
impl PartialEq for SessionFollowUp
Source§impl Serialize for SessionFollowUp
impl Serialize for SessionFollowUp
impl StructuralPartialEq for SessionFollowUp
Auto Trait Implementations§
impl Freeze for SessionFollowUp
impl RefUnwindSafe for SessionFollowUp
impl Send for SessionFollowUp
impl Sync for SessionFollowUp
impl Unpin for SessionFollowUp
impl UnsafeUnpin for SessionFollowUp
impl UnwindSafe for SessionFollowUp
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