pub enum TestScriptRequestMethodCode {
Delete,
Get,
Head,
Options,
Patch,
Post,
Put,
}
Expand description
TestScriptRequestMethodCode. The allowable request method or HTTP operation codes.
FHIR version: 5.0.0.
Variants§
Delete
delete
DELETE. HTTP DELETE operation.
Get
get
GET. HTTP GET operation.
Head
head
HEAD. HTTP HEAD operation.
Options
options
OPTIONS. HTTP OPTIONS operation.
Patch
patch
PATCH. HTTP PATCH operation.
Post
post
POST. HTTP POST operation.
Put
put
PUT. HTTP PUT operation.
Trait Implementations§
Source§impl AsRef<str> for TestScriptRequestMethodCode
impl AsRef<str> for TestScriptRequestMethodCode
Source§impl Clone for TestScriptRequestMethodCode
impl Clone for TestScriptRequestMethodCode
Source§fn clone(&self) -> TestScriptRequestMethodCode
fn clone(&self) -> TestScriptRequestMethodCode
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 TestScriptRequestMethodCode
impl Debug for TestScriptRequestMethodCode
Source§impl<'de> Deserialize<'de> for TestScriptRequestMethodCode
impl<'de> Deserialize<'de> for TestScriptRequestMethodCode
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<TestScriptRequestMethodCode> for CodeableConcept
impl From<TestScriptRequestMethodCode> for CodeableConcept
Source§fn from(code: TestScriptRequestMethodCode) -> Self
fn from(code: TestScriptRequestMethodCode) -> Self
Converts to this type from the input type.
Source§impl From<TestScriptRequestMethodCode> for Coding
impl From<TestScriptRequestMethodCode> for Coding
Source§fn from(code: TestScriptRequestMethodCode) -> Self
fn from(code: TestScriptRequestMethodCode) -> Self
Converts to this type from the input type.
Source§impl Hash for TestScriptRequestMethodCode
impl Hash for TestScriptRequestMethodCode
impl Copy for TestScriptRequestMethodCode
impl Eq for TestScriptRequestMethodCode
impl StructuralPartialEq for TestScriptRequestMethodCode
Auto Trait Implementations§
impl Freeze for TestScriptRequestMethodCode
impl RefUnwindSafe for TestScriptRequestMethodCode
impl Send for TestScriptRequestMethodCode
impl Sync for TestScriptRequestMethodCode
impl Unpin for TestScriptRequestMethodCode
impl UnwindSafe for TestScriptRequestMethodCode
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