pub struct ValidationHelp { /* private fields */ }Expand description
Help text for a validation.
Implementations§
Source§impl ValidationHelp
impl ValidationHelp
Sourcepub fn set_display(&mut self, display: bool)
pub fn set_display(&mut self, display: bool)
Show the help text.
Trait Implementations§
Source§impl Clone for ValidationHelp
impl Clone for ValidationHelp
Source§fn clone(&self) -> ValidationHelp
fn clone(&self) -> ValidationHelp
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 ValidationHelp
impl Debug for ValidationHelp
Source§impl Default for ValidationHelp
impl Default for ValidationHelp
Source§impl GetSize for ValidationHelp
impl GetSize for ValidationHelp
Source§fn get_heap_size(&self) -> usize
fn get_heap_size(&self) -> usize
Determines how many bytes this object occupies inside the heap. Read more
Source§fn get_heap_size_with_tracker<TRACKER: GetSizeTracker>(
&self,
tracker: TRACKER,
) -> (usize, TRACKER)
fn get_heap_size_with_tracker<TRACKER: GetSizeTracker>( &self, tracker: TRACKER, ) -> (usize, TRACKER)
Determines how many bytes this object occupies inside the heap while using a
tracker. Read moreSource§fn get_stack_size() -> usize
fn get_stack_size() -> usize
Determines how may bytes this object occupies inside the stack. Read more
Source§fn get_size_with_tracker<T>(&self, tracker: T) -> (usize, T)where
T: GetSizeTracker,
fn get_size_with_tracker<T>(&self, tracker: T) -> (usize, T)where
T: GetSizeTracker,
Determines the total size of the object while using a
tracker. Read moreAuto Trait Implementations§
impl Freeze for ValidationHelp
impl RefUnwindSafe for ValidationHelp
impl Send for ValidationHelp
impl Sync for ValidationHelp
impl Unpin for ValidationHelp
impl UnwindSafe for ValidationHelp
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