pub struct ActionsBuilder { /* private fields */ }Expand description
Builder for Actions object.
Implementations§
Source§impl ActionsBuilder
impl ActionsBuilder
Sourcepub fn get_elements(&self) -> Option<&[ActionsElement]>
pub fn get_elements(&self) -> Option<&[ActionsElement]>
get elements field value.
Sourcepub fn set_elements<Iter, Inner>(self, value: Option<Iter>) -> Self
pub fn set_elements<Iter, Inner>(self, value: Option<Iter>) -> Self
set elements field value.
Sourcepub fn element(self, value: impl Into<ActionsElement>) -> Self
pub fn element(self, value: impl Into<ActionsElement>) -> Self
push list element to elements field.
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.
Trait Implementations§
Source§impl Debug for ActionsBuilder
impl Debug for ActionsBuilder
Auto Trait Implementations§
impl Freeze for ActionsBuilder
impl RefUnwindSafe for ActionsBuilder
impl Send for ActionsBuilder
impl Sync for ActionsBuilder
impl Unpin for ActionsBuilder
impl UnsafeUnpin for ActionsBuilder
impl UnwindSafe for ActionsBuilder
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