pub struct SegmentRequest {
pub segment_id: String,
pub table: String,
pub requested_scopes_json: String,
}Expand description
Direct-endpoint segment fetch (§5.5). Signed-URL descriptors never
reach this call: the §5.4 resolution lives in the client core, which
routes url-carrying descriptors through fetch_url instead.
Fields§
§segment_id: String§table: String§requested_scopes_json: StringCanonical JSON (§11.2) of the requested scope map (§5.5).
Trait Implementations§
Source§impl Clone for SegmentRequest
impl Clone for SegmentRequest
Source§fn clone(&self) -> SegmentRequest
fn clone(&self) -> SegmentRequest
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 moreAuto Trait Implementations§
impl Freeze for SegmentRequest
impl RefUnwindSafe for SegmentRequest
impl Send for SegmentRequest
impl Sync for SegmentRequest
impl Unpin for SegmentRequest
impl UnsafeUnpin for SegmentRequest
impl UnwindSafe for SegmentRequest
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