pub struct IcApiBoundaryNodeRow {
pub node_id: String,
pub domain: String,
pub ipv4_address: Option<String>,
pub ipv6_address: String,
}Expand description
IcApiBoundaryNodeRow
One API boundary node authenticated by the certified IC state tree.
Fields§
§node_id: StringCanonical API boundary-node principal.
domain: StringCertified DNS domain.
ipv4_address: Option<String>Optional certified IPv4 address.
ipv6_address: StringCertified IPv6 address.
Trait Implementations§
Source§impl Clone for IcApiBoundaryNodeRow
impl Clone for IcApiBoundaryNodeRow
Source§fn clone(&self) -> IcApiBoundaryNodeRow
fn clone(&self) -> IcApiBoundaryNodeRow
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 IcApiBoundaryNodeRow
impl Debug for IcApiBoundaryNodeRow
impl Eq for IcApiBoundaryNodeRow
Source§impl PartialEq for IcApiBoundaryNodeRow
impl PartialEq for IcApiBoundaryNodeRow
Source§impl Serialize for IcApiBoundaryNodeRow
impl Serialize for IcApiBoundaryNodeRow
impl StructuralPartialEq for IcApiBoundaryNodeRow
Auto Trait Implementations§
impl Freeze for IcApiBoundaryNodeRow
impl RefUnwindSafe for IcApiBoundaryNodeRow
impl Send for IcApiBoundaryNodeRow
impl Sync for IcApiBoundaryNodeRow
impl Unpin for IcApiBoundaryNodeRow
impl UnsafeUnpin for IcApiBoundaryNodeRow
impl UnwindSafe for IcApiBoundaryNodeRow
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