pub struct RegionAddressesMoveRequest {
pub description: Option<String>,
pub destination_address: Option<String>,
}
Expand description
There is no detailed description.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- move addresses (request)
Fields§
§description: Option<String>
An optional destination address description if intended to be different from the source.
destination_address: Option<String>
The URL of the destination address to move to. This can be a full or partial URL. For example, the following are all valid URLs to a address: - https://www.googleapis.com/compute/v1/projects/project/regions/region /addresses/address - projects/project/regions/region/addresses/address Note that destination project must be different from the source project. So /regions/region/addresses/address is not valid partial url.
Trait Implementations§
Source§impl Clone for RegionAddressesMoveRequest
impl Clone for RegionAddressesMoveRequest
Source§fn clone(&self) -> RegionAddressesMoveRequest
fn clone(&self) -> RegionAddressesMoveRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for RegionAddressesMoveRequest
impl Debug for RegionAddressesMoveRequest
Source§impl Default for RegionAddressesMoveRequest
impl Default for RegionAddressesMoveRequest
Source§fn default() -> RegionAddressesMoveRequest
fn default() -> RegionAddressesMoveRequest
Source§impl<'de> Deserialize<'de> for RegionAddressesMoveRequest
impl<'de> Deserialize<'de> for RegionAddressesMoveRequest
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>,
impl RequestValue for RegionAddressesMoveRequest
Auto Trait Implementations§
impl Freeze for RegionAddressesMoveRequest
impl RefUnwindSafe for RegionAddressesMoveRequest
impl Send for RegionAddressesMoveRequest
impl Sync for RegionAddressesMoveRequest
impl Unpin for RegionAddressesMoveRequest
impl UnwindSafe for RegionAddressesMoveRequest
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more