pub struct Base64DecodingStatus(/* private fields */);Expand description
C++ enum: QByteArray::Base64DecodingStatus.
Implementations§
Source§impl Base64DecodingStatus
impl Base64DecodingStatus
Sourcepub const Ok: Base64DecodingStatus
pub const Ok: Base64DecodingStatus
C++ enum variant: Ok = 0
Sourcepub const IllegalInputLength: Base64DecodingStatus
pub const IllegalInputLength: Base64DecodingStatus
C++ enum variant: IllegalInputLength = 1
Sourcepub const IllegalCharacter: Base64DecodingStatus
pub const IllegalCharacter: Base64DecodingStatus
C++ enum variant: IllegalCharacter = 2
Sourcepub const IllegalPadding: Base64DecodingStatus
pub const IllegalPadding: Base64DecodingStatus
C++ enum variant: IllegalPadding = 3
Trait Implementations§
Source§impl Clone for Base64DecodingStatus
impl Clone for Base64DecodingStatus
Source§fn clone(&self) -> Base64DecodingStatus
fn clone(&self) -> Base64DecodingStatus
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for Base64DecodingStatus
impl Debug for Base64DecodingStatus
Source§impl From<Base64DecodingStatus> for c_int
impl From<Base64DecodingStatus> for c_int
Source§fn from(value: Base64DecodingStatus) -> Self
fn from(value: Base64DecodingStatus) -> Self
Converts to this type from the input type.
Source§impl From<i32> for Base64DecodingStatus
impl From<i32> for Base64DecodingStatus
Source§impl PartialEq for Base64DecodingStatus
impl PartialEq for Base64DecodingStatus
Source§fn eq(&self, other: &Base64DecodingStatus) -> bool
fn eq(&self, other: &Base64DecodingStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for Base64DecodingStatus
impl Eq for Base64DecodingStatus
impl StructuralPartialEq for Base64DecodingStatus
Auto Trait Implementations§
impl Freeze for Base64DecodingStatus
impl RefUnwindSafe for Base64DecodingStatus
impl Send for Base64DecodingStatus
impl Sync for Base64DecodingStatus
impl Unpin for Base64DecodingStatus
impl UnsafeUnpin for Base64DecodingStatus
impl UnwindSafe for Base64DecodingStatus
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