Struct Extensions

Source
pub struct Extensions { /* private fields */ }
Expand description

请求和响应的扩展组件。

请求和响应可以使用扩展来存储额外的数据。

Implementations§

Source§

impl Extensions

Source

pub fn new() -> Self

创建一个空的扩展。

Source

pub fn insert<T: 'static>(&mut self, val: T) -> Option<T>

向扩展中插入一个类型。

如果这种类型已经存在,将替换并返回先前插入的值。

§例子
use puzz_http::Extensions;

let mut ext = Extensions::new();

assert!(ext.insert(5i32).is_none());
assert!(ext.insert(4u8).is_none());
assert_eq!(ext.insert(9i32), Some(5i32));
Source

pub fn get<T: 'static>(&self) -> Option<&T>

获取先前插入扩展的类型的引用。

§例子
use puzz_http::Extensions;

let mut ext = Extensions::new();
assert!(ext.get::<i32>().is_none());

ext.insert(5i32);
assert_eq!(ext.get::<i32>(), Some(&5i32));
Source

pub fn get_mut<T: 'static>(&mut self) -> Option<&mut T>

获取先前插入扩展的类型的可变引用。

§例子
use puzz_http::Extensions;

let mut ext = Extensions::new();

ext.insert(String::from("Hello"));
ext.get_mut::<String>().unwrap().push_str(" World");

assert_eq!(ext.get::<String>().unwrap(), "Hello World");
Source

pub fn remove<T: 'static>(&mut self) -> Option<T>

从扩展中删除一个类型。

如果这种类型存在,将删除并返回此类型。

§例子
use puzz_http::Extensions;

let mut ext = Extensions::new();

ext.insert(5i32);

assert_eq!(ext.remove::<i32>(), Some(5i32));
assert!(ext.get::<i32>().is_none());
Source

pub fn clear(&mut self)

清空扩展中的所有类型。

§例子
use puzz_http::Extensions;

let mut ext = Extensions::new();

ext.insert(5i32);
ext.clear();

assert!(ext.get::<i32>().is_none());
Source

pub fn is_empty(&self) -> bool

检查扩展是否为空。

§例子
use puzz_http::Extensions;

let mut ext = Extensions::new();
assert!(ext.is_empty());

ext.insert(5i32);
assert!(!ext.is_empty());
Source

pub fn len(&self) -> usize

获取扩展中已插入类型的数量。

§例子
use puzz_http::Extensions;

let mut ext = Extensions::new();
assert_eq!(ext.len(), 0);

ext.insert(5i32);
assert_eq!(ext.len(), 1);

Trait Implementations§

Source§

impl Debug for Extensions

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for Extensions

Source§

fn default() -> Extensions

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