Struct aligned_media::FilePath [] [src]

pub struct FilePath { /* fields omitted */ }

A portable, relative path in Unix notation. These are highly restricted to help prevent directory traversal attacks. Specifically, they:

  • Must not begin with "/".
  • Must not contain path segments with the values "", "." or "..".
  • Must contain valid UTF-8 data.

These paths will be interpreted as relative to the "file/" sudirectory located in the same directory as the metadata.json file.

Methods

impl FilePath
[src]

[src]

Construct a relative path from a string, being sure to validate it.

Trait Implementations

impl Clone for FilePath
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for FilePath
[src]

[src]

Formats the value using the given formatter.

impl Eq for FilePath
[src]

impl Hash for FilePath
[src]

[src]

Feeds this value into the given [Hasher]. Read more

1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl PartialEq for FilePath
[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 FilePath
[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 Ord for FilePath
[src]

[src]

This method returns an Ordering between self and other. Read more

1.22.0
[src]

Compares and returns the maximum of two values. Read more

1.22.0
[src]

Compares and returns the minimum of two values. Read more

impl<'de> Deserialize<'de> for FilePath
[src]

[src]

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for FilePath
[src]

[src]

Serialize this value into the given Serde serializer. Read more