pub struct TimelineResponse {
pub uid: String,
pub company_name: String,
pub events: Vec<TimelineEvent>,
pub total_events: i64,
}Expand description
Chronological timeline of a company’s changes and events.
Fields§
§uid: String§company_name: String§events: Vec<TimelineEvent>§total_events: i64Trait Implementations§
Source§impl Clone for TimelineResponse
impl Clone for TimelineResponse
Source§fn clone(&self) -> TimelineResponse
fn clone(&self) -> TimelineResponse
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 TimelineResponse
impl Debug for TimelineResponse
Source§impl<'de> Deserialize<'de> for TimelineResponse
impl<'de> Deserialize<'de> for TimelineResponse
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 TimelineResponse
impl RefUnwindSafe for TimelineResponse
impl Send for TimelineResponse
impl Sync for TimelineResponse
impl Unpin for TimelineResponse
impl UnsafeUnpin for TimelineResponse
impl UnwindSafe for TimelineResponse
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