Struct serde_lvm::ProjectName [] [src]

pub struct ProjectName(_);

Name of the project that data was for

Methods

impl ProjectName
[src]

[src]

Map a function over the wrapped value, consuming it in the process.

[src]

Map a function over the wrapped value without consuming it.

Methods from Deref<Target = String>

1.7.0
[src]

Extracts a string slice containing the entire string.

Examples

Basic usage:

let s = String::from("foo");

assert_eq!("foo", s.as_str());

1.0.0
[src]

Returns this String's capacity, in bytes.

Examples

Basic usage:

let s = String::with_capacity(10);

assert!(s.capacity() >= 10);

Important traits for &'a mut [u8]
1.0.0
[src]

Returns a byte slice of this String's contents.

The inverse of this method is from_utf8.

Examples

Basic usage:

let s = String::from("hello");

assert_eq!(&[104, 101, 108, 108, 111], s.as_bytes());

1.0.0
[src]

Returns the length of this String, in bytes.

Examples

Basic usage:

let a = String::from("foo");

assert_eq!(a.len(), 3);

1.0.0
[src]

Returns true if this String has a length of zero.

Returns false otherwise.

Examples

Basic usage:

let mut v = String::new();
assert!(v.is_empty());

v.push('a');
assert!(!v.is_empty());

Trait Implementations

impl Clone for ProjectName
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for ProjectName
[src]

[src]

Formats the value using the given formatter. Read more

impl Display for ProjectName
[src]

[src]

Formats the value using the given formatter. Read more

impl Eq for ProjectName
[src]

impl From<String> for ProjectName
[src]

[src]

Performs the conversion.

impl From<ProjectName> for String
[src]

[src]

Performs the conversion.

impl PartialEq for ProjectName
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl PartialOrd for ProjectName
[src]

[src]

This method returns an ordering between self and other values if one exists. Read more

[src]

This method tests less than (for self and other) and is used by the < operator. Read more

[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Deref for ProjectName
[src]

The resulting type after dereferencing.

[src]

Dereferences the value.

impl Borrow<String> for ProjectName
[src]

[src]

Immutably borrows from an owned value. Read more

impl AsRef<String> for ProjectName
[src]

[src]

Performs the conversion.

Auto Trait Implementations

impl Send for ProjectName

impl Sync for ProjectName