pub struct Cookies {
pub name: RustIdent,
pub params: Vec<CookieParam>,
}Expand description
A generated per-operation cookie struct, extracted via a hand-written
axum::extract::FromRequestParts implementation backed by axum_extra’s
CookieJar.
Fields§
§name: RustIdentStruct name (<Op>Cookies), doubling as the extractor type and the
Api method’s cookies argument type.
params: Vec<CookieParam>Cookie fields, in declaration order.
Trait Implementations§
impl StructuralPartialEq for Cookies
Auto Trait Implementations§
impl Freeze for Cookies
impl RefUnwindSafe for Cookies
impl Send for Cookies
impl Sync for Cookies
impl Unpin for Cookies
impl UnsafeUnpin for Cookies
impl UnwindSafe for Cookies
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