pub struct BriefingResponse {
pub content: String,
pub new_today: u64,
pub primary_agent: Option<String>,
pub generated_at: i64,
pub is_stale: bool,
}Expand description
Response type for the daily briefing endpoint.
Fields§
§content: String§new_today: u64§primary_agent: Option<String>§generated_at: i64§is_stale: boolTrait Implementations§
Source§impl Clone for BriefingResponse
impl Clone for BriefingResponse
Source§fn clone(&self) -> BriefingResponse
fn clone(&self) -> BriefingResponse
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 BriefingResponse
impl Debug for BriefingResponse
Source§impl<'de> Deserialize<'de> for BriefingResponse
impl<'de> Deserialize<'de> for BriefingResponse
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 BriefingResponse
impl RefUnwindSafe for BriefingResponse
impl Send for BriefingResponse
impl Sync for BriefingResponse
impl Unpin for BriefingResponse
impl UnsafeUnpin for BriefingResponse
impl UnwindSafe for BriefingResponse
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