pub struct ApexLog {
pub id: String,
pub log_user: Option<LogUser>,
pub log_user_id: Option<String>,
pub log_length: Option<i64>,
pub last_modified_date: Option<String>,
pub start_time: Option<String>,
pub status: Option<String>,
pub operation: Option<String>,
pub request: Option<String>,
pub application: Option<String>,
pub duration_milliseconds: Option<i64>,
pub location: Option<String>,
}Expand description
ApexLog record from Tooling API.
Fields§
§id: String§log_user: Option<LogUser>§log_user_id: Option<String>§log_length: Option<i64>§last_modified_date: Option<String>§start_time: Option<String>§status: Option<String>§operation: Option<String>§request: Option<String>§application: Option<String>§duration_milliseconds: Option<i64>§location: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for ApexLog
impl<'de> Deserialize<'de> for ApexLog
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 ApexLog
impl RefUnwindSafe for ApexLog
impl Send for ApexLog
impl Sync for ApexLog
impl Unpin for ApexLog
impl UnwindSafe for ApexLog
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