#[non_exhaustive]pub struct GetControlRequest {
pub name: String,
/* private fields */
}Available on crate feature
control-service only.Expand description
Request for GetControl method.
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. The resource name of the Control to get. Format:
projects/{project}/locations/{location}/collections/{collection_id}/dataStores/{data_store_id}/controls/{control_id}
Implementations§
Trait Implementations§
Source§impl Clone for GetControlRequest
impl Clone for GetControlRequest
Source§fn clone(&self) -> GetControlRequest
fn clone(&self) -> GetControlRequest
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 GetControlRequest
impl Debug for GetControlRequest
Source§impl Default for GetControlRequest
impl Default for GetControlRequest
Source§fn default() -> GetControlRequest
fn default() -> GetControlRequest
Returns the “default value” for a type. Read more
Source§impl Message for GetControlRequest
impl Message for GetControlRequest
Source§impl PartialEq for GetControlRequest
impl PartialEq for GetControlRequest
impl StructuralPartialEq for GetControlRequest
Auto Trait Implementations§
impl Freeze for GetControlRequest
impl RefUnwindSafe for GetControlRequest
impl Send for GetControlRequest
impl Sync for GetControlRequest
impl Unpin for GetControlRequest
impl UnwindSafe for GetControlRequest
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