pub struct StdDescriptor {
pub leak_valid_flag: bool,
}Expand description
STD Descriptor.
Fields§
§leak_valid_flag: boolLeak valid flag — 1 means the leak method is applicable.
Trait Implementations§
Source§impl Clone for StdDescriptor
impl Clone for StdDescriptor
Source§fn clone(&self) -> StdDescriptor
fn clone(&self) -> StdDescriptor
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 moreSource§impl Debug for StdDescriptor
impl Debug for StdDescriptor
Source§impl<'a> DescriptorDef<'a> for StdDescriptor
impl<'a> DescriptorDef<'a> for StdDescriptor
impl Eq for StdDescriptor
Source§impl<'a> From<StdDescriptor> for AnyDescriptor<'a>
impl<'a> From<StdDescriptor> for AnyDescriptor<'a>
Source§fn from(d: StdDescriptor) -> Self
fn from(d: StdDescriptor) -> Self
Converts to this type from the input type.
Source§impl<'a> Parse<'a> for StdDescriptor
impl<'a> Parse<'a> for StdDescriptor
Source§impl PartialEq for StdDescriptor
impl PartialEq for StdDescriptor
Source§fn eq(&self, other: &StdDescriptor) -> bool
fn eq(&self, other: &StdDescriptor) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for StdDescriptor
impl Serialize for StdDescriptor
Source§impl Serialize for StdDescriptor
impl Serialize for StdDescriptor
Source§type Error = Error
type Error = Error
The error type this implementer returns (usually the same as the
corresponding
Parse impl, but need not be).Source§fn serialized_len(&self) -> usize
fn serialized_len(&self) -> usize
Number of bytes
serialize_into will write.impl StructuralPartialEq for StdDescriptor
Source§impl<'a> Yokeable<'a> for StdDescriptorwhere
Self: Sized,
impl<'a> Yokeable<'a> for StdDescriptorwhere
Self: Sized,
Source§type Output = StdDescriptor
type Output = StdDescriptor
This type MUST be
Self with the 'static replaced with 'a, i.e. Self<'a>Source§fn transform_owned(self) -> Self::Output
fn transform_owned(self) -> Self::Output
Auto Trait Implementations§
impl Freeze for StdDescriptor
impl RefUnwindSafe for StdDescriptor
impl Send for StdDescriptor
impl Sync for StdDescriptor
impl Unpin for StdDescriptor
impl UnsafeUnpin for StdDescriptor
impl UnwindSafe for StdDescriptor
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