[][src]Struct misskey_util::builder::DriveFolderUpdateBuilder

pub struct DriveFolderUpdateBuilder<C> { /* fields omitted */ }

Builder for the update_folder method.

Implementations

impl<C> DriveFolderUpdateBuilder<C>[src]

pub fn new(client: C, folder: impl EntityRef<DriveFolder>) -> Self[src]

Creates a builder with the client and the folder you are going to update.

pub fn as_request(&self) -> &Request[src]

Gets the request object for reuse.

pub fn set_parent(&mut self, parent: impl EntityRef<DriveFolder>) -> &mut Self[src]

Sets the parent folder of the folder.

pub fn delete_parent(&mut self) -> &mut Self[src]

Deletes the parent folder of the folder.

pub fn name(&mut self, name: impl Into<String>) -> &mut Self[src]

Sets the name of the folder.

impl<C: Client> DriveFolderUpdateBuilder<C>[src]

pub async fn update<'_>(&'_ self) -> Result<DriveFolder, Error<C::Error>>[src]

Updates the folder.

Auto Trait Implementations

impl<C> RefUnwindSafe for DriveFolderUpdateBuilder<C> where
    C: RefUnwindSafe
[src]

impl<C> Send for DriveFolderUpdateBuilder<C> where
    C: Send
[src]

impl<C> Sync for DriveFolderUpdateBuilder<C> where
    C: Sync
[src]

impl<C> Unpin for DriveFolderUpdateBuilder<C> where
    C: Unpin
[src]

impl<C> UnwindSafe for DriveFolderUpdateBuilder<C> where
    C: UnwindSafe
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.