pub struct BuildMeta {
pub output: String,
pub rust_version: String,
pub folk_ext_path: Option<String>,
pub folk_api_path: Option<String>,
}Fields§
§output: String§rust_version: String§folk_ext_path: Option<String>Path to folk-ext crate (for local builds). If not set, uses crates.io.
folk_api_path: Option<String>Path to folk-api crate (for local builds with unpublished changes).
Trait Implementations§
Source§impl<'de> Deserialize<'de> for BuildMeta
impl<'de> Deserialize<'de> for BuildMeta
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 BuildMeta
impl RefUnwindSafe for BuildMeta
impl Send for BuildMeta
impl Sync for BuildMeta
impl Unpin for BuildMeta
impl UnsafeUnpin for BuildMeta
impl UnwindSafe for BuildMeta
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