pub enum DocumentBinding {
Unbound,
Bound(DocumentGeneration),
}Expand description
Whether a platform callback is bound to a committed document generation.
Variants§
Unbound
The adapter cannot prove which committed document emitted the message.
Bound(DocumentGeneration)
The adapter captured the native WebView’s committed document generation.
Trait Implementations§
Source§impl Clone for DocumentBinding
impl Clone for DocumentBinding
Source§fn clone(&self) -> DocumentBinding
fn clone(&self) -> DocumentBinding
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 DocumentBinding
Source§impl Debug for DocumentBinding
impl Debug for DocumentBinding
impl Eq for DocumentBinding
Source§impl Hash for DocumentBinding
impl Hash for DocumentBinding
Source§impl PartialEq for DocumentBinding
impl PartialEq for DocumentBinding
impl StructuralPartialEq for DocumentBinding
Auto Trait Implementations§
impl Freeze for DocumentBinding
impl RefUnwindSafe for DocumentBinding
impl Send for DocumentBinding
impl Sync for DocumentBinding
impl Unpin for DocumentBinding
impl UnsafeUnpin for DocumentBinding
impl UnwindSafe for DocumentBinding
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