pub struct ApexClass {
pub id: String,
pub name: String,
pub body: Option<String>,
pub status: Option<String>,
pub is_valid: Option<bool>,
pub api_version: Option<f64>,
pub length_without_comments: Option<i32>,
pub namespace_prefix: Option<String>,
pub created_date: Option<String>,
pub last_modified_date: Option<String>,
}Expand description
ApexClass record from Tooling API.
Fields§
§id: String§name: String§body: Option<String>§status: Option<String>§is_valid: Option<bool>§api_version: Option<f64>§length_without_comments: Option<i32>§namespace_prefix: Option<String>§created_date: Option<String>§last_modified_date: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for ApexClass
impl<'de> Deserialize<'de> for ApexClass
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 ApexClass
impl RefUnwindSafe for ApexClass
impl Send for ApexClass
impl Sync for ApexClass
impl Unpin for ApexClass
impl UnwindSafe for ApexClass
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