pub struct MoveAnalysis {
pub analysis: Option<MoveAnalysisResult>,
pub display_name: Option<String>,
pub error: Option<Status>,
}Expand description
A message to group the analysis information.
This type is not used in any activity, and only used as part of another schema.
Fields§
§analysis: Option<MoveAnalysisResult>Analysis result of moving the target resource.
display_name: Option<String>The user friendly display name of the analysis. E.g. IAM, organization policy etc.
error: Option<Status>Description of error encountered when performing the analysis.
Trait Implementations§
Source§impl Clone for MoveAnalysis
impl Clone for MoveAnalysis
Source§fn clone(&self) -> MoveAnalysis
fn clone(&self) -> MoveAnalysis
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 MoveAnalysis
impl Debug for MoveAnalysis
Source§impl Default for MoveAnalysis
impl Default for MoveAnalysis
Source§fn default() -> MoveAnalysis
fn default() -> MoveAnalysis
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MoveAnalysis
impl<'de> Deserialize<'de> for MoveAnalysis
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
Source§impl Serialize for MoveAnalysis
impl Serialize for MoveAnalysis
impl Part for MoveAnalysis
Auto Trait Implementations§
impl Freeze for MoveAnalysis
impl RefUnwindSafe for MoveAnalysis
impl Send for MoveAnalysis
impl Sync for MoveAnalysis
impl Unpin for MoveAnalysis
impl UnwindSafe for MoveAnalysis
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