pub struct ClipUpdateBuilder<C> { /* private fields */ }Expand description
Builder for the update_clip method.
Implementations§
Source§impl<C> ClipUpdateBuilder<C>
impl<C> ClipUpdateBuilder<C>
Sourcepub fn new(client: C, clip: Clip) -> Self
Available on crate feature 12-57-0 only.
pub fn new(client: C, clip: Clip) -> Self
12-57-0 only.Creates a builder with the client and the clip you are going to update.
Sourcepub fn as_request(&self) -> &Request
Available on crate feature 12-57-0 only.
pub fn as_request(&self) -> &Request
12-57-0 only.Gets the request object for reuse.
Sourcepub fn name(&mut self, name: impl Into<String>) -> &mut Self
Available on crate feature 12-57-0 only.
pub fn name(&mut self, name: impl Into<String>) -> &mut Self
12-57-0 only.Sets the name of the clip.
Sourcepub fn public(&mut self, public: bool) -> &mut Self
Available on crate feature 12-57-0 only.
pub fn public(&mut self, public: bool) -> &mut Self
12-57-0 only.Sets whether the clip is public or not.
Sourcepub fn description(&mut self, description: impl Into<String>) -> &mut Self
Available on crate feature 12-57-0 only.
pub fn description(&mut self, description: impl Into<String>) -> &mut Self
12-57-0 only.Sets the description of the clip.
Auto Trait Implementations§
impl<C> Freeze for ClipUpdateBuilder<C>where
C: Freeze,
impl<C> RefUnwindSafe for ClipUpdateBuilder<C>where
C: RefUnwindSafe,
impl<C> Send for ClipUpdateBuilder<C>where
C: Send,
impl<C> Sync for ClipUpdateBuilder<C>where
C: Sync,
impl<C> Unpin for ClipUpdateBuilder<C>where
C: Unpin,
impl<C> UnwindSafe for ClipUpdateBuilder<C>where
C: UnwindSafe,
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