pub struct TraceFlag {
pub id: Option<String>,
pub traced_entity_id: String,
pub log_type: String,
pub debug_level_id: String,
pub start_date: Option<String>,
pub expiration_date: Option<String>,
}Expand description
TraceFlag record from Tooling API.
Fields§
§id: Option<String>§traced_entity_id: String§log_type: String§debug_level_id: String§start_date: Option<String>§expiration_date: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for TraceFlag
impl<'de> Deserialize<'de> for TraceFlag
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 TraceFlag
impl RefUnwindSafe for TraceFlag
impl Send for TraceFlag
impl Sync for TraceFlag
impl Unpin for TraceFlag
impl UnwindSafe for TraceFlag
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