pub struct DevServerIR {
pub port: u16,
pub host: String,
pub hot_reload: bool,
pub fast_refresh: bool,
pub proxy_config: Vec<ProxyRule>,
pub middleware: Vec<String>,
}
Expand description
開発サーバーIR
Fields§
§port: u16
§host: String
§hot_reload: bool
§fast_refresh: bool
§proxy_config: Vec<ProxyRule>
§middleware: Vec<String>
Trait Implementations§
Source§impl Clone for DevServerIR
impl Clone for DevServerIR
Source§fn clone(&self) -> DevServerIR
fn clone(&self) -> DevServerIR
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 Debug for DevServerIR
impl Debug for DevServerIR
Source§impl<'de> Deserialize<'de> for DevServerIR
impl<'de> Deserialize<'de> for DevServerIR
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 DevServerIR
impl PartialEq for DevServerIR
Source§impl Serialize for DevServerIR
impl Serialize for DevServerIR
impl StructuralPartialEq for DevServerIR
Auto Trait Implementations§
impl Freeze for DevServerIR
impl RefUnwindSafe for DevServerIR
impl Send for DevServerIR
impl Sync for DevServerIR
impl Unpin for DevServerIR
impl UnwindSafe for DevServerIR
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