[][src]Struct itsdangerous::seperator::Seperator

pub struct Seperator(_);

A seperator character that can be used in crate::SignerBuilder::with_seperator.

This is used to join the various parts of the signed payload.

Basic Usage

use itsdangerous::{default_builder, Seperator};

// Creates a seperator using a given character.
let seperator = Seperator::new('!').expect("Invalid seperator :(");
// Use that seperator in the builder.
let signer = default_builder("hello")
    .with_seperator(seperator)
    .build();

Methods

impl Seperator[src]

pub fn new(seperator: char) -> Result<Self, InvalidSeperator>[src]

Creates a new seperator, checking to make sure it is valid.

A valid seperator is a character that is not in the base-64 url-safe alphabet.

pub fn split<'a>(
    &self,
    value: &'a str
) -> Result<(&'a str, &'a str), SeperatorNotFound>
[src]

Trait Implementations

impl Default for Seperator[src]

impl Clone for Seperator[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl PartialEq<Seperator> for Seperator[src]

impl Eq for Seperator[src]

impl Copy for Seperator[src]

impl Debug for Seperator[src]

Auto Trait Implementations

impl Send for Seperator

impl Sync for Seperator

Blanket Implementations

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T[src]

type Output = T

Should always be Self