pub enum PvListMode {
Off,
Discover,
List,
}Expand description
Controls how the server exposes its PV directory.
Variants§
Off
No PV listing at all.
Discover
Respond to UDP search for known PVs only; no GET_FIELD listing.
List
Full pvlist & server-RPC listing support.
Implementations§
Source§impl PvListMode
impl PvListMode
Trait Implementations§
Source§impl Clone for PvListMode
impl Clone for PvListMode
Source§fn clone(&self) -> PvListMode
fn clone(&self) -> PvListMode
Returns a duplicate of the value. Read more
1.0.0 · 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 PvListMode
impl Debug for PvListMode
Source§impl PartialEq for PvListMode
impl PartialEq for PvListMode
impl Copy for PvListMode
impl Eq for PvListMode
impl StructuralPartialEq for PvListMode
Auto Trait Implementations§
impl Freeze for PvListMode
impl RefUnwindSafe for PvListMode
impl Send for PvListMode
impl Sync for PvListMode
impl Unpin for PvListMode
impl UnsafeUnpin for PvListMode
impl UnwindSafe for PvListMode
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