Struct onedrive_api::ItemLocation [−][src]
pub struct ItemLocation<'a> { /* fields omitted */ }Reference to a DriveItem in a drive.
It does not contains the drive information.
See also
Implementations
impl<'a> ItemLocation<'a>[src]
impl<'a> ItemLocation<'a>[src]pub fn from_path(path: &'a str) -> Option<Self>[src]
A UNIX-like /-started absolute path to a file or directory in the drive.
Error
If path contains invalid characters for OneDrive API, it returns None.
Note
The trailing / is optional.
Special name on Windows like CON or NUL is tested to be permitted in API,
but may still cause errors on Windows or OneDrive Online.
These names will pass the check, but STRONGLY NOT recommended.
See also
pub fn from_id(item_id: &'a ItemId) -> Self[src]
Item id from other API.
pub fn root() -> Self[src]
The root directory item.
pub fn child_of_id(parent_id: &'a ItemId, child_name: &'a FileName) -> Self[src]
The child item in a directory.
Trait Implementations
impl<'a> Clone for ItemLocation<'a>[src]
impl<'a> Clone for ItemLocation<'a>[src]fn clone(&self) -> ItemLocation<'a>[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl<'a> Copy for ItemLocation<'a>[src]
impl<'a> Copy for ItemLocation<'a>[src]Auto Trait Implementations
impl<'a> RefUnwindSafe for ItemLocation<'a>
impl<'a> RefUnwindSafe for ItemLocation<'a>impl<'a> Send for ItemLocation<'a>
impl<'a> Send for ItemLocation<'a>impl<'a> Sync for ItemLocation<'a>
impl<'a> Sync for ItemLocation<'a>impl<'a> Unpin for ItemLocation<'a>
impl<'a> Unpin for ItemLocation<'a>impl<'a> UnwindSafe for ItemLocation<'a>
impl<'a> UnwindSafe for ItemLocation<'a>Blanket Implementations
impl<T> Instrument for T[src]
impl<T> Instrument for T[src]