pub struct ServiceQualification {
pub exposure_mode: ExposureMode,
pub ipv4: Ipv4Qualification,
pub ipv6: Ipv6Qualification,
pub exposure: ExposureQualification,
pub recommendation: String,
}Expand description
ADR-043 §11 — structured result of service qualification.
Fields§
§exposure_mode: ExposureMode§ipv4: Ipv4Qualification§ipv6: Ipv6Qualification§exposure: ExposureQualification§recommendation: StringTrait Implementations§
Source§impl Clone for ServiceQualification
impl Clone for ServiceQualification
Source§fn clone(&self) -> ServiceQualification
fn clone(&self) -> ServiceQualification
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 moreAuto Trait Implementations§
impl Freeze for ServiceQualification
impl RefUnwindSafe for ServiceQualification
impl Send for ServiceQualification
impl Sync for ServiceQualification
impl Unpin for ServiceQualification
impl UnsafeUnpin for ServiceQualification
impl UnwindSafe for ServiceQualification
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