#[non_exhaustive]pub struct InterceptLocation {
pub location: String,
pub state: State,
/* private fields */
}Expand description
Details about intercept in a specific cloud location.
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.location: StringOutput only. The cloud location, e.g. “us-central1-a” or “asia-south1”.
state: StateOutput only. The current state of the association in this location.
Implementations§
Source§impl InterceptLocation
impl InterceptLocation
Trait Implementations§
Source§impl Clone for InterceptLocation
impl Clone for InterceptLocation
Source§fn clone(&self) -> InterceptLocation
fn clone(&self) -> InterceptLocation
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 InterceptLocation
impl Debug for InterceptLocation
Source§impl Default for InterceptLocation
impl Default for InterceptLocation
Source§fn default() -> InterceptLocation
fn default() -> InterceptLocation
Returns the “default value” for a type. Read more
Source§impl Message for InterceptLocation
impl Message for InterceptLocation
Source§impl PartialEq for InterceptLocation
impl PartialEq for InterceptLocation
impl StructuralPartialEq for InterceptLocation
Auto Trait Implementations§
impl Freeze for InterceptLocation
impl RefUnwindSafe for InterceptLocation
impl Send for InterceptLocation
impl Sync for InterceptLocation
impl Unpin for InterceptLocation
impl UnsafeUnpin for InterceptLocation
impl UnwindSafe for InterceptLocation
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