#[non_exhaustive]
pub struct BatchWriteOperationResponse {
Show 15 fields pub create_object: Option<BatchCreateObjectResponse>, pub attach_object: Option<BatchAttachObjectResponse>, pub detach_object: Option<BatchDetachObjectResponse>, pub update_object_attributes: Option<BatchUpdateObjectAttributesResponse>, pub delete_object: Option<BatchDeleteObjectResponse>, pub add_facet_to_object: Option<BatchAddFacetToObjectResponse>, pub remove_facet_from_object: Option<BatchRemoveFacetFromObjectResponse>, pub attach_policy: Option<BatchAttachPolicyResponse>, pub detach_policy: Option<BatchDetachPolicyResponse>, pub create_index: Option<BatchCreateIndexResponse>, pub attach_to_index: Option<BatchAttachToIndexResponse>, pub detach_from_index: Option<BatchDetachFromIndexResponse>, pub attach_typed_link: Option<BatchAttachTypedLinkResponse>, pub detach_typed_link: Option<BatchDetachTypedLinkResponse>, pub update_link_attributes: Option<BatchUpdateLinkAttributesResponse>,
}
Expand description

Represents the output of a BatchWrite response operation.

Fields (Non-exhaustive)

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
create_object: Option<BatchCreateObjectResponse>

Creates an object in a Directory.

attach_object: Option<BatchAttachObjectResponse>

Attaches an object to a Directory.

detach_object: Option<BatchDetachObjectResponse>

Detaches an object from a Directory.

update_object_attributes: Option<BatchUpdateObjectAttributesResponse>

Updates a given object’s attributes.

delete_object: Option<BatchDeleteObjectResponse>

Deletes an object in a Directory.

add_facet_to_object: Option<BatchAddFacetToObjectResponse>

The result of an add facet to object batch operation.

remove_facet_from_object: Option<BatchRemoveFacetFromObjectResponse>

The result of a batch remove facet from object operation.

attach_policy: Option<BatchAttachPolicyResponse>

Attaches a policy object to a regular object. An object can have a limited number of attached policies.

detach_policy: Option<BatchDetachPolicyResponse>

Detaches a policy from a Directory.

create_index: Option<BatchCreateIndexResponse>

Creates an index object. See Indexing and search for more information.

attach_to_index: Option<BatchAttachToIndexResponse>

Attaches the specified object to the specified index.

detach_from_index: Option<BatchDetachFromIndexResponse>

Detaches the specified object from the specified index.

attach_typed_link: Option<BatchAttachTypedLinkResponse>

Attaches a typed link to a specified source and target object. For more information, see Typed Links.

detach_typed_link: Option<BatchDetachTypedLinkResponse>

Detaches a typed link from a specified source and target object. For more information, see Typed Links.

update_link_attributes: Option<BatchUpdateLinkAttributesResponse>

Represents the output of a BatchWrite response operation.

Implementations

Creates an object in a Directory.

Attaches an object to a Directory.

Detaches an object from a Directory.

Updates a given object’s attributes.

Deletes an object in a Directory.

The result of an add facet to object batch operation.

The result of a batch remove facet from object operation.

Attaches a policy object to a regular object. An object can have a limited number of attached policies.

Detaches a policy from a Directory.

Creates an index object. See Indexing and search for more information.

Attaches the specified object to the specified index.

Detaches the specified object from the specified index.

Attaches a typed link to a specified source and target object. For more information, see Typed Links.

Detaches a typed link from a specified source and target object. For more information, see Typed Links.

Represents the output of a BatchWrite response operation.

Creates a new builder-style object to manufacture BatchWriteOperationResponse

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

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

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