Struct sieve::Compiler

source ·
pub struct Compiler { /* private fields */ }

Implementations§

source§

impl Compiler

source

pub fn compile(&self, script: &[u8]) -> Result<Sieve, CompileError>

source§

impl Compiler

source

pub const VERSION: u32 = 2u32

source

pub fn new() -> Self

source

pub fn set_max_header_size(&mut self, size: usize)

source

pub fn with_max_header_size(self, size: usize) -> Self

source

pub fn set_max_includes(&mut self, size: usize)

source

pub fn with_max_includes(self, size: usize) -> Self

source

pub fn set_max_nested_blocks(&mut self, size: usize)

source

pub fn with_max_nested_blocks(self, size: usize) -> Self

source

pub fn set_max_nested_tests(&mut self, size: usize)

source

pub fn with_max_nested_tests(self, size: usize) -> Self

source

pub fn set_max_nested_foreverypart(&mut self, size: usize)

source

pub fn with_max_nested_foreverypart(self, size: usize) -> Self

source

pub fn set_max_script_size(&mut self, size: usize)

source

pub fn with_max_script_size(self, size: usize) -> Self

source

pub fn set_max_string_size(&mut self, size: usize)

source

pub fn with_max_string_size(self, size: usize) -> Self

source

pub fn set_max_variable_name_size(&mut self, size: usize)

source

pub fn with_max_variable_name_size(self, size: usize) -> Self

source

pub fn set_max_match_variables(&mut self, size: usize)

source

pub fn with_max_match_variables(self, size: usize) -> Self

source

pub fn set_max_local_variables(&mut self, size: usize)

source

pub fn with_max_local_variables(self, size: usize) -> Self

source

pub fn register_functions(self, fnc_map: &mut FunctionMap) -> Self

source

pub fn with_no_capability_check(self, value: bool) -> Self

source

pub fn set_no_capability_check(&mut self, value: bool)

Trait Implementations§

source§

impl Clone for Compiler

source§

fn clone(&self) -> Compiler

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Default for Compiler

source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

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> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

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

§

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>,

§

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.