pub struct TriggerBuilder { /* private fields */ }Expand description
Builder for Trigger object.
Implementations§
Source§impl TriggerBuilder
impl TriggerBuilder
Sourcepub fn get_customizable_input_parameters(&self) -> Option<&[InputParameter]>
pub fn get_customizable_input_parameters(&self) -> Option<&[InputParameter]>
get customizable_input_parameters field value.
Sourcepub fn set_customizable_input_parameters(
self,
value: Option<impl Into<Vec<InputParameter>>>,
) -> Self
pub fn set_customizable_input_parameters( self, value: Option<impl Into<Vec<InputParameter>>>, ) -> Self
set customizable_input_parameters field value.
Sourcepub fn customizable_input_parameters(
self,
value: impl Into<Vec<InputParameter>>,
) -> Self
pub fn customizable_input_parameters( self, value: impl Into<Vec<InputParameter>>, ) -> Self
set customizable_input_parameters field value.
Sourcepub fn customizable_input_parameter(
self,
value: impl Into<InputParameter>,
) -> Self
pub fn customizable_input_parameter( self, value: impl Into<InputParameter>, ) -> Self
push list element to customizable_input_parameters field.
Trait Implementations§
Source§impl Debug for TriggerBuilder
impl Debug for TriggerBuilder
Auto Trait Implementations§
impl Freeze for TriggerBuilder
impl RefUnwindSafe for TriggerBuilder
impl Send for TriggerBuilder
impl Sync for TriggerBuilder
impl Unpin for TriggerBuilder
impl UnsafeUnpin for TriggerBuilder
impl UnwindSafe for TriggerBuilder
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