pub struct Name { /* private fields */ }
Expand description
Holds a validated device name. A device name consists of a path
and a base name where each portion of the path is separated with a
colon. Each segment of the path or the name is composed of alpha-
numeric and the dash characters. The dash cannot be the first or
last character, however.
More formally:
ⓘ
DEVICE-NAME = PATH NAME
PATH = (SEGMENT ':')+
NAME = SEGMENT
SEGMENT = [0-9a-zA-Z] ( [0-9a-zA-Z-]* [0-9a-zA-Z] )?
All device names will have a path and a name. Although
superficially similar, device names are not like file system
names. Specifically, there’s no concept of moving up or down
paths. The paths provide a naming convention to organize devices.
The client API supports looking up device names using patterns, so
a logical path hierarchy can make those searches more productive.
Creates an instance of Name
, if the provided string
describes a well-formed device name.
Returns the path of the device name without the trailing ‘:’.
Returns the base name of the device.
Performs copy-assignment from
source
.
Read more
Formats the value using the given formatter.
Read more
Formats the value using the given formatter.
Read more
The associated error which can be returned from parsing.
Parses a string
s
to return a value of this type.
Read more
This method tests for
self
and
other
values to be equal, and is used
by
==
.
Read more
This method tests for
!=
. The default implementation is almost always
sufficient, and should not be overridden without very good reason.
Read more
Immutably borrows from an owned value.
Read more
Mutably borrows from an owned value.
Read more
Returns the argument unchanged.
Calls U::from(self)
.
That is, this conversion is whatever the implementation of
From<T> for U
chooses to do.
The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning.
Read more
Uses borrowed data to replace owned data, usually by cloning.
Read more
Converts the given value to a
String
.
Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.