pub struct RapidConfig {
pub app_type: String,
pub features: Option<Features>,
pub server: Option<ServerConfig>,
pub remix: Option<ReactFrameworkConfig>,
pub nextjs: Option<ReactFrameworkConfig>,
}Expand description
The RapidConfig file schemea
§Example:
Fields§
§app_type: String§features: Option<Features>§server: Option<ServerConfig>§remix: Option<ReactFrameworkConfig>§nextjs: Option<ReactFrameworkConfig>Trait Implementations§
Source§impl Clone for RapidConfig
impl Clone for RapidConfig
Source§fn clone(&self) -> RapidConfig
fn clone(&self) -> RapidConfig
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 moreSource§impl<'de> Deserialize<'de> for RapidConfig
impl<'de> Deserialize<'de> for RapidConfig
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
Auto Trait Implementations§
impl Freeze for RapidConfig
impl RefUnwindSafe for RapidConfig
impl Send for RapidConfig
impl Sync for RapidConfig
impl Unpin for RapidConfig
impl UnwindSafe for RapidConfig
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