pub struct HideAction {
pub targets: Vec<String>,
pub hide: bool,
}Expand description
Hide action - show or hide form fields and annotations
Fields§
§targets: Vec<String>Target annotations/fields to hide
hide: boolWhether to hide (true) or show (false)
Implementations§
Trait Implementations§
Source§impl Clone for HideAction
impl Clone for HideAction
Source§fn clone(&self) -> HideAction
fn clone(&self) -> HideAction
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 moreAuto Trait Implementations§
impl Freeze for HideAction
impl RefUnwindSafe for HideAction
impl Send for HideAction
impl Sync for HideAction
impl Unpin for HideAction
impl UnsafeUnpin for HideAction
impl UnwindSafe for HideAction
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