#[non_exhaustive]pub struct GetConnectorVersionRequest {
pub name: String,
pub view: ConnectorVersionView,
/* private fields */
}Expand description
Request message for Connectors.GetConnectorVersion.
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. Resource name of the form:
projects/*/locations/*/providers/*/connectors/*/versions/*
Only global location is supported for ConnectorVersion resource.
view: ConnectorVersionViewSpecifies which fields of the ConnectorVersion are returned in the
response. Defaults to CUSTOMER view.
Implementations§
Trait Implementations§
Source§impl Clone for GetConnectorVersionRequest
impl Clone for GetConnectorVersionRequest
Source§fn clone(&self) -> GetConnectorVersionRequest
fn clone(&self) -> GetConnectorVersionRequest
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 GetConnectorVersionRequest
impl Debug for GetConnectorVersionRequest
Source§impl Default for GetConnectorVersionRequest
impl Default for GetConnectorVersionRequest
Source§fn default() -> GetConnectorVersionRequest
fn default() -> GetConnectorVersionRequest
Returns the “default value” for a type. Read more
Source§impl Message for GetConnectorVersionRequest
impl Message for GetConnectorVersionRequest
impl StructuralPartialEq for GetConnectorVersionRequest
Auto Trait Implementations§
impl Freeze for GetConnectorVersionRequest
impl RefUnwindSafe for GetConnectorVersionRequest
impl Send for GetConnectorVersionRequest
impl Sync for GetConnectorVersionRequest
impl Unpin for GetConnectorVersionRequest
impl UnsafeUnpin for GetConnectorVersionRequest
impl UnwindSafe for GetConnectorVersionRequest
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