pub struct Experiments {
pub filestore_enabled: Option<bool>,
pub url_store_enabled: Option<bool>,
pub graphsync_enabled: Option<bool>,
pub libp2p_stream_mounting: Option<bool>,
pub p2p_http_proxy: Option<bool>,
pub optimistic_provide: Option<bool>,
pub optimistic_provide_jobs_pool_size: Option<i32>,
}Expand description
Experimental features
Fields§
§filestore_enabled: Option<bool>§url_store_enabled: Option<bool>§graphsync_enabled: Option<bool>§libp2p_stream_mounting: Option<bool>§p2p_http_proxy: Option<bool>§optimistic_provide: Option<bool>§optimistic_provide_jobs_pool_size: Option<i32>Trait Implementations§
Source§impl Clone for Experiments
impl Clone for Experiments
Source§fn clone(&self) -> Experiments
fn clone(&self) -> Experiments
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 Experiments
impl Debug for Experiments
Source§impl Default for Experiments
impl Default for Experiments
Source§fn default() -> Experiments
fn default() -> Experiments
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for Experiments
impl<'de> Deserialize<'de> for Experiments
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 Experiments
impl RefUnwindSafe for Experiments
impl Send for Experiments
impl Sync for Experiments
impl Unpin for Experiments
impl UnwindSafe for Experiments
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