pub enum JqueryVersionFamily {
Jquery1,
Jquery2,
Jquery3,
Jquery4,
}Expand description
jQuery version-family labels.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for JqueryVersionFamily
impl Clone for JqueryVersionFamily
Source§fn clone(&self) -> JqueryVersionFamily
fn clone(&self) -> JqueryVersionFamily
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 JqueryVersionFamily
impl Debug for JqueryVersionFamily
Source§impl Display for JqueryVersionFamily
impl Display for JqueryVersionFamily
Source§impl FromStr for JqueryVersionFamily
impl FromStr for JqueryVersionFamily
Source§type Err = JqueryTextError
type Err = JqueryTextError
The associated error which can be returned from parsing.
Source§fn from_str(
input: &str,
) -> Result<JqueryVersionFamily, <JqueryVersionFamily as FromStr>::Err>
fn from_str( input: &str, ) -> Result<JqueryVersionFamily, <JqueryVersionFamily as FromStr>::Err>
Parses a string
s to return a value of this type. Read moreSource§impl Hash for JqueryVersionFamily
impl Hash for JqueryVersionFamily
Source§impl Ord for JqueryVersionFamily
impl Ord for JqueryVersionFamily
Source§fn cmp(&self, other: &JqueryVersionFamily) -> Ordering
fn cmp(&self, other: &JqueryVersionFamily) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for JqueryVersionFamily
impl PartialEq for JqueryVersionFamily
Source§fn eq(&self, other: &JqueryVersionFamily) -> bool
fn eq(&self, other: &JqueryVersionFamily) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for JqueryVersionFamily
impl PartialOrd for JqueryVersionFamily
impl Copy for JqueryVersionFamily
impl Eq for JqueryVersionFamily
impl StructuralPartialEq for JqueryVersionFamily
Auto Trait Implementations§
impl Freeze for JqueryVersionFamily
impl RefUnwindSafe for JqueryVersionFamily
impl Send for JqueryVersionFamily
impl Sync for JqueryVersionFamily
impl Unpin for JqueryVersionFamily
impl UnsafeUnpin for JqueryVersionFamily
impl UnwindSafe for JqueryVersionFamily
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