pub struct MoveScuJobQueryAny {
pub patient_id: CompactString,
pub accession_number: Option<CompactString>,
pub study_instance_uid: Option<String>,
pub series_instance_uid: Option<String>,
}Expand description
Same data as MoveScuJobQuery but as a struct with Option
fields instead of being an enum.
Fields§
§patient_id: CompactString§accession_number: Option<CompactString>§study_instance_uid: Option<String>§series_instance_uid: Option<String>Trait Implementations§
Source§impl Clone for MoveScuJobQueryAny
impl Clone for MoveScuJobQueryAny
Source§fn clone(&self) -> MoveScuJobQueryAny
fn clone(&self) -> MoveScuJobQueryAny
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for MoveScuJobQueryAny
impl Debug for MoveScuJobQueryAny
Source§impl<'de> Deserialize<'de> for MoveScuJobQueryAny
impl<'de> Deserialize<'de> for MoveScuJobQueryAny
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
Source§impl From<MoveScuJobQuery> for MoveScuJobQueryAny
impl From<MoveScuJobQuery> for MoveScuJobQueryAny
Source§fn from(value: MoveScuJobQuery) -> Self
fn from(value: MoveScuJobQuery) -> Self
Converts to this type from the input type.
Source§impl PartialEq for MoveScuJobQueryAny
impl PartialEq for MoveScuJobQueryAny
Source§impl Serialize for MoveScuJobQueryAny
impl Serialize for MoveScuJobQueryAny
impl StructuralPartialEq for MoveScuJobQueryAny
Auto Trait Implementations§
impl Freeze for MoveScuJobQueryAny
impl RefUnwindSafe for MoveScuJobQueryAny
impl Send for MoveScuJobQueryAny
impl Sync for MoveScuJobQueryAny
impl Unpin for MoveScuJobQueryAny
impl UnwindSafe for MoveScuJobQueryAny
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