pub struct BundleEntryBackboneElement {
pub id: Option<String>,
pub extension: Option<Vec<Extension>>,
pub modifier_extension: Option<Vec<Extension>>,
pub link: Option<Vec<BundleLinkBackboneElement>>,
pub full_url: Option<UriDt>,
pub resource: Option<AnyResource>,
pub search: Option<BundleEntrySearchBackboneElement>,
pub request: Option<BundleEntryRequestBackboneElement>,
pub response: Option<BundleEntryResponseBackboneElement>,
}
Fields§
§id: Option<String>
Unique id for inter-element referencing
extension: Option<Vec<Extension>>
Additional content defined by implementations
modifier_extension: Option<Vec<Extension>>
Extensions that cannot be ignored even if unrecognized
link: Option<Vec<BundleLinkBackboneElement>>
Links related to this entry
full_url: Option<UriDt>
URI for resource (e.g. the absolute URL server address, URI for UUID/OID, etc.)
resource: Option<AnyResource>
A resource in the bundle
search: Option<BundleEntrySearchBackboneElement>
Search related information
request: Option<BundleEntryRequestBackboneElement>
Additional execution information (transaction/batch/history)
response: Option<BundleEntryResponseBackboneElement>
Results of execution (transaction/batch/history)
Trait Implementations§
Source§impl Clone for BundleEntryBackboneElement
impl Clone for BundleEntryBackboneElement
Source§fn clone(&self) -> BundleEntryBackboneElement
fn clone(&self) -> BundleEntryBackboneElement
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 BundleEntryBackboneElement
impl Debug for BundleEntryBackboneElement
Source§impl Default for BundleEntryBackboneElement
impl Default for BundleEntryBackboneElement
Source§fn default() -> BundleEntryBackboneElement
fn default() -> BundleEntryBackboneElement
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BundleEntryBackboneElement
impl<'de> Deserialize<'de> for BundleEntryBackboneElement
fn deserialize<De>(deserializer: De) -> Result<Self>where
De: Deserializer<'de>,
Auto Trait Implementations§
impl Freeze for BundleEntryBackboneElement
impl RefUnwindSafe for BundleEntryBackboneElement
impl Send for BundleEntryBackboneElement
impl Sync for BundleEntryBackboneElement
impl Unpin for BundleEntryBackboneElement
impl UnwindSafe for BundleEntryBackboneElement
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