pub enum SolveMethod {
Get,
Post {
body: PostBody,
},
}Variants§
Trait Implementations§
Source§impl Clone for SolveMethod
impl Clone for SolveMethod
Source§fn clone(&self) -> SolveMethod
fn clone(&self) -> SolveMethod
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 moreAuto Trait Implementations§
impl Freeze for SolveMethod
impl RefUnwindSafe for SolveMethod
impl Send for SolveMethod
impl Sync for SolveMethod
impl Unpin for SolveMethod
impl UnsafeUnpin for SolveMethod
impl UnwindSafe for SolveMethod
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