pub struct DeployMessage {Show 13 fields
pub id: Option<String>,
pub component_type: Option<String>,
pub full_name: Option<String>,
pub file_name: Option<String>,
pub success: bool,
pub changed: bool,
pub created: bool,
pub deleted: bool,
pub created_date: Option<String>,
pub problem: Option<String>,
pub problem_type: Option<DeployProblemType>,
pub line_number: Option<i32>,
pub column_number: Option<i32>,
}Expand description
Per-component status entry inside DeployDetails.
Fields§
§id: Option<String>§component_type: Option<String>Metadata type, e.g. ApexClass.
full_name: Option<String>Component identifier (e.g. MyClass).
file_name: Option<String>File path inside the deployed zip.
success: bool§changed: bool§created: bool§deleted: bool§created_date: Option<String>§problem: Option<String>Error or warning message text when success == false or
problem_type == Warning.
problem_type: Option<DeployProblemType>Distinguishes errors from warnings.
line_number: Option<i32>Line number in a source file where the problem occurred, when applicable (Apex class compile errors, etc.).
column_number: Option<i32>Column number, paired with line_number.
Trait Implementations§
Source§impl Clone for DeployMessage
impl Clone for DeployMessage
Source§fn clone(&self) -> DeployMessage
fn clone(&self) -> DeployMessage
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DeployMessage
impl Debug for DeployMessage
Source§impl<'de> Deserialize<'de> for DeployMessage
impl<'de> Deserialize<'de> for DeployMessage
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 DeployMessage
impl RefUnwindSafe for DeployMessage
impl Send for DeployMessage
impl Sync for DeployMessage
impl Unpin for DeployMessage
impl UnsafeUnpin for DeployMessage
impl UnwindSafe for DeployMessage
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