pub struct IrcId(/* private fields */);Expand description
A person’s nickname on an IRC network.
Implementations§
Source§impl IrcId
impl IrcId
pub fn get<'a>(&self, client: &'a dyn Client) -> Result<IrcIdFull, Error>
pub fn get_wadl<'a>(&self, client: &'a dyn Client) -> Result<Resource, Error>
pub fn put<'a>( &self, client: &'a dyn Client, representation: &IrcIdFull, ) -> Result<(), Error>
pub fn patch<'a>( &self, client: &'a dyn Client, representation: &IrcIdDiff, ) -> Result<(), Error>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for IrcId
impl RefUnwindSafe for IrcId
impl Send for IrcId
impl Sync for IrcId
impl Unpin for IrcId
impl UnwindSafe for IrcId
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