pub struct InputBuilder { /* private fields */ }Expand description
Builder for Input object.
Implementations§
Source§impl InputBuilder
impl InputBuilder
Sourcepub fn get_element(&self) -> Option<&InputElement>
pub fn get_element(&self) -> Option<&InputElement>
get element field value.
Sourcepub fn set_element(self, value: Option<impl Into<InputElement>>) -> Self
pub fn set_element(self, value: Option<impl Into<InputElement>>) -> Self
set element field value.
Sourcepub fn element(self, value: impl Into<InputElement>) -> Self
pub fn element(self, value: impl Into<InputElement>) -> Self
set element field value.
Sourcepub fn get_dispatch_action(&self) -> Option<bool>
pub fn get_dispatch_action(&self) -> Option<bool>
get dispatch_action field value.
Sourcepub fn set_dispatch_action(self, value: Option<impl Into<bool>>) -> Self
pub fn set_dispatch_action(self, value: Option<impl Into<bool>>) -> Self
set dispatch_action field value.
Sourcepub fn dispatch_action(self, value: impl Into<bool>) -> Self
pub fn dispatch_action(self, value: impl Into<bool>) -> Self
set dispatch_action field value.
Sourcepub fn get_block_id(&self) -> Option<&String>
pub fn get_block_id(&self) -> Option<&String>
get block_id field value.
Sourcepub fn set_block_id(self, value: Option<impl Into<String>>) -> Self
pub fn set_block_id(self, value: Option<impl Into<String>>) -> Self
set block_id field value.
Sourcepub fn get_optional(&self) -> Option<bool>
pub fn get_optional(&self) -> Option<bool>
get optional field value.
Sourcepub fn set_optional(self, value: Option<impl Into<bool>>) -> Self
pub fn set_optional(self, value: Option<impl Into<bool>>) -> Self
set optional field value.
Trait Implementations§
Source§impl Debug for InputBuilder
impl Debug for InputBuilder
Auto Trait Implementations§
impl Freeze for InputBuilder
impl RefUnwindSafe for InputBuilder
impl Send for InputBuilder
impl Sync for InputBuilder
impl Unpin for InputBuilder
impl UnsafeUnpin for InputBuilder
impl UnwindSafe for InputBuilder
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