pub struct BuildBazelRemoteExecutionV2CacheCapabilities {
    pub action_cache_update_capabilities: Option<BuildBazelRemoteExecutionV2ActionCacheUpdateCapabilities>,
    pub cache_priority_capabilities: Option<BuildBazelRemoteExecutionV2PriorityCapabilities>,
    pub digest_function: Option<Vec<String>>,
    pub max_batch_total_size_bytes: Option<String>,
    pub supported_compressor: Option<Vec<String>>,
    pub symlink_absolute_path_strategy: Option<String>,
}
Expand description

Capabilities of the remote cache system.

This type is not used in any activity, and only used as part of another schema.

Fields

action_cache_update_capabilities: Option<BuildBazelRemoteExecutionV2ActionCacheUpdateCapabilities>

Capabilities for updating the action cache.

cache_priority_capabilities: Option<BuildBazelRemoteExecutionV2PriorityCapabilities>

Supported cache priority range for both CAS and ActionCache.

digest_function: Option<Vec<String>>

All the digest functions supported by the remote cache. Remote cache may support multiple digest functions simultaneously.

max_batch_total_size_bytes: Option<String>

Maximum total size of blobs to be uploaded/downloaded using batch methods. A value of 0 means no limit is set, although in practice there will always be a message size limitation of the protocol in use, e.g. GRPC.

supported_compressor: Option<Vec<String>>

Compressors supported by the “compressed-blobs” bytestream resources. Servers MUST support identity/no-compression, even if it is not listed here. Note that this does not imply which if any compressors are supported by the server at the gRPC level.

symlink_absolute_path_strategy: Option<String>

Whether absolute symlink targets are supported.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more