pub enum SourcePackageLayout {
Sources,
Specifications,
Tests,
Scripts,
Examples,
Manifest,
DocTemplates,
}
Variants
Sources
Specifications
Tests
Scripts
Examples
Manifest
DocTemplates
Implementations
sourceimpl SourcePackageLayout
impl SourcePackageLayout
sourcepub fn path(&self) -> &Path
pub fn path(&self) -> &Path
A Move source package is laid out on-disk as a_move_package ├── Move.toml (required) ├── sources (required) ├── examples (optional, dev mode) ├── scripts (optional) ├── specifications (optional) ├── doc_templates (optional) └── tests (optional, test mode)
pub fn try_find_root(starting_path: &Path) -> Result<PathBuf>
pub fn location_str(&self) -> &'static str
pub fn is_optional(&self) -> bool
Trait Implementations
sourceimpl Clone for SourcePackageLayout
impl Clone for SourcePackageLayout
sourcefn clone(&self) -> SourcePackageLayout
fn clone(&self) -> SourcePackageLayout
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for SourcePackageLayout
impl Debug for SourcePackageLayout
impl Eq for SourcePackageLayout
impl StructuralEq for SourcePackageLayout
impl StructuralPartialEq for SourcePackageLayout
Auto Trait Implementations
impl RefUnwindSafe for SourcePackageLayout
impl Send for SourcePackageLayout
impl Sync for SourcePackageLayout
impl Unpin for SourcePackageLayout
impl UnwindSafe for SourcePackageLayout
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to key
and return true
if they are equal.
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more