[][src]Struct sync15::request::InfoConfiguration

pub struct InfoConfiguration {
    pub max_request_bytes: usize,
    pub max_post_records: usize,
    pub max_post_bytes: usize,
    pub max_total_records: usize,
    pub max_total_bytes: usize,
    pub max_record_payload_bytes: usize,
}

Fields

max_request_bytes: usize

The maximum size in bytes of the overall HTTP request body that will be accepted by the server.

max_post_records: usize

The maximum number of records that can be uploaded to a collection in a single POST request.

max_post_bytes: usize

The maximum combined size in bytes of the record payloads that can be uploaded to a collection in a single POST request.

max_total_records: usize

The maximum total number of records that can be uploaded to a collection as part of a batched upload.

max_total_bytes: usize

The maximum total combined size in bytes of the record payloads that can be uploaded to a collection as part of a batched upload.

max_record_payload_bytes: usize

The maximum size of an individual BSO payload, in bytes.

Trait Implementations

impl Clone for InfoConfiguration[src]

impl Debug for InfoConfiguration[src]

impl Default for InfoConfiguration[src]

impl<'de> Deserialize<'de> for InfoConfiguration[src]

impl Serialize for InfoConfiguration[src]

Auto Trait Implementations

impl RefUnwindSafe for InfoConfiguration

impl Send for InfoConfiguration

impl Sync for InfoConfiguration

impl Unpin for InfoConfiguration

impl UnwindSafe for InfoConfiguration

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,