pub struct ActionBuilder { /* private fields */ }
Expand description
Builder for Action
.
Implementations§
Source§impl ActionBuilder
impl ActionBuilder
Sourcepub fn date<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
pub fn date<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
The date and time when the action occurred.
pub fn links<VALUE: Into<Vec<Link>>>(&mut self, value: VALUE) -> &mut Self
pub fn props<VALUE: Into<Vec<Property>>>(&mut self, value: VALUE) -> &mut Self
pub fn remarks<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
pub fn responsible_parties<VALUE: Into<Vec<ResponsibleParty>>>( &mut self, value: VALUE, ) -> &mut Self
Sourcepub fn system<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
pub fn system<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
Specifies the action type system used.
Sourcepub fn action_type<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
pub fn action_type<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
The type of action documented by the assembly, such as an approval.
Trait Implementations§
Source§impl Clone for ActionBuilder
impl Clone for ActionBuilder
Source§fn clone(&self) -> ActionBuilder
fn clone(&self) -> ActionBuilder
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 moreAuto Trait Implementations§
impl Freeze for ActionBuilder
impl RefUnwindSafe for ActionBuilder
impl Send for ActionBuilder
impl Sync for ActionBuilder
impl Unpin for ActionBuilder
impl UnwindSafe for ActionBuilder
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