Struct some_random_api::others::OthersEndpoint
source · pub struct OthersEndpoint(_);
Implementations§
source§impl OthersEndpoint
impl OthersEndpoint
sourcepub async fn decode_base64<T: ToString>(&self, text: T) -> Result<DecodedText>
pub async fn decode_base64<T: ToString>(&self, text: T) -> Result<DecodedText>
Base64 decoding
sourcepub async fn encode_base64<T: ToString>(&self, text: T) -> Result<Base64>
pub async fn encode_base64<T: ToString>(&self, text: T) -> Result<Base64>
Base64 encoding
pub async fn decode_binary<T: ToString>(&self, text: T) -> Result<DecodedText>
pub async fn encode_binary<T: ToString>(&self, text: T) -> Result<Binary>
pub async fn bot_token<T: ToString>( &self, bot_id: Option<T> ) -> Result<BotToken>
sourcepub async fn dictionary<T: ToString>(&self, word: T) -> Result<Dictionary>
pub async fn dictionary<T: ToString>(&self, word: T) -> Result<Dictionary>
Lookup words
Auto Trait Implementations§
impl !RefUnwindSafe for OthersEndpoint
impl Send for OthersEndpoint
impl Sync for OthersEndpoint
impl Unpin for OthersEndpoint
impl !UnwindSafe for OthersEndpoint
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