pub struct DebugLevel {
pub id: Option<String>,
pub developer_name: String,
pub master_label: String,
pub apex_code: Option<String>,
pub apex_profiling: Option<String>,
pub callout: Option<String>,
pub database: Option<String>,
pub system: Option<String>,
pub validation: Option<String>,
pub visualforce: Option<String>,
pub workflow: Option<String>,
}Expand description
DebugLevel record from Tooling API.
Fields§
§id: Option<String>§developer_name: String§master_label: String§apex_code: Option<String>§apex_profiling: Option<String>§callout: Option<String>§database: Option<String>§system: Option<String>§validation: Option<String>§visualforce: Option<String>§workflow: Option<String>Trait Implementations§
Source§impl Clone for DebugLevel
impl Clone for DebugLevel
Source§fn clone(&self) -> DebugLevel
fn clone(&self) -> DebugLevel
Returns a duplicate of the value. Read more
1.0.0 · 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 DebugLevel
impl Debug for DebugLevel
Source§impl<'de> Deserialize<'de> for DebugLevel
impl<'de> Deserialize<'de> for DebugLevel
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 DebugLevel
impl RefUnwindSafe for DebugLevel
impl Send for DebugLevel
impl Sync for DebugLevel
impl Unpin for DebugLevel
impl UnwindSafe for DebugLevel
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