Struct URLENC

Source
pub struct URLENC;
Expand description

URLEncoding interface.

Trait Implementations§

Source§

impl Format for URLENC

Source§

fn format(&self) -> String

Format getter.

Source§

fn content_type(&self) -> String

Content type.

Source§

fn header_import( &self, pid: &str, doc: &mut SDoc, _content_type: &str, bytes: &mut Bytes, as_name: &str, ) -> Result<(), SError>

Header import.

Source§

fn string_import( &self, pid: &str, doc: &mut SDoc, src: &str, as_name: &str, ) -> Result<(), SError>

String import.

Source§

fn file_import( &self, pid: &str, doc: &mut SDoc, _format: &str, full_path: &str, _extension: &str, as_name: &str, ) -> Result<(), SError>

File import.

Source§

fn export_string( &self, _pid: &str, doc: &SDoc, node: Option<&SNodeRef>, ) -> Result<String, SError>

Export string.

Source§

fn additional_formats(&self) -> Vec<String>

Additional extensions (formats) that this format is listed under.
Source§

fn export_min_string( &self, pid: &str, doc: &SDoc, node: Option<&SNodeRef>, ) -> Result<String, SError>

Export document into a string (minified string).
Source§

fn export_bytes( &self, pid: &str, doc: &SDoc, node: Option<&SNodeRef>, ) -> Result<Bytes, SError>

Export document into bytes.

Auto Trait Implementations§

§

impl Freeze for URLENC

§

impl RefUnwindSafe for URLENC

§

impl Send for URLENC

§

impl Sync for URLENC

§

impl Unpin for URLENC

§

impl UnwindSafe for URLENC

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V