Struct PmsiRsaQuery
pub struct PmsiRsaQuery {Show 20 fields
pub nom: String,
pub abrege: String,
pub thematique: String,
pub agemin: Option<i32>,
pub agemax: Option<i32>,
pub diags: Option<Vec<String>>,
pub diags_exclus: Option<Vec<String>>,
pub positions_diags: Option<Vec<i32>>,
pub actes: Option<Vec<String>>,
pub agejrmin: Option<i32>,
pub agejrmax: Option<i32>,
pub poidsmin: Option<i32>,
pub poidsmax: Option<i32>,
pub dureemin: Option<i32>,
pub dureemax: Option<i32>,
pub ghm: Option<Vec<String>>,
pub ghm_exclus: Option<Vec<String>>,
pub date_saisie: Option<String>,
pub auteur: Option<String>,
pub timestamp: Option<i64>,
}
Fields§
§nom: String
§abrege: String
§thematique: String
§agemin: Option<i32>
§agemax: Option<i32>
§diags: Option<Vec<String>>
§diags_exclus: Option<Vec<String>>
§positions_diags: Option<Vec<i32>>
§actes: Option<Vec<String>>
§agejrmin: Option<i32>
§agejrmax: Option<i32>
§poidsmin: Option<i32>
§poidsmax: Option<i32>
§dureemin: Option<i32>
§dureemax: Option<i32>
§ghm: Option<Vec<String>>
§ghm_exclus: Option<Vec<String>>
§date_saisie: Option<String>
§auteur: Option<String>
§timestamp: Option<i64>
Trait Implementations§
§impl Clone for PmsiRsaQuery
impl Clone for PmsiRsaQuery
§fn clone(&self) -> PmsiRsaQuery
fn clone(&self) -> PmsiRsaQuery
Returns a copy 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 more§impl Debug for PmsiRsaQuery
impl Debug for PmsiRsaQuery
§impl<'de> Deserialize<'de> for PmsiRsaQuery
impl<'de> Deserialize<'de> for PmsiRsaQuery
§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 GrepPmsi for PmsiRsaQuery
impl GrepPmsi for PmsiRsaQuery
fn get_inline_grep(&self) -> String
§impl Serialize for PmsiRsaQuery
impl Serialize for PmsiRsaQuery
Auto Trait Implementations§
impl Freeze for PmsiRsaQuery
impl RefUnwindSafe for PmsiRsaQuery
impl Send for PmsiRsaQuery
impl Sync for PmsiRsaQuery
impl Unpin for PmsiRsaQuery
impl UnwindSafe for PmsiRsaQuery
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more