Struct plexo_sdk::resources::projects::operations::CreateProjectInputBuilder
source · pub struct CreateProjectInputBuilder { /* private fields */ }Expand description
Builder for CreateProjectInput.
Implementations§
source§impl CreateProjectInputBuilder
impl CreateProjectInputBuilder
pub fn name(self, value: String) -> Self
pub fn owner_id(self, value: Uuid) -> Self
pub fn status(self, value: ProjectStatus) -> Self
pub fn visibility(self, value: ProjectVisibility) -> Self
pub fn prefix(self, value: String) -> Self
pub fn description(self, value: String) -> Self
pub fn lead_id(self, value: Uuid) -> Self
pub fn start_date(self, value: DateTime<Utc>) -> Self
pub fn due_date(self, value: DateTime<Utc>) -> Self
pub fn members(self, value: Vec<Uuid>) -> Self
pub fn teams(self, value: Vec<Uuid>) -> Self
sourcepub fn build(self) -> Result<CreateProjectInput, CreateProjectInputBuilderError>
pub fn build(self) -> Result<CreateProjectInput, CreateProjectInputBuilderError>
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for CreateProjectInputBuilder
impl Send for CreateProjectInputBuilder
impl Sync for CreateProjectInputBuilder
impl Unpin for CreateProjectInputBuilder
impl UnwindSafe for CreateProjectInputBuilder
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