pub struct ProtectedRouteProjection {
pub name: String,
pub enabled: bool,
pub public_resource: String,
pub upstream: Option<String>,
pub connected: bool,
}Fields§
§name: String§enabled: bool§public_resource: String§upstream: Option<String>§connected: boolTrait Implementations§
Source§impl Clone for ProtectedRouteProjection
impl Clone for ProtectedRouteProjection
Source§fn clone(&self) -> ProtectedRouteProjection
fn clone(&self) -> ProtectedRouteProjection
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ProtectedRouteProjection
impl Debug for ProtectedRouteProjection
Source§impl PartialEq for ProtectedRouteProjection
impl PartialEq for ProtectedRouteProjection
Source§fn eq(&self, other: &ProtectedRouteProjection) -> bool
fn eq(&self, other: &ProtectedRouteProjection) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ProtectedRouteProjection
impl StructuralPartialEq for ProtectedRouteProjection
Auto Trait Implementations§
impl Freeze for ProtectedRouteProjection
impl RefUnwindSafe for ProtectedRouteProjection
impl Send for ProtectedRouteProjection
impl Sync for ProtectedRouteProjection
impl Unpin for ProtectedRouteProjection
impl UnsafeUnpin for ProtectedRouteProjection
impl UnwindSafe for ProtectedRouteProjection
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.