pub struct DirPath { /* private fields */ }
Expand description
Path to represent a directory.
§Typescript type
You should use the following type because it might change in the future, and the inner value should not be used directly.
type DirPath = any
If the version of this crate is 2.x.x at least, it is guaranteed to be in the following format.
type DirPath_ver2XX = {
topTreeUri: string,
relativeTerms: string[]
}
Trait Implementations§
Source§impl<'de> Deserialize<'de> for DirPath
impl<'de> Deserialize<'de> for DirPath
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 DirPath
impl RefUnwindSafe for DirPath
impl Send for DirPath
impl Sync for DirPath
impl Unpin for DirPath
impl UnwindSafe for DirPath
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