Enum gapi_grpc::google::streetview::publish::v1::photo::TransferStatus[][src]

#[repr(i32)]pub enum TransferStatus {
    Unknown,
    NeverTransferred,
    Pending,
    Completed,
    Rejected,
    Expired,
    Cancelled,
    ReceivedViaTransfer,
}

Status of rights transfer.

Variants

Unknown

The status of this transfer is unspecified.

NeverTransferred

This photo has never been in a transfer.

Pending

This photo transfer has been initiated, but the receiver has not yet responded.

Completed

The photo transfer has been completed, and this photo has been transferred to the recipient.

Rejected

The recipient rejected this photo transfer.

Expired

The photo transfer expired before the recipient took any action.

Cancelled

The sender cancelled this photo transfer.

ReceivedViaTransfer

The recipient owns this photo due to a rights transfer.

Implementations

impl TransferStatus[src]

pub fn is_valid(value: i32) -> bool[src]

Returns true if value is a variant of TransferStatus.

pub fn from_i32(value: i32) -> Option<TransferStatus>[src]

Converts an i32 to a TransferStatus, or None if value is not a valid variant.

Trait Implementations

impl Clone for TransferStatus[src]

impl Copy for TransferStatus[src]

impl Debug for TransferStatus[src]

impl Default for TransferStatus[src]

impl Eq for TransferStatus[src]

impl From<TransferStatus> for i32[src]

impl Hash for TransferStatus[src]

impl Ord for TransferStatus[src]

impl PartialEq<TransferStatus> for TransferStatus[src]

impl PartialOrd<TransferStatus> for TransferStatus[src]

impl StructuralEq for TransferStatus[src]

impl StructuralPartialEq for TransferStatus[src]

Auto Trait Implementations

impl RefUnwindSafe for TransferStatus

impl Send for TransferStatus

impl Sync for TransferStatus

impl Unpin for TransferStatus

impl UnwindSafe for TransferStatus

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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> IntoRequest<T> for 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>, 
[src]

impl<T> WithSubscriber for T[src]