pub struct S2StreamConfigHeader {
pub s2_stream_config: String,
}Fields§
§s2_stream_config: StringJSON-encoded StreamConfig to apply if the stream is created on append or read.
Unset fields inherit the basin’s default stream configuration.
Ignored if the stream already exists.
Compact JSON is preferred.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for S2StreamConfigHeader
impl RefUnwindSafe for S2StreamConfigHeader
impl Send for S2StreamConfigHeader
impl Sync for S2StreamConfigHeader
impl Unpin for S2StreamConfigHeader
impl UnsafeUnpin for S2StreamConfigHeader
impl UnwindSafe for S2StreamConfigHeader
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more