pub struct StreamingDetectionResult {
pub endpoints: Vec<DetectedStreamingEndpoint>,
pub event_types: BTreeMap<String, Vec<String>>,
pub potential_event_unions: Vec<String>,
}Expand description
Auto-detection result for streaming capabilities
Fields§
§endpoints: Vec<DetectedStreamingEndpoint>Detected streaming endpoints
event_types: BTreeMap<String, Vec<String>>Event types found in the spec
potential_event_unions: Vec<String>Discriminated unions that could be streaming events
Trait Implementations§
Source§impl Clone for StreamingDetectionResult
impl Clone for StreamingDetectionResult
Source§fn clone(&self) -> StreamingDetectionResult
fn clone(&self) -> StreamingDetectionResult
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 StreamingDetectionResult
impl RefUnwindSafe for StreamingDetectionResult
impl Send for StreamingDetectionResult
impl Sync for StreamingDetectionResult
impl Unpin for StreamingDetectionResult
impl UnwindSafe for StreamingDetectionResult
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