pub struct WebLinksManager { /* private fields */ }Expand description
Operations for the “web_links” API area.
Implementations§
Source§impl WebLinksManager
impl WebLinksManager
pub async fn create(&self, body: CreateWebLinkRequest) -> Result<WebLink, Error>
pub async fn get( &self, web_link_id: String, opts: Option<WebLinksGetOptions>, ) -> Result<WebLink, Error>
pub async fn update( &self, web_link_id: String, body: UpdateWebLinkRequest, ) -> Result<WebLink, Error>
pub async fn delete(&self, web_link_id: String) -> Result<(), Error>
Auto Trait Implementations§
impl !RefUnwindSafe for WebLinksManager
impl !UnwindSafe for WebLinksManager
impl Freeze for WebLinksManager
impl Send for WebLinksManager
impl Sync for WebLinksManager
impl Unpin for WebLinksManager
impl UnsafeUnpin for WebLinksManager
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