pub struct XmlEncodingType(/* private fields */);Expand description
See cef_xml_encoding_type_t for more documentation.
Implementations§
Source§impl XmlEncodingType
impl XmlEncodingType
Sourcepub const NONE: Self
pub const NONE: Self
See cef_xml_encoding_type_t::XML_ENCODING_NONE for more documentation.
Sourcepub const UTF8: Self
pub const UTF8: Self
See cef_xml_encoding_type_t::XML_ENCODING_UTF8 for more documentation.
Sourcepub const UTF16LE: Self
pub const UTF16LE: Self
See cef_xml_encoding_type_t::XML_ENCODING_UTF16LE for more documentation.
Sourcepub const UTF16BE: Self
pub const UTF16BE: Self
See cef_xml_encoding_type_t::XML_ENCODING_UTF16BE for more documentation.
Sourcepub const ASCII: Self
pub const ASCII: Self
See cef_xml_encoding_type_t::XML_ENCODING_ASCII for more documentation.
Sourcepub const NUM_VALUES: Self
pub const NUM_VALUES: Self
See cef_xml_encoding_type_t::XML_ENCODING_NUM_VALUES for more documentation.
Trait Implementations§
Source§impl AsMut<cef_xml_encoding_type_t> for XmlEncodingType
impl AsMut<cef_xml_encoding_type_t> for XmlEncodingType
Source§fn as_mut(&mut self) -> &mut cef_xml_encoding_type_t
fn as_mut(&mut self) -> &mut cef_xml_encoding_type_t
Converts this type into a mutable reference of the (usually inferred) input type.
Source§impl AsRef<cef_xml_encoding_type_t> for XmlEncodingType
impl AsRef<cef_xml_encoding_type_t> for XmlEncodingType
Source§fn as_ref(&self) -> &cef_xml_encoding_type_t
fn as_ref(&self) -> &cef_xml_encoding_type_t
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl Clone for XmlEncodingType
impl Clone for XmlEncodingType
Source§fn clone(&self) -> XmlEncodingType
fn clone(&self) -> XmlEncodingType
Returns a duplicate of the value. Read more
1.0.0 · 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 XmlEncodingType
impl Debug for XmlEncodingType
Source§impl Default for XmlEncodingType
impl Default for XmlEncodingType
Source§impl From<XmlEncodingType> for cef_xml_encoding_type_t
impl From<XmlEncodingType> for cef_xml_encoding_type_t
Source§fn from(value: XmlEncodingType) -> Self
fn from(value: XmlEncodingType) -> Self
Converts to this type from the input type.
Source§impl From<cef_xml_encoding_type_t> for XmlEncodingType
impl From<cef_xml_encoding_type_t> for XmlEncodingType
Source§fn from(value: cef_xml_encoding_type_t) -> Self
fn from(value: cef_xml_encoding_type_t) -> Self
Converts to this type from the input type.
Source§impl Hash for XmlEncodingType
impl Hash for XmlEncodingType
Source§impl PartialEq for XmlEncodingType
impl PartialEq for XmlEncodingType
impl Copy for XmlEncodingType
impl Eq for XmlEncodingType
impl StructuralPartialEq for XmlEncodingType
Auto Trait Implementations§
impl Freeze for XmlEncodingType
impl RefUnwindSafe for XmlEncodingType
impl Send for XmlEncodingType
impl Sync for XmlEncodingType
impl Unpin for XmlEncodingType
impl UnwindSafe for XmlEncodingType
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