pub struct DetectedStreamingEndpoint {
pub operation_id: String,
pub stream_parameter: String,
pub event_union_type: Option<String>,
pub content_type: Option<String>,
pub event_types: Vec<String>,
}Expand description
Detected streaming endpoint from OpenAPI analysis
Fields§
§operation_id: StringOperation ID
stream_parameter: StringStream parameter name
event_union_type: Option<String>Detected event union type
content_type: Option<String>Detected content type
event_types: Vec<String>Detected event types
Trait Implementations§
Source§impl Clone for DetectedStreamingEndpoint
impl Clone for DetectedStreamingEndpoint
Source§fn clone(&self) -> DetectedStreamingEndpoint
fn clone(&self) -> DetectedStreamingEndpoint
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 moreAuto Trait Implementations§
impl Freeze for DetectedStreamingEndpoint
impl RefUnwindSafe for DetectedStreamingEndpoint
impl Send for DetectedStreamingEndpoint
impl Sync for DetectedStreamingEndpoint
impl Unpin for DetectedStreamingEndpoint
impl UnwindSafe for DetectedStreamingEndpoint
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