Struct aws_sdk_textract::model::Relationship [−][src]
#[non_exhaustive]pub struct Relationship {
pub type: Option<RelationshipType>,
pub ids: Option<Vec<String>>,
}
Expand description
Information about how blocks are related to each other. A Block
object
contains 0 or more Relation
objects in a list, Relationships
. For
more information, see Block.
The Type
element provides the type of the relationship for all blocks in
the IDs
array.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.type: Option<RelationshipType>
The type of relationship that the blocks in the IDs array have with the current block.
The relationship can be VALUE
or CHILD
. A relationship of type
VALUE is a list that contains the ID of the VALUE block that's associated with the KEY of a
key-value pair. A relationship of type CHILD is a list of IDs that identify WORD blocks in
the case of lines Cell blocks in the case of Tables, and WORD blocks in the case of
Selection Elements.
ids: Option<Vec<String>>
An
array of IDs for related blocks. You can get the type of the relationship from the
Type
element.
Implementations
The type of relationship that the blocks in the IDs array have with the current block.
The relationship can be VALUE
or CHILD
. A relationship of type
VALUE is a list that contains the ID of the VALUE block that's associated with the KEY of a
key-value pair. A relationship of type CHILD is a list of IDs that identify WORD blocks in
the case of lines Cell blocks in the case of Tables, and WORD blocks in the case of
Selection Elements.
Creates a new builder-style object to manufacture Relationship
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for Relationship
impl Send for Relationship
impl Sync for Relationship
impl Unpin for Relationship
impl UnwindSafe for Relationship
Blanket Implementations
Mutably borrows from an owned value. Read more
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