pub struct AvailableFrameworks {
pub frontend_frameworks: Option<Vec<AvailableFrameworksFrontendFrameworksInner>>,
pub backend_frameworks: Option<Vec<AvailableFrameworksBackendFrameworksInner>>,
}Fields§
§frontend_frameworks: Option<Vec<AvailableFrameworksFrontendFrameworksInner>>§backend_frameworks: Option<Vec<AvailableFrameworksBackendFrameworksInner>>Implementations§
Source§impl AvailableFrameworks
impl AvailableFrameworks
pub fn new() -> AvailableFrameworks
Trait Implementations§
Source§impl Clone for AvailableFrameworks
impl Clone for AvailableFrameworks
Source§fn clone(&self) -> AvailableFrameworks
fn clone(&self) -> AvailableFrameworks
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 AvailableFrameworks
impl Debug for AvailableFrameworks
Source§impl Default for AvailableFrameworks
impl Default for AvailableFrameworks
Source§fn default() -> AvailableFrameworks
fn default() -> AvailableFrameworks
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AvailableFrameworks
impl<'de> Deserialize<'de> for AvailableFrameworks
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AvailableFrameworks
impl PartialEq for AvailableFrameworks
Source§fn eq(&self, other: &AvailableFrameworks) -> bool
fn eq(&self, other: &AvailableFrameworks) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AvailableFrameworks
impl Serialize for AvailableFrameworks
impl StructuralPartialEq for AvailableFrameworks
Auto Trait Implementations§
impl Freeze for AvailableFrameworks
impl RefUnwindSafe for AvailableFrameworks
impl Send for AvailableFrameworks
impl Sync for AvailableFrameworks
impl Unpin for AvailableFrameworks
impl UnsafeUnpin for AvailableFrameworks
impl UnwindSafe for AvailableFrameworks
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