pub struct UpdateCompanyRequest<'a> {
pub wants_timestamp_timers: Option<bool>,
pub weekly_capacity: Option<i64>,
/* private fields */
}Expand description
Create this with the associated client method.
That method takes required values as arguments. Set optional values using builder methods on this struct.
Fields§
§wants_timestamp_timers: Option<bool>§weekly_capacity: Option<i64>Implementations§
Source§impl<'a> UpdateCompanyRequest<'a>
impl<'a> UpdateCompanyRequest<'a>
pub async fn send(self) -> Result<Company>
pub fn wants_timestamp_timers(self, wants_timestamp_timers: bool) -> Self
pub fn weekly_capacity(self, weekly_capacity: i64) -> Self
Auto Trait Implementations§
impl<'a> Freeze for UpdateCompanyRequest<'a>
impl<'a> !RefUnwindSafe for UpdateCompanyRequest<'a>
impl<'a> Send for UpdateCompanyRequest<'a>
impl<'a> Sync for UpdateCompanyRequest<'a>
impl<'a> Unpin for UpdateCompanyRequest<'a>
impl<'a> !UnwindSafe for UpdateCompanyRequest<'a>
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