pub trait AcceptableMasterList {
// Required method
fn is_acceptable(&self, identity: ClockIdentity) -> bool;
}Expand description
A list of ClockIdentitys a Port may accept as a
master clock.
Required Methods§
Sourcefn is_acceptable(&self, identity: ClockIdentity) -> bool
fn is_acceptable(&self, identity: ClockIdentity) -> bool
Return whether the clock with identity may be a master to this Port
Implementations on Foreign Types§
Source§impl AcceptableMasterList for &[ClockIdentity]
impl AcceptableMasterList for &[ClockIdentity]
fn is_acceptable(&self, identity: ClockIdentity) -> bool
Source§impl AcceptableMasterList for BTreeSet<ClockIdentity>
Available on crate feature std only.
impl AcceptableMasterList for BTreeSet<ClockIdentity>
Available on crate feature
std only.fn is_acceptable(&self, identity: ClockIdentity) -> bool
Source§impl AcceptableMasterList for Vec<ClockIdentity>
Available on crate feature std only.
impl AcceptableMasterList for Vec<ClockIdentity>
Available on crate feature
std only.fn is_acceptable(&self, identity: ClockIdentity) -> bool
Source§impl AcceptableMasterList for HashSet<ClockIdentity>
Available on crate feature std only.
impl AcceptableMasterList for HashSet<ClockIdentity>
Available on crate feature
std only.