pub struct MeshView {
pub id: Option<String>,
pub mtls: Option<String>,
pub service: Option<String>,
pub status: Option<String>,
}Fields§
§id: Option<String>ID is the ZT edge service’s id.
mtls: Option<String>Mtls is "required" when the service mandates end-to-end encryption, else "enabled" — the fabric mutually authenticates every link, so it is never truly off.
service: Option<String>Service is the edge service’s name.
status: Option<String>Status is "active": a listed service is a configured, dialable mesh entry.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for MeshView
impl<'de> Deserialize<'de> for MeshView
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>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for MeshView
Auto Trait Implementations§
impl Freeze for MeshView
impl RefUnwindSafe for MeshView
impl Send for MeshView
impl Sync for MeshView
impl Unpin for MeshView
impl UnsafeUnpin for MeshView
impl UnwindSafe for MeshView
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