#[repr(i32)]pub enum AVEscapeMode {
AV_ESCAPE_MODE_AUTO = 0,
AV_ESCAPE_MODE_BACKSLASH = 1,
AV_ESCAPE_MODE_QUOTE = 2,
AV_ESCAPE_MODE_XML = 3,
}Variants§
AV_ESCAPE_MODE_AUTO = 0
< Use auto-selected escaping mode.
AV_ESCAPE_MODE_BACKSLASH = 1
< Use backslash escaping.
AV_ESCAPE_MODE_QUOTE = 2
< Use single-quote escaping.
AV_ESCAPE_MODE_XML = 3
< Use XML non-markup character data escaping.
trait 实现§
源代码§impl Clone for AVEscapeMode
impl Clone for AVEscapeMode
源代码§fn clone(&self) -> AVEscapeMode
fn clone(&self) -> AVEscapeMode
Returns a duplicate of the value. 阅读更多
1.0.0 · 源代码§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
从
source 执行拷贝赋值。 阅读更多源代码§impl Debug for AVEscapeMode
impl Debug for AVEscapeMode
源代码§impl Hash for AVEscapeMode
impl Hash for AVEscapeMode
源代码§impl PartialEq for AVEscapeMode
impl PartialEq for AVEscapeMode
impl Copy for AVEscapeMode
impl Eq for AVEscapeMode
impl StructuralPartialEq for AVEscapeMode
自动 trait 实现§
impl Freeze for AVEscapeMode
impl RefUnwindSafe for AVEscapeMode
impl Send for AVEscapeMode
impl Sync for AVEscapeMode
impl Unpin for AVEscapeMode
impl UnsafeUnpin for AVEscapeMode
impl UnwindSafe for AVEscapeMode
blanket 实现§
源代码§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
源代码§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
从拥有的值可变地借用。 阅读更多