pub struct Form<'f> {
pub q: &'f str,
pub from: &'f str,
pub to: &'f str,
pub appid: &'f str,
pub salt: &'f str,
pub sign: &'f str,
}Expand description
以表单方式提交的数据
Fields§
§q: &'f str§from: &'f str§to: &'f str§appid: &'f str§salt: &'f str§sign: &'f strImplementations§
Trait Implementations§
Auto Trait Implementations§
impl<'f> Freeze for Form<'f>
impl<'f> RefUnwindSafe for Form<'f>
impl<'f> Send for Form<'f>
impl<'f> Sync for Form<'f>
impl<'f> Unpin for Form<'f>
impl<'f> UnwindSafe for Form<'f>
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