[][src]Struct letterboxd::Pronoun

pub struct Pronoun {
    pub id: String,
    pub label: String,
    pub subject_pronoun: String,
    pub object_pronoun: String,
    pub possessive_adjective: String,
    pub possessive_pronoun: String,
    pub reflexive: String,
}

Fields

id: String

The LID for this pronoun set.

label: String

A label to describe this pronoun set.

subject_pronoun: String

The pronoun to use when the member is the subject. "She went to the movies."

object_pronoun: String

The pronoun to use when the member is the object. "I went with her to the cinema."

possessive_adjective: String

The adjective to use when describing a specified thing or things belonging to or associated with a member previously mentioned. "He bought his tickets."

possessive_pronoun: String

The pronoun to use when referring to a specified thing or things belonging to or associated with a member previously mentioned. "That popcorn was hers."

reflexive: String

The pronoun to use to refer back to the member. "He saw himself as a great director."

Trait Implementations

impl Clone for Pronoun[src]

impl Debug for Pronoun[src]

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

Auto Trait Implementations

impl RefUnwindSafe for Pronoun

impl Send for Pronoun

impl Sync for Pronoun

impl Unpin for Pronoun

impl UnwindSafe for Pronoun

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,