#[non_exhaustive]pub struct GetPostureRequest {
pub name: String,
pub revision_id: String,
/* private fields */
}Expand description
Message for getting a Posture.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: StringRequired. Name of the resource.
revision_id: StringOptional. Posture revision which needs to be retrieved.
Implementations§
Trait Implementations§
Source§impl Clone for GetPostureRequest
impl Clone for GetPostureRequest
Source§fn clone(&self) -> GetPostureRequest
fn clone(&self) -> GetPostureRequest
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 GetPostureRequest
impl Debug for GetPostureRequest
Source§impl Default for GetPostureRequest
impl Default for GetPostureRequest
Source§fn default() -> GetPostureRequest
fn default() -> GetPostureRequest
Returns the “default value” for a type. Read more
Source§impl Message for GetPostureRequest
impl Message for GetPostureRequest
Source§impl PartialEq for GetPostureRequest
impl PartialEq for GetPostureRequest
impl StructuralPartialEq for GetPostureRequest
Auto Trait Implementations§
impl Freeze for GetPostureRequest
impl RefUnwindSafe for GetPostureRequest
impl Send for GetPostureRequest
impl Sync for GetPostureRequest
impl Unpin for GetPostureRequest
impl UnwindSafe for GetPostureRequest
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