pub struct SsfStream {
pub pk: Uuid,
pub provider: i32,
pub provider_obj: SsfProvider,
pub delivery_method: DeliveryMethodEnum,
pub endpoint_url: Option<Option<String>>,
pub events_requested: Option<Vec<EventsRequestedEnum>>,
pub format: String,
pub aud: Option<Vec<String>>,
pub iss: String,
}Expand description
SsfStream : SSFStream Serializer
Fields§
§pk: Uuid§provider: i32§provider_obj: SsfProvider§delivery_method: DeliveryMethodEnum§endpoint_url: Option<Option<String>>§events_requested: Option<Vec<EventsRequestedEnum>>§format: String§aud: Option<Vec<String>>§iss: StringImplementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for SsfStream
impl<'de> Deserialize<'de> for SsfStream
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
impl StructuralPartialEq for SsfStream
Auto Trait Implementations§
impl Freeze for SsfStream
impl RefUnwindSafe for SsfStream
impl Send for SsfStream
impl Sync for SsfStream
impl Unpin for SsfStream
impl UnsafeUnpin for SsfStream
impl UnwindSafe for SsfStream
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