pub struct StoreSection {
pub path: Option<String>,
}Expand description
[store] table of lex.toml.
Fields§
§path: Option<String>Store root, relative to the manifest’s directory (an absolute
path is used as is). Defaults to .lex/store when absent.
Trait Implementations§
Source§impl Debug for StoreSection
impl Debug for StoreSection
Source§impl Default for StoreSection
impl Default for StoreSection
Source§fn default() -> StoreSection
fn default() -> StoreSection
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StoreSection
impl<'de> Deserialize<'de> for StoreSection
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 StoreSection
impl RefUnwindSafe for StoreSection
impl Send for StoreSection
impl Sync for StoreSection
impl Unpin for StoreSection
impl UnsafeUnpin for StoreSection
impl UnwindSafe for StoreSection
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