#[repr(u32)]pub enum GUriError {
G_URI_ERROR_FAILED = 0,
G_URI_ERROR_BAD_SCHEME = 1,
G_URI_ERROR_BAD_USER = 2,
G_URI_ERROR_BAD_PASSWORD = 3,
G_URI_ERROR_BAD_AUTH_PARAMS = 4,
G_URI_ERROR_BAD_HOST = 5,
G_URI_ERROR_BAD_PORT = 6,
G_URI_ERROR_BAD_PATH = 7,
G_URI_ERROR_BAD_QUERY = 8,
G_URI_ERROR_BAD_FRAGMENT = 9,
}Variants§
G_URI_ERROR_FAILED = 0
G_URI_ERROR_BAD_SCHEME = 1
G_URI_ERROR_BAD_USER = 2
G_URI_ERROR_BAD_PASSWORD = 3
G_URI_ERROR_BAD_AUTH_PARAMS = 4
G_URI_ERROR_BAD_HOST = 5
G_URI_ERROR_BAD_PORT = 6
G_URI_ERROR_BAD_PATH = 7
G_URI_ERROR_BAD_QUERY = 8
G_URI_ERROR_BAD_FRAGMENT = 9
Trait Implementations§
impl Copy for GUriError
impl Eq for GUriError
impl StructuralPartialEq for GUriError
Auto Trait Implementations§
impl Freeze for GUriError
impl RefUnwindSafe for GUriError
impl Send for GUriError
impl Sync for GUriError
impl Unpin for GUriError
impl UnwindSafe for GUriError
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