pub enum TechnologyKind {
ProgrammingLanguage,
Browser,
OperatingSystem,
Database,
DevTool,
Platform,
Framework,
Runtime,
Editor,
PackageManager,
Community,
Unknown,
}Expand description
Broad technology category for a Fellow Friend fixture.
Variants§
ProgrammingLanguage
Programming language ecosystem.
Browser
Browser ecosystem.
OperatingSystem
Operating system ecosystem.
Database
Database ecosystem.
DevTool
Developer tool ecosystem.
Platform
Platform ecosystem.
Framework
Framework ecosystem.
Runtime
Runtime ecosystem.
Editor
Editor ecosystem.
PackageManager
Package manager ecosystem.
Community
Community ecosystem.
Unknown
Unknown or intentionally unspecified technology category.
Trait Implementations§
Source§impl Clone for TechnologyKind
impl Clone for TechnologyKind
Source§fn clone(&self) -> TechnologyKind
fn clone(&self) -> TechnologyKind
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 TechnologyKind
impl Debug for TechnologyKind
Source§impl<'de> Deserialize<'de> for TechnologyKind
impl<'de> Deserialize<'de> for TechnologyKind
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<TechnologyKind, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<TechnologyKind, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for TechnologyKind
impl Display for TechnologyKind
Source§impl Hash for TechnologyKind
impl Hash for TechnologyKind
Source§impl Ord for TechnologyKind
impl Ord for TechnologyKind
Source§fn cmp(&self, other: &TechnologyKind) -> Ordering
fn cmp(&self, other: &TechnologyKind) -> 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 TechnologyKind
impl PartialEq for TechnologyKind
Source§fn eq(&self, other: &TechnologyKind) -> bool
fn eq(&self, other: &TechnologyKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for TechnologyKind
impl PartialOrd for TechnologyKind
Source§impl Serialize for TechnologyKind
impl Serialize for TechnologyKind
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Copy for TechnologyKind
impl Eq for TechnologyKind
impl StructuralPartialEq for TechnologyKind
Auto Trait Implementations§
impl Freeze for TechnologyKind
impl RefUnwindSafe for TechnologyKind
impl Send for TechnologyKind
impl Sync for TechnologyKind
impl Unpin for TechnologyKind
impl UnsafeUnpin for TechnologyKind
impl UnwindSafe for TechnologyKind
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