pub struct ActivityLog {
pub id: Option<String>,
pub text: Option<String>,
pub html: Option<String>,
pub created_at: Option<DateTime<Utc>>,
pub config: Option<Value>,
pub environment: Option<String>,
pub project: Option<String>,
pub user: Option<ActivityLogUser>,
}Expand description
ActivityLog
Fields§
§id: Option<String>§text: Option<String>§html: Option<String>§created_at: Option<DateTime<Utc>>§config: Option<Value>§environment: Option<String>§project: Option<String>§user: Option<ActivityLogUser>Implementations§
Source§impl ActivityLog
impl ActivityLog
pub fn new() -> ActivityLog
Trait Implementations§
Source§impl Clone for ActivityLog
impl Clone for ActivityLog
Source§fn clone(&self) -> ActivityLog
fn clone(&self) -> ActivityLog
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 ActivityLog
impl Debug for ActivityLog
Source§impl Default for ActivityLog
impl Default for ActivityLog
Source§fn default() -> ActivityLog
fn default() -> ActivityLog
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ActivityLog
impl<'de> Deserialize<'de> for ActivityLog
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 ActivityLog
impl PartialEq for ActivityLog
Source§impl Serialize for ActivityLog
impl Serialize for ActivityLog
impl StructuralPartialEq for ActivityLog
Auto Trait Implementations§
impl Freeze for ActivityLog
impl RefUnwindSafe for ActivityLog
impl Send for ActivityLog
impl Sync for ActivityLog
impl Unpin for ActivityLog
impl UnsafeUnpin for ActivityLog
impl UnwindSafe for ActivityLog
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