pub struct ProjectLog {
pub id: String,
pub user: SimpleUser,
pub workspace: String,
pub action_names: Vec<String>,
pub actions: Vec<ProjectLogAction>,
pub channel: String,
pub ip_address: String,
pub audit: Audit,
}
Fields§
§id: String
§user: SimpleUser
§workspace: String
§action_names: Vec<String>
§actions: Vec<ProjectLogAction>
§channel: String
§ip_address: String
§audit: Audit
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ProjectLog
impl<'de> Deserialize<'de> for ProjectLog
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 ProjectLog
impl RefUnwindSafe for ProjectLog
impl Send for ProjectLog
impl Sync for ProjectLog
impl Unpin for ProjectLog
impl UnwindSafe for ProjectLog
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