pub struct FlipperPath(/* private fields */);Expand description
A path on the Flipper device.
FlipperPath maintains certain invariants:
- Paths are valid UTF-8
- Paths are always absolute (start with
/) - Paths do not end in a
/
Implementations§
Source§impl FlipperPath
impl FlipperPath
Trait Implementations§
Source§impl Add<&str> for FlipperPath
impl Add<&str> for FlipperPath
Source§impl AsRef<str> for FlipperPath
impl AsRef<str> for FlipperPath
Source§impl Clone for FlipperPath
impl Clone for FlipperPath
Source§fn clone(&self) -> FlipperPath
fn clone(&self) -> FlipperPath
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FlipperPath
impl Debug for FlipperPath
Source§impl Default for FlipperPath
impl Default for FlipperPath
Source§impl Display for FlipperPath
impl Display for FlipperPath
Source§impl From<&str> for FlipperPath
impl From<&str> for FlipperPath
Source§impl From<String> for FlipperPath
impl From<String> for FlipperPath
Source§impl PartialEq for FlipperPath
impl PartialEq for FlipperPath
impl Eq for FlipperPath
impl StructuralPartialEq for FlipperPath
Auto Trait Implementations§
impl Freeze for FlipperPath
impl RefUnwindSafe for FlipperPath
impl Send for FlipperPath
impl Sync for FlipperPath
impl Unpin for FlipperPath
impl UnwindSafe for FlipperPath
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