Struct smpl_jwt::Jwt[][src]

pub struct Jwt<T> { /* fields omitted */ }

Implementations

impl<T> Jwt<T>[src]

pub fn body(&self) -> &T[src]

pub fn body_mut(&mut self) -> &mut T[src]

impl<T> Jwt<T> where
    T: Serialize
[src]

Jwt can be finalized to produce an encoded and signed string representation

Example


#[macro_use]
extern crate serde_derive;
extern crate serde;
extern crate smpl_jwt;

use serde::Serialize;
use smpl_jwt::{Jwt, RSAKey};

fn main() {
  #[derive(Serialize)]
  struct ExampleStruct {
    field: String
  }

  let rsa_key = match RSAKey::from_pem("random_rsa_for_testing") {
    Ok(x) => x,
    Err(e) => panic!("{}", e)
  };

  let jwt = Jwt::new(ExampleStruct{field: String::from("test")},
                    rsa_key,
                    None);

  println!("{}", jwt);
}

pub fn finalize(&self) -> Result<String, JwtErr>[src]

pub fn new(body: T, jwt_key: RSAKey, algo: Option<Algorithm>) -> Jwt<T>[src]

Trait Implementations

impl<T: Serialize> Display for Jwt<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Jwt<T> where
    T: RefUnwindSafe

impl<T> Send for Jwt<T> where
    T: Send

impl<T> Sync for Jwt<T> where
    T: Sync

impl<T> Unpin for Jwt<T> where
    T: Unpin

impl<T> UnwindSafe for Jwt<T> where
    T: UnwindSafe

Blanket Implementations

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

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

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

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

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

impl<T> ToString for T where
    T: Display + ?Sized
[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.