pub struct ClauseRequest {
pub created_at: Option<ExprDate>,
pub file_extension: Option<ExprString>,
pub host: Option<ExprString>,
pub is_tls: Option<ExprBool>,
pub length: Option<ExprInt>,
pub method: Option<ExprString>,
pub path: Option<ExprString>,
pub port: Option<ExprInt>,
pub query: Option<ExprString>,
pub raw: Option<ExprString>,
}Fields§
§created_at: Option<ExprDate>§file_extension: Option<ExprString>§host: Option<ExprString>§is_tls: Option<ExprBool>§length: Option<ExprInt>§method: Option<ExprString>§path: Option<ExprString>§port: Option<ExprInt>§query: Option<ExprString>§raw: Option<ExprString>Trait Implementations§
Source§impl Clone for ClauseRequest
impl Clone for ClauseRequest
Source§fn clone(&self) -> ClauseRequest
fn clone(&self) -> ClauseRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ClauseRequest
impl Debug for ClauseRequest
Source§impl Default for ClauseRequest
impl Default for ClauseRequest
Source§fn default() -> ClauseRequest
fn default() -> ClauseRequest
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ClauseRequest
impl RefUnwindSafe for ClauseRequest
impl Send for ClauseRequest
impl Sync for ClauseRequest
impl Unpin for ClauseRequest
impl UnwindSafe for ClauseRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more