#[repr(u64)]pub enum NSDataBase64DecodingOptions {
None = 0,
IgnoreUnknownCharacters = 1,
}
Expand description
Options to modify the decoding algorithm used to decode Base64 encoded data.
Variants§
None = 0
IgnoreUnknownCharacters = 1
Modify the decoding algorithm so that it ignores unknown non-Base-64 bytes, including line ending characters.
Trait Implementations§
Source§impl Clone for NSDataBase64DecodingOptions
impl Clone for NSDataBase64DecodingOptions
Source§fn clone(&self) -> NSDataBase64DecodingOptions
fn clone(&self) -> NSDataBase64DecodingOptions
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for NSDataBase64DecodingOptions
impl Debug for NSDataBase64DecodingOptions
impl Copy for NSDataBase64DecodingOptions
Auto Trait Implementations§
impl Freeze for NSDataBase64DecodingOptions
impl RefUnwindSafe for NSDataBase64DecodingOptions
impl Send for NSDataBase64DecodingOptions
impl Sync for NSDataBase64DecodingOptions
impl Unpin for NSDataBase64DecodingOptions
impl UnwindSafe for NSDataBase64DecodingOptions
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