pub struct UpdateVirtualInterfaceAttributesRequest {
pub mtu: Option<i64>,
pub virtual_interface_id: String,
}Fields§
§mtu: Option<i64>The maximum transmission unit (MTU), in bytes. The supported values are 1500 and 9001. The default value is 1500.
virtual_interface_id: StringThe ID of the virtual private interface.
Trait Implementations§
Source§impl Clone for UpdateVirtualInterfaceAttributesRequest
impl Clone for UpdateVirtualInterfaceAttributesRequest
Source§fn clone(&self) -> UpdateVirtualInterfaceAttributesRequest
fn clone(&self) -> UpdateVirtualInterfaceAttributesRequest
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 Default for UpdateVirtualInterfaceAttributesRequest
impl Default for UpdateVirtualInterfaceAttributesRequest
Source§fn default() -> UpdateVirtualInterfaceAttributesRequest
fn default() -> UpdateVirtualInterfaceAttributesRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateVirtualInterfaceAttributesRequest
impl PartialEq for UpdateVirtualInterfaceAttributesRequest
Source§fn eq(&self, other: &UpdateVirtualInterfaceAttributesRequest) -> bool
fn eq(&self, other: &UpdateVirtualInterfaceAttributesRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UpdateVirtualInterfaceAttributesRequest
Auto Trait Implementations§
impl Freeze for UpdateVirtualInterfaceAttributesRequest
impl RefUnwindSafe for UpdateVirtualInterfaceAttributesRequest
impl Send for UpdateVirtualInterfaceAttributesRequest
impl Sync for UpdateVirtualInterfaceAttributesRequest
impl Unpin for UpdateVirtualInterfaceAttributesRequest
impl UnwindSafe for UpdateVirtualInterfaceAttributesRequest
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