pub struct FeedbackContextEndpoint {
pub method: Option<String>,
pub path: Option<String>,
pub url: Option<String>,
}Expand description
FeedbackContextEndpoint
JSON schema
{
"type": "object",
"properties": {
"method": {
"type": "string"
},
"path": {
"type": "string"
},
"url": {
"type": "string"
}
},
"additionalProperties": false
}Fields§
§method: Option<String>§path: Option<String>§url: Option<String>Implementations§
Source§impl FeedbackContextEndpoint
impl FeedbackContextEndpoint
pub fn builder() -> FeedbackContextEndpoint
Trait Implementations§
Source§impl Clone for FeedbackContextEndpoint
impl Clone for FeedbackContextEndpoint
Source§fn clone(&self) -> FeedbackContextEndpoint
fn clone(&self) -> FeedbackContextEndpoint
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 FeedbackContextEndpoint
impl Debug for FeedbackContextEndpoint
Source§impl Default for FeedbackContextEndpoint
impl Default for FeedbackContextEndpoint
Source§impl<'de> Deserialize<'de> for FeedbackContextEndpoint
impl<'de> Deserialize<'de> for FeedbackContextEndpoint
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<FeedbackContextEndpoint> for FeedbackContextEndpoint
impl From<FeedbackContextEndpoint> for FeedbackContextEndpoint
Source§fn from(value: FeedbackContextEndpoint) -> Self
fn from(value: FeedbackContextEndpoint) -> Self
Converts to this type from the input type.
Source§impl Serialize for FeedbackContextEndpoint
impl Serialize for FeedbackContextEndpoint
Source§impl TryFrom<FeedbackContextEndpoint> for FeedbackContextEndpoint
impl TryFrom<FeedbackContextEndpoint> for FeedbackContextEndpoint
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: FeedbackContextEndpoint) -> Result<Self, ConversionError>
fn try_from(value: FeedbackContextEndpoint) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for FeedbackContextEndpoint
impl RefUnwindSafe for FeedbackContextEndpoint
impl Send for FeedbackContextEndpoint
impl Sync for FeedbackContextEndpoint
impl Unpin for FeedbackContextEndpoint
impl UnsafeUnpin for FeedbackContextEndpoint
impl UnwindSafe for FeedbackContextEndpoint
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