pub struct ProjectDetailSession {
pub session_id: String,
pub agent_id: String,
pub updated_at: Option<String>,
pub title: Option<String>,
}Expand description
ProjectDetailSession model.
Fields§
§session_id: String§agent_id: String§updated_at: Option<String>§title: Option<String>Trait Implementations§
Source§impl Clone for ProjectDetailSession
impl Clone for ProjectDetailSession
Source§fn clone(&self) -> ProjectDetailSession
fn clone(&self) -> ProjectDetailSession
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 ProjectDetailSession
impl Debug for ProjectDetailSession
Source§impl Default for ProjectDetailSession
impl Default for ProjectDetailSession
Source§fn default() -> ProjectDetailSession
fn default() -> ProjectDetailSession
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProjectDetailSession
impl<'de> Deserialize<'de> for ProjectDetailSession
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 ProjectDetailSession
impl PartialEq for ProjectDetailSession
Source§impl Serialize for ProjectDetailSession
impl Serialize for ProjectDetailSession
impl StructuralPartialEq for ProjectDetailSession
Auto Trait Implementations§
impl Freeze for ProjectDetailSession
impl RefUnwindSafe for ProjectDetailSession
impl Send for ProjectDetailSession
impl Sync for ProjectDetailSession
impl Unpin for ProjectDetailSession
impl UnsafeUnpin for ProjectDetailSession
impl UnwindSafe for ProjectDetailSession
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