[][src]Struct orthanc::Ancestor

pub struct Ancestor {
    pub id: String,
    pub path: String,
    pub entity: Entity,
}

Ancestor of an entity

Returned as response body in DELETE responses to indicate the remaining ancestor of the deleted entity.

For example, an ancestor of a deleted Instance is a Series, an ancestor of a deleted Study is a Patient. Patient does not have an ancestor.

Fields

id: Stringpath: Stringentity: Entity

Trait Implementations

impl Debug for Ancestor[src]

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

impl Eq for Ancestor[src]

impl PartialEq<Ancestor> for Ancestor[src]

impl Serialize for Ancestor[src]

impl StructuralEq for Ancestor[src]

impl StructuralPartialEq for Ancestor[src]

Auto Trait Implementations

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: for<'de> Deserialize<'de>, 
[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, 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<T> WithSubscriber for T[src]