pub struct Series<T> {
pub expected_number_of_instances: Option<usize>,
pub id: SeriesId,
pub instances: Vec<InstanceId>,
pub is_stable: bool,
pub labels: Vec<String>,
pub last_update: String,
pub parent_study: StudyId,
pub status: SeriesStatus,
pub main_dicom_tags: Value,
pub requested_tags: T,
}Expand description
Orthanc series detail response from
/series/{id}.
Fields§
§expected_number_of_instances: Option<usize>§id: SeriesId§instances: Vec<InstanceId>§is_stable: bool§labels: Vec<String>§last_update: String§parent_study: StudyId§status: SeriesStatusMain DICOM tags.
Ref: https://orthanc.uclouvain.be/book/faq/main-dicom-tags.html
Note: the schema of “MainDicomTags” is customizable by the Orthanc configuration, so it cannot have a static type.
Trait Implementations§
Source§impl<'de, T> Deserialize<'de> for Series<T>where
T: Deserialize<'de>,
impl<'de, T> Deserialize<'de> for Series<T>where
T: Deserialize<'de>,
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl<T> DicomResource<T> for Series<T>
Auto Trait Implementations§
impl<T> Freeze for Series<T>where
T: Freeze,
impl<T> RefUnwindSafe for Series<T>where
T: RefUnwindSafe,
impl<T> Send for Series<T>where
T: Send,
impl<T> Sync for Series<T>where
T: Sync,
impl<T> Unpin for Series<T>where
T: Unpin,
impl<T> UnwindSafe for Series<T>where
T: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more