pub enum BrowseNamespace {
Flat,
Hierarchical,
Unknown,
}Expand description
OPC DA address-space organization reported by a server.
Variants§
Flat
All item IDs live in one flat namespace.
Hierarchical
Items are organized under browsable branches.
Unknown
The server supports DA 3.0 browsing but does not expose the DA 2.x namespace query needed to classify its organization.
Trait Implementations§
Source§impl Clone for BrowseNamespace
impl Clone for BrowseNamespace
Source§fn clone(&self) -> BrowseNamespace
fn clone(&self) -> BrowseNamespace
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 BrowseNamespace
Source§impl Debug for BrowseNamespace
impl Debug for BrowseNamespace
impl Eq for BrowseNamespace
Source§impl PartialEq for BrowseNamespace
impl PartialEq for BrowseNamespace
impl StructuralPartialEq for BrowseNamespace
Auto Trait Implementations§
impl Freeze for BrowseNamespace
impl RefUnwindSafe for BrowseNamespace
impl Send for BrowseNamespace
impl Sync for BrowseNamespace
impl Unpin for BrowseNamespace
impl UnsafeUnpin for BrowseNamespace
impl UnwindSafe for BrowseNamespace
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