pub struct InsertControls {
pub exclude_controls: Option<Vec<SelectControl>>,
pub include_all: Option<IncludeAll>,
pub include_controls: Option<Vec<SelectControl>>,
pub order: Option<Order>,
}
Expand description
Specifies which controls to use in the containing context.
Fields§
§exclude_controls: Option<Vec<SelectControl>>
§include_all: Option<IncludeAll>
§include_controls: Option<Vec<SelectControl>>
§order: Option<Order>
A designation of how a selection of controls in a profile is to be ordered.
Trait Implementations§
Source§impl AsMut<InsertControls> for InsertControls
impl AsMut<InsertControls> for InsertControls
Source§impl AsRef<InsertControls> for InsertControls
impl AsRef<InsertControls> for InsertControls
Source§impl Clone for InsertControls
impl Clone for InsertControls
Source§fn clone(&self) -> InsertControls
fn clone(&self) -> InsertControls
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 InsertControls
impl Debug for InsertControls
Source§impl<'de> Deserialize<'de> for InsertControls
impl<'de> Deserialize<'de> for InsertControls
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for InsertControls
impl Display for InsertControls
Source§impl From<&InsertControls> for InsertControls
impl From<&InsertControls> for InsertControls
Source§fn from(value: &InsertControls) -> Self
fn from(value: &InsertControls) -> Self
Converts to this type from the input type.
Source§impl PartialEq for InsertControls
impl PartialEq for InsertControls
Auto Trait Implementations§
impl Freeze for InsertControls
impl RefUnwindSafe for InsertControls
impl Send for InsertControls
impl Sync for InsertControls
impl Unpin for InsertControls
impl UnwindSafe for InsertControls
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