pub enum DiscoveryPublicationScheduleError {
ZeroInterval {
interface: InterfaceId,
},
DuplicateInterface {
interface: InterfaceId,
},
UnknownInterface {
interface: InterfaceId,
},
}Variants§
ZeroInterval
Fields
§
interface: InterfaceIdDuplicateInterface
Fields
§
interface: InterfaceIdUnknownInterface
Fields
§
interface: InterfaceIdTrait Implementations§
Source§impl Clone for DiscoveryPublicationScheduleError
impl Clone for DiscoveryPublicationScheduleError
Source§fn clone(&self) -> DiscoveryPublicationScheduleError
fn clone(&self) -> DiscoveryPublicationScheduleError
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 moreimpl Copy for DiscoveryPublicationScheduleError
impl Eq for DiscoveryPublicationScheduleError
impl StructuralPartialEq for DiscoveryPublicationScheduleError
Auto Trait Implementations§
impl Freeze for DiscoveryPublicationScheduleError
impl RefUnwindSafe for DiscoveryPublicationScheduleError
impl Send for DiscoveryPublicationScheduleError
impl Sync for DiscoveryPublicationScheduleError
impl Unpin for DiscoveryPublicationScheduleError
impl UnsafeUnpin for DiscoveryPublicationScheduleError
impl UnwindSafe for DiscoveryPublicationScheduleError
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