pub struct FrameworkAdapter {
pub api_version: Option<String>,
pub kind: Option<String>,
pub metadata: Option<HashMap<String, Value>>,
pub match: Option<HashMap<String, Value>>,
pub capabilities: Option<Option<Value>>,
pub entrypoints: Option<HashMap<String, Value>>,
pub build: Option<HashMap<String, Value>>,
}Fields§
§api_version: Option<String>§kind: Option<String>§metadata: Option<HashMap<String, Value>>§match: Option<HashMap<String, Value>>§capabilities: Option<Option<Value>>§entrypoints: Option<HashMap<String, Value>>§build: Option<HashMap<String, Value>>Implementations§
Source§impl FrameworkAdapter
impl FrameworkAdapter
pub fn new() -> FrameworkAdapter
Trait Implementations§
Source§impl Clone for FrameworkAdapter
impl Clone for FrameworkAdapter
Source§fn clone(&self) -> FrameworkAdapter
fn clone(&self) -> FrameworkAdapter
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 FrameworkAdapter
impl Debug for FrameworkAdapter
Source§impl Default for FrameworkAdapter
impl Default for FrameworkAdapter
Source§fn default() -> FrameworkAdapter
fn default() -> FrameworkAdapter
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FrameworkAdapter
impl<'de> Deserialize<'de> for FrameworkAdapter
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 FrameworkAdapter
impl PartialEq for FrameworkAdapter
Source§fn eq(&self, other: &FrameworkAdapter) -> bool
fn eq(&self, other: &FrameworkAdapter) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for FrameworkAdapter
impl Serialize for FrameworkAdapter
impl StructuralPartialEq for FrameworkAdapter
Auto Trait Implementations§
impl Freeze for FrameworkAdapter
impl RefUnwindSafe for FrameworkAdapter
impl Send for FrameworkAdapter
impl Sync for FrameworkAdapter
impl Unpin for FrameworkAdapter
impl UnsafeUnpin for FrameworkAdapter
impl UnwindSafe for FrameworkAdapter
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