#[non_exhaustive]pub struct GetOperationalStatusRequest {
pub interconnect_group: String,
pub project: String,
/* private fields */
}Available on crate feature
interconnect-groups only.Expand description
Synthetic request message for the getOperationalStatus() 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.interconnect_group: StringName of the interconnectGroup resource to query.
project: StringProject ID for this request.
Implementations§
Source§impl GetOperationalStatusRequest
impl GetOperationalStatusRequest
pub fn new() -> Self
Sourcepub fn set_interconnect_group<T: Into<String>>(self, v: T) -> Self
pub fn set_interconnect_group<T: Into<String>>(self, v: T) -> Self
Sets the value of interconnect_group.
§Example
ⓘ
let x = GetOperationalStatusRequest::new().set_interconnect_group("example");Trait Implementations§
Source§impl Clone for GetOperationalStatusRequest
impl Clone for GetOperationalStatusRequest
Source§fn clone(&self) -> GetOperationalStatusRequest
fn clone(&self) -> GetOperationalStatusRequest
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 GetOperationalStatusRequest
impl Debug for GetOperationalStatusRequest
Source§impl Default for GetOperationalStatusRequest
impl Default for GetOperationalStatusRequest
Source§fn default() -> GetOperationalStatusRequest
fn default() -> GetOperationalStatusRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for GetOperationalStatusRequest
Auto Trait Implementations§
impl Freeze for GetOperationalStatusRequest
impl RefUnwindSafe for GetOperationalStatusRequest
impl Send for GetOperationalStatusRequest
impl Sync for GetOperationalStatusRequest
impl Unpin for GetOperationalStatusRequest
impl UnwindSafe for GetOperationalStatusRequest
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