Struct wmproxy::FileServer

source ·
pub struct FileServer {
Show 15 fields pub root: Option<String>, pub prefix: String, pub default_mimetype: String, pub ext_mimetype: HashMap<String, String>, pub cache_time: Option<ConfigDuration>, pub robots: Option<String>, pub path404: Option<String>, pub hide: Vec<String>, pub index: Vec<String>, pub status: u16, pub precompressed: Vec<String>, pub disable_compress: bool, pub browse: bool, pub cors: bool, pub comm: CommonConfig,
}
Expand description

代理类, 一个代理类启动一种类型的代理

Fields§

§root: Option<String>§prefix: String§default_mimetype: String§ext_mimetype: HashMap<String, String>§cache_time: Option<ConfigDuration>§robots: Option<String>§path404: Option<String>§hide: Vec<String>§index: Vec<String>§status: u16§precompressed: Vec<String>§disable_compress: bool§browse: bool§cors: bool

通过“Access-Control-Allow-Origin“标头启用 CORS

§comm: CommonConfig

Implementations§

source§

impl FileServer

source

pub fn new(root: String, prefix: String) -> Self

source

pub fn fix_default(&mut self)

source

pub fn set_common(&mut self, common: CommonConfig)

source

pub fn set_prefix(&mut self, prefix: String)

source

pub fn set_browse(&mut self, browse: bool)

source

pub fn set_disable_compress(&mut self, disable: bool)

source

pub fn is_hide_path(&self, path: &Path) -> bool

source

pub fn get_mimetype(&self, extension: &String) -> String

source

pub fn calc_etag(data: &Metadata) -> String

source

pub fn to_rfc2822(utc: DateTime<Utc>) -> String

source

pub fn calc_lastmodifed(val: &str) -> u64

source

pub async fn build_response_by_file( &self, req: &mut RecvRequest, real_path: PathBuf ) -> ProtResult<Option<RecvResponse>>

source

pub async fn try_cache( &self, req: &mut RecvRequest, metadata: &Metadata ) -> Option<RecvResponse>

source

pub fn calc_bytes_range(val: &str, len: u64) -> Option<(u64, u64)>

source

pub async fn after_file_response( &self, req: &mut RecvRequest, res: &mut RecvResponse, metadata: Option<&Metadata> ) -> ProtResult<()>

source

pub async fn deal_request( &self, req: &mut RecvRequest ) -> ProtResult<Response<Body>>

Trait Implementations§

source§

impl Clone for FileServer

source§

fn clone(&self) -> FileServer

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 Debug for FileServer

source§

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

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

impl<'de> Deserialize<'de> for FileServer

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl PartialEq for FileServer

source§

fn eq(&self, other: &FileServer) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Serialize for FileServer

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl StructuralPartialEq for FileServer

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
§

impl<T> CloneAny for T
where T: Any + Clone + Send + Sync,

§

fn clone_any(&self) -> Box<dyn CloneAny>

§

fn clone_any_send(&self) -> Box<dyn CloneAny + Send>

§

fn clone_any_sync(&self) -> Box<dyn CloneAny + Sync>

§

fn clone_any_send_sync(&self) -> Box<dyn CloneAny + Sync + Send>

source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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

§

type Output = T

Should always be Self
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.
§

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

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

impl<T> DebugAny for T
where T: Any + Debug,

source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

§

impl<T> UnsafeAny for T
where T: Any,