pub struct Repository<Vocab: ActivityVocabulary = VocabularyTypes> { /* private fields */ }Expand description
Represents a version control system repository.
§Example
use activityforge::{Repository, context};
use activitystreams_vocabulary::{
Iri, MultibaseHeader, MultibasePublicKey, Multikey, MultikeyPublicKey, Name,
};
let id = Iri::try_from("https://dev.example/aviva/treesim").unwrap();
let name = Name::try_from("Tree Growth 3D Simulation").unwrap();
let summary = "<p>Tree growth 3D simulator for my nature exploration game</p>";
let inbox = Iri::try_from("https://dev.example/aviva/treesim/inbox").unwrap();
let outbox = Iri::try_from("https://dev.example/aviva/treesim/outbox").unwrap();
let followers = Iri::try_from("https://dev.example/aviva/treesim/followers").unwrap();
let key_id = Iri::try_from("https://dev.example/aviva/treesim#main-key").unwrap();
let controller = Iri::try_from("https://dev.example/aviva/treesim").unwrap();
let encoded_multibase = "u7QGwDY2Tjn93PVFWWq02piP1NE9_XRlg-c8-jhJiHqKBHw";
let team = Iri::try_from("https://dev.example/aviva/treesim/team").unwrap();
let json_str = format!(
r#"{{
"@context": [
"https://www.w3.org/ns/activitystreams",
"https://forgefed.org/ns"
],
"type": "Repository",
"id": "{id}",
"name": "{name}",
"summary": "{summary}",
"inbox": "{inbox}",
"outbox": "{outbox}",
"followers": "{followers}",
"assertionMethod": [
{{
"type": "Multikey",
"id": "{key_id}",
"controller": "{controller}",
"publicKeyMultibase": "{encoded_multibase}"
}}
],
"team": "{team}"
}}"#
);
let context = context::forgefed_context();
let multibase = MultibasePublicKey::new()
.with_header(MultibaseHeader::Base64UrlNoPad)
.with_key(MultikeyPublicKey::Ed25519([
0xb0, 0x0d, 0x8d, 0x93, 0x8e, 0x7f, 0x77, 0x3d, 0x51, 0x56, 0x5a, 0xad, 0x36, 0xa6,
0x23, 0xf5, 0x34, 0x4f, 0x7f, 0x5d, 0x19, 0x60, 0xf9, 0xcf, 0x3e, 0x8e, 0x12, 0x62,
0x1e, 0xa2, 0x81, 0x1f,
]));
let multikey = Multikey::new_inner()
.with_id(key_id)
.with_controller(controller.clone())
.with_public_key_multibase(multibase);
let repository = Repository::new()
.with_context_property(context)
.with_id(id)
.with_name(name)
.with_summary(summary)
.with_inbox(inbox)
.with_outbox(outbox)
.with_followers(followers)
.with_assertion_method([multikey])
.with_team(team);
assert_eq!(serde_json::to_string_pretty(&repository).unwrap(), json_str);
assert_eq!(
serde_json::from_str::<Repository>(json_str.as_str()).unwrap(),
repository
);Implementations§
Source§impl<Vocab: ActivityVocabulary + From<ActorType>> Repository<Vocab>
impl<Vocab: ActivityVocabulary + From<ActorType>> Repository<Vocab>
Sourcepub fn new() -> Self
pub fn new() -> Self
Creates a new Repository.
Sourcepub fn new_inner() -> Self
pub fn new_inner() -> Self
Creates a new Repository for use as an inner member of another object.
Encodes the type without the @context field.
Sourcepub fn new_kind(kind: Vocab) -> Self
pub fn new_kind(kind: Vocab) -> Self
Creates a new Repository.
Sourcepub fn without_context_property(self) -> Self
pub fn without_context_property(self) -> Self
Builder function that unsets the @context field.
Source§impl<Vocab: ActivityVocabulary> Repository<Vocab>
impl<Vocab: ActivityVocabulary> Repository<Vocab>
Sourcepub fn kind(&self) -> &Vocab
pub fn kind(&self) -> &Vocab
Gets the Repository kind.
Provides the ActivityStream Vocabulary type.
Sourcepub fn set_kind<I: Into<Vocab>>(&mut self, val: I)
pub fn set_kind<I: Into<Vocab>>(&mut self, val: I)
Sets the Repository kind.
Provides the ActivityStream Vocabulary type.
Sourcepub fn with_kind<I: Into<Vocab>>(self, val: I) -> Self
pub fn with_kind<I: Into<Vocab>>(self, val: I) -> Self
Builder function that sets the Repository kind.
Provides the ActivityStream Vocabulary type.
Source§impl<Vocab: ActivityVocabulary> Repository<Vocab>
impl<Vocab: ActivityVocabulary> Repository<Vocab>
Sourcepub fn id(&self) -> Option<&Iri>
pub fn id(&self) -> Option<&Iri>
Gets the Repository id.
Provides the globally unique identifier for an Object.
Sourcepub fn set_id<I: Into<Iri>>(&mut self, val: I)
pub fn set_id<I: Into<Iri>>(&mut self, val: I)
Sets the Repository id.
Provides the globally unique identifier for an Object.
Sourcepub fn unset_id(&mut self) -> Option<Iri>
pub fn unset_id(&mut self) -> Option<Iri>
Unsets the Repository id.
Provides the globally unique identifier for an Object.
Sourcepub fn with_id<I: Into<Iri>>(self, val: I) -> Self
pub fn with_id<I: Into<Iri>>(self, val: I) -> Self
Builder function that sets the Repository id.
Provides the globally unique identifier for an Object.
Sourcepub fn context_property(&self) -> Option<&Context>
pub fn context_property(&self) -> Option<&Context>
Gets the Repository context_property.
Represents the special @context property to define the processing context.
The value of the @context property is defined by the JSON-LD specification.
Sourcepub fn set_context_property<I: Into<Context>>(&mut self, val: I)
pub fn set_context_property<I: Into<Context>>(&mut self, val: I)
Sets the Repository context_property.
Represents the special @context property to define the processing context.
The value of the @context property is defined by the JSON-LD specification.
Sourcepub fn unset_context_property(&mut self) -> Option<Context>
pub fn unset_context_property(&mut self) -> Option<Context>
Unsets the Repository context_property.
Represents the special @context property to define the processing context.
The value of the @context property is defined by the JSON-LD specification.
Sourcepub fn with_context_property<I: Into<Context>>(self, val: I) -> Self
pub fn with_context_property<I: Into<Context>>(self, val: I) -> Self
Builder function that sets the Repository context_property.
Represents the special @context property to define the processing context.
The value of the @context property is defined by the JSON-LD specification.
Sourcepub fn name(&self) -> Option<&Name>
pub fn name(&self) -> Option<&Name>
Gets the Repository name.
A simple, human-readable, plain-text name for the object.
HTML markup MUST NOT be included.
The name MAY be expressed using multiple language-tagged values.
Sourcepub fn set_name<I: Into<Name>>(&mut self, val: I)
pub fn set_name<I: Into<Name>>(&mut self, val: I)
Sets the Repository name.
A simple, human-readable, plain-text name for the object.
HTML markup MUST NOT be included.
The name MAY be expressed using multiple language-tagged values.
Sourcepub fn unset_name(&mut self) -> Option<Name>
pub fn unset_name(&mut self) -> Option<Name>
Unsets the Repository name.
A simple, human-readable, plain-text name for the object.
HTML markup MUST NOT be included.
The name MAY be expressed using multiple language-tagged values.
Sourcepub fn with_name<I: Into<Name>>(self, val: I) -> Self
pub fn with_name<I: Into<Name>>(self, val: I) -> Self
Builder function that sets the Repository name.
A simple, human-readable, plain-text name for the object.
HTML markup MUST NOT be included.
The name MAY be expressed using multiple language-tagged values.
Sourcepub fn name_map(&self) -> Option<&NameMap>
pub fn name_map(&self) -> Option<&NameMap>
Gets the Repository name_map.
A simple, human-readable, plain-text name for the object expressed using multiple language-tagged values.
HTML markup MUST NOT be included.
Sourcepub fn set_name_map<I: Into<NameMap>>(&mut self, val: I)
pub fn set_name_map<I: Into<NameMap>>(&mut self, val: I)
Sets the Repository name_map.
A simple, human-readable, plain-text name for the object expressed using multiple language-tagged values.
HTML markup MUST NOT be included.
Sourcepub fn unset_name_map(&mut self) -> Option<NameMap>
pub fn unset_name_map(&mut self) -> Option<NameMap>
Unsets the Repository name_map.
A simple, human-readable, plain-text name for the object expressed using multiple language-tagged values.
HTML markup MUST NOT be included.
Sourcepub fn with_name_map<I: Into<NameMap>>(self, val: I) -> Self
pub fn with_name_map<I: Into<NameMap>>(self, val: I) -> Self
Builder function that sets the Repository name_map.
A simple, human-readable, plain-text name for the object expressed using multiple language-tagged values.
HTML markup MUST NOT be included.
Sourcepub fn content_map(&self) -> Option<&LanguageMap>
pub fn content_map(&self) -> Option<&LanguageMap>
Gets the Repository content_map.
The content or textual representation of the Object encoded as a JSON string, expressed using multiple language-tagged values.
By default, the value of content is HTML.
The mediaType property can be used in the object to indicate a different content type.
Sourcepub fn set_content_map<I: Into<LanguageMap>>(&mut self, val: I)
pub fn set_content_map<I: Into<LanguageMap>>(&mut self, val: I)
Sets the Repository content_map.
The content or textual representation of the Object encoded as a JSON string, expressed using multiple language-tagged values.
By default, the value of content is HTML.
The mediaType property can be used in the object to indicate a different content type.
Sourcepub fn unset_content_map(&mut self) -> Option<LanguageMap>
pub fn unset_content_map(&mut self) -> Option<LanguageMap>
Unsets the Repository content_map.
The content or textual representation of the Object encoded as a JSON string, expressed using multiple language-tagged values.
By default, the value of content is HTML.
The mediaType property can be used in the object to indicate a different content type.
Sourcepub fn with_content_map<I: Into<LanguageMap>>(self, val: I) -> Self
pub fn with_content_map<I: Into<LanguageMap>>(self, val: I) -> Self
Builder function that sets the Repository content_map.
The content or textual representation of the Object encoded as a JSON string, expressed using multiple language-tagged values.
By default, the value of content is HTML.
The mediaType property can be used in the object to indicate a different content type.
Sourcepub fn summary_map(&self) -> Option<&LanguageMap>
pub fn summary_map(&self) -> Option<&LanguageMap>
Gets the Repository summary_map.
A natural language summarization of the object encoded as HTML, expressed as multiple language-tagged summaries.
Sourcepub fn set_summary_map<I: Into<LanguageMap>>(&mut self, val: I)
pub fn set_summary_map<I: Into<LanguageMap>>(&mut self, val: I)
Sets the Repository summary_map.
A natural language summarization of the object encoded as HTML, expressed as multiple language-tagged summaries.
Sourcepub fn unset_summary_map(&mut self) -> Option<LanguageMap>
pub fn unset_summary_map(&mut self) -> Option<LanguageMap>
Unsets the Repository summary_map.
A natural language summarization of the object encoded as HTML, expressed as multiple language-tagged summaries.
Sourcepub fn with_summary_map<I: Into<LanguageMap>>(self, val: I) -> Self
pub fn with_summary_map<I: Into<LanguageMap>>(self, val: I) -> Self
Builder function that sets the Repository summary_map.
A natural language summarization of the object encoded as HTML, expressed as multiple language-tagged summaries.
Sourcepub fn duration(&self) -> Option<&Duration>
pub fn duration(&self) -> Option<&Duration>
Gets the Repository duration.
When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object’s approximate duration.
The value MUST be expressed as an xsd:duration as defined by xmlschema11-2.
Sourcepub fn set_duration<I: Into<Duration>>(&mut self, val: I)
pub fn set_duration<I: Into<Duration>>(&mut self, val: I)
Sets the Repository duration.
When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object’s approximate duration.
The value MUST be expressed as an xsd:duration as defined by xmlschema11-2.
Sourcepub fn unset_duration(&mut self) -> Option<Duration>
pub fn unset_duration(&mut self) -> Option<Duration>
Unsets the Repository duration.
When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object’s approximate duration.
The value MUST be expressed as an xsd:duration as defined by xmlschema11-2.
Sourcepub fn with_duration<I: Into<Duration>>(self, val: I) -> Self
pub fn with_duration<I: Into<Duration>>(self, val: I) -> Self
Builder function that sets the Repository duration.
When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object’s approximate duration.
The value MUST be expressed as an xsd:duration as defined by xmlschema11-2.
Sourcepub fn source(&self) -> Option<&ContentItem>
pub fn source(&self) -> Option<&ContentItem>
Gets the Repository source.
Represents the source of the content field.
Sourcepub fn set_source<I: Into<ContentItem>>(&mut self, val: I)
pub fn set_source<I: Into<ContentItem>>(&mut self, val: I)
Sets the Repository source.
Represents the source of the content field.
Sourcepub fn unset_source(&mut self) -> Option<ContentItem>
pub fn unset_source(&mut self) -> Option<ContentItem>
Unsets the Repository source.
Represents the source of the content field.
Sourcepub fn with_source<I: Into<ContentItem>>(self, val: I) -> Self
pub fn with_source<I: Into<ContentItem>>(self, val: I) -> Self
Builder function that sets the Repository source.
Represents the source of the content field.
Sourcepub fn proof(&self) -> Option<&DataIntegrityProof>
pub fn proof(&self) -> Option<&DataIntegrityProof>
Gets the Repository proof.
Represents a DataIntegrityProof.
Sourcepub fn set_proof<I: Into<DataIntegrityProof>>(&mut self, val: I)
pub fn set_proof<I: Into<DataIntegrityProof>>(&mut self, val: I)
Sets the Repository proof.
Represents a DataIntegrityProof.
Sourcepub fn unset_proof(&mut self) -> Option<DataIntegrityProof>
pub fn unset_proof(&mut self) -> Option<DataIntegrityProof>
Unsets the Repository proof.
Represents a DataIntegrityProof.
Sourcepub fn with_proof<I: Into<DataIntegrityProof>>(self, val: I) -> Self
pub fn with_proof<I: Into<DataIntegrityProof>>(self, val: I) -> Self
Builder function that sets the Repository proof.
Represents a DataIntegrityProof.
Sourcepub fn url(&self) -> Option<&LinkItems>
pub fn url(&self) -> Option<&LinkItems>
Gets the Repository url.
Identifies one or more links to representations of the object
Sourcepub fn set_url<I: Into<LinkItems>>(&mut self, val: I)
pub fn set_url<I: Into<LinkItems>>(&mut self, val: I)
Sets the Repository url.
Identifies one or more links to representations of the object
Sourcepub fn unset_url(&mut self) -> Option<LinkItems>
pub fn unset_url(&mut self) -> Option<LinkItems>
Unsets the Repository url.
Identifies one or more links to representations of the object
Sourcepub fn with_url<I: Into<LinkItems>>(self, val: I) -> Self
pub fn with_url<I: Into<LinkItems>>(self, val: I) -> Self
Builder function that sets the Repository url.
Identifies one or more links to representations of the object
Source§impl<Vocab: ActivityVocabulary> Repository<Vocab>
impl<Vocab: ActivityVocabulary> Repository<Vocab>
Sourcepub fn content(&self) -> Option<&str>
pub fn content(&self) -> Option<&str>
Gets the Repository content.
The content or textual representation of the Object encoded as a JSON string.
By default, the value of content is HTML.
The mediaType property can be used in the object to indicate a different content type.
The content MAY be expressed using multiple language-tagged values.
Sourcepub fn set_content<I: Into<String>>(&mut self, val: I)
pub fn set_content<I: Into<String>>(&mut self, val: I)
Sets the Repository content.
The content or textual representation of the Object encoded as a JSON string.
By default, the value of content is HTML.
The mediaType property can be used in the object to indicate a different content type.
The content MAY be expressed using multiple language-tagged values.
Sourcepub fn unset_content(&mut self) -> Option<String>
pub fn unset_content(&mut self) -> Option<String>
Unsets the Repository content.
The content or textual representation of the Object encoded as a JSON string.
By default, the value of content is HTML.
The mediaType property can be used in the object to indicate a different content type.
The content MAY be expressed using multiple language-tagged values.
Sourcepub fn with_content<I: Into<String>>(self, val: I) -> Self
pub fn with_content<I: Into<String>>(self, val: I) -> Self
Builder function that sets the Repository content.
The content or textual representation of the Object encoded as a JSON string.
By default, the value of content is HTML.
The mediaType property can be used in the object to indicate a different content type.
The content MAY be expressed using multiple language-tagged values.
Sourcepub fn summary(&self) -> Option<&str>
pub fn summary(&self) -> Option<&str>
Gets the Repository summary.
A natural language summarization of the object encoded as HTML.
Multiple language tagged summaries MAY be provided.
Sourcepub fn set_summary<I: Into<String>>(&mut self, val: I)
pub fn set_summary<I: Into<String>>(&mut self, val: I)
Sets the Repository summary.
A natural language summarization of the object encoded as HTML.
Multiple language tagged summaries MAY be provided.
Sourcepub fn unset_summary(&mut self) -> Option<String>
pub fn unset_summary(&mut self) -> Option<String>
Unsets the Repository summary.
A natural language summarization of the object encoded as HTML.
Multiple language tagged summaries MAY be provided.
Sourcepub fn with_summary<I: Into<String>>(self, val: I) -> Self
pub fn with_summary<I: Into<String>>(self, val: I) -> Self
Builder function that sets the Repository summary.
A natural language summarization of the object encoded as HTML.
Multiple language tagged summaries MAY be provided.
Source§impl<Vocab: ActivityVocabulary> Repository<Vocab>
impl<Vocab: ActivityVocabulary> Repository<Vocab>
Sourcepub fn attachment(&self) -> Option<&Items>
pub fn attachment(&self) -> Option<&Items>
Gets the Repository attachment.
Identifies a resource attached or related to an object that potentially requires special handling.
The intent is to provide a model that is at least semantically similar to attachments in email.
Sourcepub fn set_attachment<I: Into<Items>>(&mut self, val: I)
pub fn set_attachment<I: Into<Items>>(&mut self, val: I)
Sets the Repository attachment.
Identifies a resource attached or related to an object that potentially requires special handling.
The intent is to provide a model that is at least semantically similar to attachments in email.
Sourcepub fn unset_attachment(&mut self) -> Option<Box<Items>>
pub fn unset_attachment(&mut self) -> Option<Box<Items>>
Unsets the Repository attachment.
Identifies a resource attached or related to an object that potentially requires special handling.
The intent is to provide a model that is at least semantically similar to attachments in email.
Sourcepub fn with_attachment<I: Into<Items>>(self, val: I) -> Self
pub fn with_attachment<I: Into<Items>>(self, val: I) -> Self
Builder function that sets the Repository attachment.
Identifies a resource attached or related to an object that potentially requires special handling.
The intent is to provide a model that is at least semantically similar to attachments in email.
Sourcepub fn attributed_to(&self) -> Option<&Item>
pub fn attributed_to(&self) -> Option<&Item>
Gets the Repository attributed_to.
Identifies one or more entities to which this object is attributed.
The attributed entities might not be Actors.
For instance, an object might be attributed to the completion of another activity.
Sourcepub fn set_attributed_to<I: Into<Item>>(&mut self, val: I)
pub fn set_attributed_to<I: Into<Item>>(&mut self, val: I)
Sets the Repository attributed_to.
Identifies one or more entities to which this object is attributed.
The attributed entities might not be Actors.
For instance, an object might be attributed to the completion of another activity.
Sourcepub fn unset_attributed_to(&mut self) -> Option<Box<Item>>
pub fn unset_attributed_to(&mut self) -> Option<Box<Item>>
Unsets the Repository attributed_to.
Identifies one or more entities to which this object is attributed.
The attributed entities might not be Actors.
For instance, an object might be attributed to the completion of another activity.
Sourcepub fn with_attributed_to<I: Into<Item>>(self, val: I) -> Self
pub fn with_attributed_to<I: Into<Item>>(self, val: I) -> Self
Builder function that sets the Repository attributed_to.
Identifies one or more entities to which this object is attributed.
The attributed entities might not be Actors.
For instance, an object might be attributed to the completion of another activity.
Sourcepub fn audience(&self) -> Option<&Item>
pub fn audience(&self) -> Option<&Item>
Gets the Repository audience.
Identifies one or more entities that represent the total population of entities for which the object can be considered to be relevant.
Sourcepub fn set_audience<I: Into<Item>>(&mut self, val: I)
pub fn set_audience<I: Into<Item>>(&mut self, val: I)
Sets the Repository audience.
Identifies one or more entities that represent the total population of entities for which the object can be considered to be relevant.
Sourcepub fn unset_audience(&mut self) -> Option<Box<Item>>
pub fn unset_audience(&mut self) -> Option<Box<Item>>
Unsets the Repository audience.
Identifies one or more entities that represent the total population of entities for which the object can be considered to be relevant.
Sourcepub fn with_audience<I: Into<Item>>(self, val: I) -> Self
pub fn with_audience<I: Into<Item>>(self, val: I) -> Self
Builder function that sets the Repository audience.
Identifies one or more entities that represent the total population of entities for which the object can be considered to be relevant.
Sourcepub fn context(&self) -> Option<&Item>
pub fn context(&self) -> Option<&Item>
Gets the Repository context.
Identifies the context within which the object exists or an activity was performed.
The notion of “context” used is intentionally vague.
The intended function is to serve as a means of grouping objects and activities that share a common originating context or purpose.
An example could be all activities relating to a common project or event.
Sourcepub fn set_context<I: Into<Item>>(&mut self, val: I)
pub fn set_context<I: Into<Item>>(&mut self, val: I)
Sets the Repository context.
Identifies the context within which the object exists or an activity was performed.
The notion of “context” used is intentionally vague.
The intended function is to serve as a means of grouping objects and activities that share a common originating context or purpose.
An example could be all activities relating to a common project or event.
Sourcepub fn unset_context(&mut self) -> Option<Box<Item>>
pub fn unset_context(&mut self) -> Option<Box<Item>>
Unsets the Repository context.
Identifies the context within which the object exists or an activity was performed.
The notion of “context” used is intentionally vague.
The intended function is to serve as a means of grouping objects and activities that share a common originating context or purpose.
An example could be all activities relating to a common project or event.
Sourcepub fn with_context<I: Into<Item>>(self, val: I) -> Self
pub fn with_context<I: Into<Item>>(self, val: I) -> Self
Builder function that sets the Repository context.
Identifies the context within which the object exists or an activity was performed.
The notion of “context” used is intentionally vague.
The intended function is to serve as a means of grouping objects and activities that share a common originating context or purpose.
An example could be all activities relating to a common project or event.
Sourcepub fn generator(&self) -> Option<&Item>
pub fn generator(&self) -> Option<&Item>
Gets the Repository generator.
Identifies the entity (e.g. an application) that generated the object.
Sourcepub fn set_generator<I: Into<Item>>(&mut self, val: I)
pub fn set_generator<I: Into<Item>>(&mut self, val: I)
Sets the Repository generator.
Identifies the entity (e.g. an application) that generated the object.
Sourcepub fn unset_generator(&mut self) -> Option<Box<Item>>
pub fn unset_generator(&mut self) -> Option<Box<Item>>
Unsets the Repository generator.
Identifies the entity (e.g. an application) that generated the object.
Sourcepub fn with_generator<I: Into<Item>>(self, val: I) -> Self
pub fn with_generator<I: Into<Item>>(self, val: I) -> Self
Builder function that sets the Repository generator.
Identifies the entity (e.g. an application) that generated the object.
Sourcepub fn icon(&self) -> Option<&ImageItem>
pub fn icon(&self) -> Option<&ImageItem>
Gets the Repository icon.
Indicates an entity that describes an icon for this object.
The image should have an aspect ratio of one (horizontal) to one (vertical) and should be suitable for presentation at a small size.
Sourcepub fn set_icon<I: Into<ImageItem>>(&mut self, val: I)
pub fn set_icon<I: Into<ImageItem>>(&mut self, val: I)
Sets the Repository icon.
Indicates an entity that describes an icon for this object.
The image should have an aspect ratio of one (horizontal) to one (vertical) and should be suitable for presentation at a small size.
Sourcepub fn unset_icon(&mut self) -> Option<Box<ImageItem>>
pub fn unset_icon(&mut self) -> Option<Box<ImageItem>>
Unsets the Repository icon.
Indicates an entity that describes an icon for this object.
The image should have an aspect ratio of one (horizontal) to one (vertical) and should be suitable for presentation at a small size.
Sourcepub fn with_icon<I: Into<ImageItem>>(self, val: I) -> Self
pub fn with_icon<I: Into<ImageItem>>(self, val: I) -> Self
Builder function that sets the Repository icon.
Indicates an entity that describes an icon for this object.
The image should have an aspect ratio of one (horizontal) to one (vertical) and should be suitable for presentation at a small size.
Sourcepub fn image(&self) -> Option<&ImageItem>
pub fn image(&self) -> Option<&ImageItem>
Gets the Repository image.
Indicates an entity that describes an image for this object.
Unlike the icon property, there are no aspect ratio or display size limitations assumed.
Sourcepub fn set_image<I: Into<ImageItem>>(&mut self, val: I)
pub fn set_image<I: Into<ImageItem>>(&mut self, val: I)
Sets the Repository image.
Indicates an entity that describes an image for this object.
Unlike the icon property, there are no aspect ratio or display size limitations assumed.
Sourcepub fn unset_image(&mut self) -> Option<Box<ImageItem>>
pub fn unset_image(&mut self) -> Option<Box<ImageItem>>
Unsets the Repository image.
Indicates an entity that describes an image for this object.
Unlike the icon property, there are no aspect ratio or display size limitations assumed.
Sourcepub fn with_image<I: Into<ImageItem>>(self, val: I) -> Self
pub fn with_image<I: Into<ImageItem>>(self, val: I) -> Self
Builder function that sets the Repository image.
Indicates an entity that describes an image for this object.
Unlike the icon property, there are no aspect ratio or display size limitations assumed.
Sourcepub fn in_reply_to(&self) -> Option<&Item>
pub fn in_reply_to(&self) -> Option<&Item>
Gets the Repository in_reply_to.
Indicates one or more entities for which this object is considered a response.
Sourcepub fn set_in_reply_to<I: Into<Item>>(&mut self, val: I)
pub fn set_in_reply_to<I: Into<Item>>(&mut self, val: I)
Sets the Repository in_reply_to.
Indicates one or more entities for which this object is considered a response.
Sourcepub fn unset_in_reply_to(&mut self) -> Option<Box<Item>>
pub fn unset_in_reply_to(&mut self) -> Option<Box<Item>>
Unsets the Repository in_reply_to.
Indicates one or more entities for which this object is considered a response.
Sourcepub fn with_in_reply_to<I: Into<Item>>(self, val: I) -> Self
pub fn with_in_reply_to<I: Into<Item>>(self, val: I) -> Self
Builder function that sets the Repository in_reply_to.
Indicates one or more entities for which this object is considered a response.
Sourcepub fn location(&self) -> Option<&Item>
pub fn location(&self) -> Option<&Item>
Gets the Repository location.
Indicates one or more physical or logical locations associated with the object.
Sourcepub fn set_location<I: Into<Item>>(&mut self, val: I)
pub fn set_location<I: Into<Item>>(&mut self, val: I)
Sets the Repository location.
Indicates one or more physical or logical locations associated with the object.
Sourcepub fn unset_location(&mut self) -> Option<Box<Item>>
pub fn unset_location(&mut self) -> Option<Box<Item>>
Unsets the Repository location.
Indicates one or more physical or logical locations associated with the object.
Sourcepub fn with_location<I: Into<Item>>(self, val: I) -> Self
pub fn with_location<I: Into<Item>>(self, val: I) -> Self
Builder function that sets the Repository location.
Indicates one or more physical or logical locations associated with the object.
Sourcepub fn preview(&self) -> Option<&Item>
pub fn preview(&self) -> Option<&Item>
Gets the Repository preview.
Identifies an entity that provides a preview of this object.
Sourcepub fn set_preview<I: Into<Item>>(&mut self, val: I)
pub fn set_preview<I: Into<Item>>(&mut self, val: I)
Sets the Repository preview.
Identifies an entity that provides a preview of this object.
Sourcepub fn unset_preview(&mut self) -> Option<Box<Item>>
pub fn unset_preview(&mut self) -> Option<Box<Item>>
Unsets the Repository preview.
Identifies an entity that provides a preview of this object.
Sourcepub fn with_preview<I: Into<Item>>(self, val: I) -> Self
pub fn with_preview<I: Into<Item>>(self, val: I) -> Self
Builder function that sets the Repository preview.
Identifies an entity that provides a preview of this object.
Sourcepub fn replies(&self) -> Option<&Collection>
pub fn replies(&self) -> Option<&Collection>
Gets the Repository replies.
Identifies a Collection containing objects considered to be responses to this object.
Sourcepub fn set_replies<I: Into<Collection>>(&mut self, val: I)
pub fn set_replies<I: Into<Collection>>(&mut self, val: I)
Sets the Repository replies.
Identifies a Collection containing objects considered to be responses to this object.
Sourcepub fn unset_replies(&mut self) -> Option<Box<Collection>>
pub fn unset_replies(&mut self) -> Option<Box<Collection>>
Unsets the Repository replies.
Identifies a Collection containing objects considered to be responses to this object.
Sourcepub fn with_replies<I: Into<Collection>>(self, val: I) -> Self
pub fn with_replies<I: Into<Collection>>(self, val: I) -> Self
Builder function that sets the Repository replies.
Identifies a Collection containing objects considered to be responses to this object.
Sourcepub fn tag(&self) -> Option<&Items>
pub fn tag(&self) -> Option<&Items>
Gets the Repository tag.
One or more “tags” that have been associated with an objects.
A tag can be any kind of Object.
The key difference between attachment and tag is that the former implies association by inclusion,
while the latter implies associated by reference.
Sourcepub fn set_tag<I: Into<Items>>(&mut self, val: I)
pub fn set_tag<I: Into<Items>>(&mut self, val: I)
Sets the Repository tag.
One or more “tags” that have been associated with an objects.
A tag can be any kind of Object.
The key difference between attachment and tag is that the former implies association by inclusion,
while the latter implies associated by reference.
Sourcepub fn unset_tag(&mut self) -> Option<Box<Items>>
pub fn unset_tag(&mut self) -> Option<Box<Items>>
Unsets the Repository tag.
One or more “tags” that have been associated with an objects.
A tag can be any kind of Object.
The key difference between attachment and tag is that the former implies association by inclusion,
while the latter implies associated by reference.
Sourcepub fn with_tag<I: Into<Items>>(self, val: I) -> Self
pub fn with_tag<I: Into<Items>>(self, val: I) -> Self
Builder function that sets the Repository tag.
One or more “tags” that have been associated with an objects.
A tag can be any kind of Object.
The key difference between attachment and tag is that the former implies association by inclusion,
while the latter implies associated by reference.
Sourcepub fn to(&self) -> Option<&Items>
pub fn to(&self) -> Option<&Items>
Gets the Repository to.
Identifies one or more entities that are part of the public primary audience of this Object.
Sourcepub fn set_to<I: Into<Items>>(&mut self, val: I)
pub fn set_to<I: Into<Items>>(&mut self, val: I)
Sets the Repository to.
Identifies one or more entities that are part of the public primary audience of this Object.
Sourcepub fn unset_to(&mut self) -> Option<Box<Items>>
pub fn unset_to(&mut self) -> Option<Box<Items>>
Unsets the Repository to.
Identifies one or more entities that are part of the public primary audience of this Object.
Sourcepub fn with_to<I: Into<Items>>(self, val: I) -> Self
pub fn with_to<I: Into<Items>>(self, val: I) -> Self
Builder function that sets the Repository to.
Identifies one or more entities that are part of the public primary audience of this Object.
Sourcepub fn bto(&self) -> Option<&Items>
pub fn bto(&self) -> Option<&Items>
Gets the Repository bto.
Identifies one or more entities that are part of the private primary audience of this Object.
Sourcepub fn set_bto<I: Into<Items>>(&mut self, val: I)
pub fn set_bto<I: Into<Items>>(&mut self, val: I)
Sets the Repository bto.
Identifies one or more entities that are part of the private primary audience of this Object.
Sourcepub fn unset_bto(&mut self) -> Option<Box<Items>>
pub fn unset_bto(&mut self) -> Option<Box<Items>>
Unsets the Repository bto.
Identifies one or more entities that are part of the private primary audience of this Object.
Sourcepub fn with_bto<I: Into<Items>>(self, val: I) -> Self
pub fn with_bto<I: Into<Items>>(self, val: I) -> Self
Builder function that sets the Repository bto.
Identifies one or more entities that are part of the private primary audience of this Object.
Sourcepub fn cc(&self) -> Option<&Items>
pub fn cc(&self) -> Option<&Items>
Gets the Repository cc.
Identifies one or more entities that are part of the public secondary audience of this Object.
Sourcepub fn set_cc<I: Into<Items>>(&mut self, val: I)
pub fn set_cc<I: Into<Items>>(&mut self, val: I)
Sets the Repository cc.
Identifies one or more entities that are part of the public secondary audience of this Object.
Sourcepub fn unset_cc(&mut self) -> Option<Box<Items>>
pub fn unset_cc(&mut self) -> Option<Box<Items>>
Unsets the Repository cc.
Identifies one or more entities that are part of the public secondary audience of this Object.
Sourcepub fn with_cc<I: Into<Items>>(self, val: I) -> Self
pub fn with_cc<I: Into<Items>>(self, val: I) -> Self
Builder function that sets the Repository cc.
Identifies one or more entities that are part of the public secondary audience of this Object.
Sourcepub fn bcc(&self) -> Option<&Items>
pub fn bcc(&self) -> Option<&Items>
Gets the Repository bcc.
Identifies one or more entities that are part of the private secondary audience of this Object.
Sourcepub fn set_bcc<I: Into<Items>>(&mut self, val: I)
pub fn set_bcc<I: Into<Items>>(&mut self, val: I)
Sets the Repository bcc.
Identifies one or more entities that are part of the private secondary audience of this Object.
Sourcepub fn unset_bcc(&mut self) -> Option<Box<Items>>
pub fn unset_bcc(&mut self) -> Option<Box<Items>>
Unsets the Repository bcc.
Identifies one or more entities that are part of the private secondary audience of this Object.
Sourcepub fn with_bcc<I: Into<Items>>(self, val: I) -> Self
pub fn with_bcc<I: Into<Items>>(self, val: I) -> Self
Builder function that sets the Repository bcc.
Identifies one or more entities that are part of the private secondary audience of this Object.
Sourcepub fn extra_fields(&self) -> Option<&Map<String, Value>>
pub fn extra_fields(&self) -> Option<&Map<String, Value>>
Gets the Repository extra_fields.
Sourcepub fn set_extra_fields<I: Into<Map<String, Value>>>(&mut self, val: I)
pub fn set_extra_fields<I: Into<Map<String, Value>>>(&mut self, val: I)
Sets the Repository extra_fields.
Sourcepub fn unset_extra_fields(&mut self) -> Option<Box<Map<String, Value>>>
pub fn unset_extra_fields(&mut self) -> Option<Box<Map<String, Value>>>
Unsets the Repository extra_fields.
Sourcepub fn with_extra_fields<I: Into<Map<String, Value>>>(self, val: I) -> Self
pub fn with_extra_fields<I: Into<Map<String, Value>>>(self, val: I) -> Self
Builder function that sets the Repository extra_fields.
Source§impl<Vocab: ActivityVocabulary> Repository<Vocab>
impl<Vocab: ActivityVocabulary> Repository<Vocab>
Sourcepub const fn media_type(&self) -> Option<MimeType>
pub const fn media_type(&self) -> Option<MimeType>
Gets the Repository media_type.
When used on a Link, identifies the MIME media type of the referenced resource.
When used on an Object, identifies the MIME media type of the value of the content property.
If not specified, the content property is assumed to contain text/html content.
Sourcepub fn set_media_type<I: Into<MimeType>>(&mut self, val: I)
pub fn set_media_type<I: Into<MimeType>>(&mut self, val: I)
Sets the Repository media_type.
When used on a Link, identifies the MIME media type of the referenced resource.
When used on an Object, identifies the MIME media type of the value of the content property.
If not specified, the content property is assumed to contain text/html content.
Sourcepub fn unset_media_type(&mut self) -> Option<MimeType>
pub fn unset_media_type(&mut self) -> Option<MimeType>
Unsets the Repository media_type.
When used on a Link, identifies the MIME media type of the referenced resource.
When used on an Object, identifies the MIME media type of the value of the content property.
If not specified, the content property is assumed to contain text/html content.
Sourcepub fn with_media_type<I: Into<MimeType>>(self, val: I) -> Self
pub fn with_media_type<I: Into<MimeType>>(self, val: I) -> Self
Builder function that sets the Repository media_type.
When used on a Link, identifies the MIME media type of the referenced resource.
When used on an Object, identifies the MIME media type of the value of the content property.
If not specified, the content property is assumed to contain text/html content.
Sourcepub const fn start_time(&self) -> Option<DateTime>
pub const fn start_time(&self) -> Option<DateTime>
Gets the Repository start_time.
The date and time describing the actual or expected starting time of the object.
When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.
Sourcepub fn set_start_time<I: Into<DateTime>>(&mut self, val: I)
pub fn set_start_time<I: Into<DateTime>>(&mut self, val: I)
Sets the Repository start_time.
The date and time describing the actual or expected starting time of the object.
When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.
Sourcepub fn unset_start_time(&mut self) -> Option<DateTime>
pub fn unset_start_time(&mut self) -> Option<DateTime>
Unsets the Repository start_time.
The date and time describing the actual or expected starting time of the object.
When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.
Sourcepub fn with_start_time<I: Into<DateTime>>(self, val: I) -> Self
pub fn with_start_time<I: Into<DateTime>>(self, val: I) -> Self
Builder function that sets the Repository start_time.
The date and time describing the actual or expected starting time of the object.
When used with an Activity object, for instance, the startTime property specifies the moment the activity began or is scheduled to begin.
Sourcepub const fn end_time(&self) -> Option<DateTime>
pub const fn end_time(&self) -> Option<DateTime>
Gets the Repository end_time.
The date and time describing the actual or expected ending time of the object.
When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.
Sourcepub fn set_end_time<I: Into<DateTime>>(&mut self, val: I)
pub fn set_end_time<I: Into<DateTime>>(&mut self, val: I)
Sets the Repository end_time.
The date and time describing the actual or expected ending time of the object.
When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.
Sourcepub fn unset_end_time(&mut self) -> Option<DateTime>
pub fn unset_end_time(&mut self) -> Option<DateTime>
Unsets the Repository end_time.
The date and time describing the actual or expected ending time of the object.
When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.
Sourcepub fn with_end_time<I: Into<DateTime>>(self, val: I) -> Self
pub fn with_end_time<I: Into<DateTime>>(self, val: I) -> Self
Builder function that sets the Repository end_time.
The date and time describing the actual or expected ending time of the object.
When used with an Activity object, for instance, the endTime property specifies the moment the activity concluded or is expected to conclude.
Sourcepub const fn published(&self) -> Option<DateTime>
pub const fn published(&self) -> Option<DateTime>
Gets the Repository published.
The date and time at which the object was published.
Sourcepub fn set_published<I: Into<DateTime>>(&mut self, val: I)
pub fn set_published<I: Into<DateTime>>(&mut self, val: I)
Sets the Repository published.
The date and time at which the object was published.
Sourcepub fn unset_published(&mut self) -> Option<DateTime>
pub fn unset_published(&mut self) -> Option<DateTime>
Unsets the Repository published.
The date and time at which the object was published.
Sourcepub fn with_published<I: Into<DateTime>>(self, val: I) -> Self
pub fn with_published<I: Into<DateTime>>(self, val: I) -> Self
Builder function that sets the Repository published.
The date and time at which the object was published.
Sourcepub const fn updated(&self) -> Option<DateTime>
pub const fn updated(&self) -> Option<DateTime>
Gets the Repository updated.
The date and time at which the object was updated.
Sourcepub fn set_updated<I: Into<DateTime>>(&mut self, val: I)
pub fn set_updated<I: Into<DateTime>>(&mut self, val: I)
Sets the Repository updated.
The date and time at which the object was updated.
Sourcepub fn unset_updated(&mut self) -> Option<DateTime>
pub fn unset_updated(&mut self) -> Option<DateTime>
Unsets the Repository updated.
The date and time at which the object was updated.
Sourcepub fn with_updated<I: Into<DateTime>>(self, val: I) -> Self
pub fn with_updated<I: Into<DateTime>>(self, val: I) -> Self
Builder function that sets the Repository updated.
The date and time at which the object was updated.
Source§impl<Vocab: ActivityVocabulary> Repository<Vocab>
impl<Vocab: ActivityVocabulary> Repository<Vocab>
Sourcepub fn inbox(&self) -> Option<&Item>
pub fn inbox(&self) -> Option<&Item>
Gets the Repository inbox.
A reference to an ActivityStreams OrderedCollection comprised of all the messages received by the actor; see 5.2 Inbox.
Sourcepub fn set_inbox<I: Into<Item>>(&mut self, val: I)
pub fn set_inbox<I: Into<Item>>(&mut self, val: I)
Sets the Repository inbox.
A reference to an ActivityStreams OrderedCollection comprised of all the messages received by the actor; see 5.2 Inbox.
Sourcepub fn unset_inbox(&mut self) -> Option<Item>
pub fn unset_inbox(&mut self) -> Option<Item>
Unsets the Repository inbox.
A reference to an ActivityStreams OrderedCollection comprised of all the messages received by the actor; see 5.2 Inbox.
Sourcepub fn with_inbox<I: Into<Item>>(self, val: I) -> Self
pub fn with_inbox<I: Into<Item>>(self, val: I) -> Self
Builder function that sets the Repository inbox.
A reference to an ActivityStreams OrderedCollection comprised of all the messages received by the actor; see 5.2 Inbox.
Sourcepub fn outbox(&self) -> Option<&Item>
pub fn outbox(&self) -> Option<&Item>
Gets the Repository outbox.
An ActivityStreams OrderedCollection comprised of all the messages produced by the actor; see 5.1 Outbox.
Sourcepub fn set_outbox<I: Into<Item>>(&mut self, val: I)
pub fn set_outbox<I: Into<Item>>(&mut self, val: I)
Sets the Repository outbox.
An ActivityStreams OrderedCollection comprised of all the messages produced by the actor; see 5.1 Outbox.
Sourcepub fn unset_outbox(&mut self) -> Option<Item>
pub fn unset_outbox(&mut self) -> Option<Item>
Unsets the Repository outbox.
An ActivityStreams OrderedCollection comprised of all the messages produced by the actor; see 5.1 Outbox.
Sourcepub fn with_outbox<I: Into<Item>>(self, val: I) -> Self
pub fn with_outbox<I: Into<Item>>(self, val: I) -> Self
Builder function that sets the Repository outbox.
An ActivityStreams OrderedCollection comprised of all the messages produced by the actor; see 5.1 Outbox.
Sourcepub fn following(&self) -> Option<&Item>
pub fn following(&self) -> Option<&Item>
Gets the Repository following.
A link to an ActivityStreams collection of the actors that this actor is following; see 5.4 Following Collection.
Sourcepub fn set_following<I: Into<Item>>(&mut self, val: I)
pub fn set_following<I: Into<Item>>(&mut self, val: I)
Sets the Repository following.
A link to an ActivityStreams collection of the actors that this actor is following; see 5.4 Following Collection.
Sourcepub fn unset_following(&mut self) -> Option<Item>
pub fn unset_following(&mut self) -> Option<Item>
Unsets the Repository following.
A link to an ActivityStreams collection of the actors that this actor is following; see 5.4 Following Collection.
Sourcepub fn with_following<I: Into<Item>>(self, val: I) -> Self
pub fn with_following<I: Into<Item>>(self, val: I) -> Self
Builder function that sets the Repository following.
A link to an ActivityStreams collection of the actors that this actor is following; see 5.4 Following Collection.
Sourcepub fn followers(&self) -> Option<&Item>
pub fn followers(&self) -> Option<&Item>
Gets the Repository followers.
A link to an ActivityStreams collection of the actors that follow this actor; see 5.3 Followers Collection.
Sourcepub fn set_followers<I: Into<Item>>(&mut self, val: I)
pub fn set_followers<I: Into<Item>>(&mut self, val: I)
Sets the Repository followers.
A link to an ActivityStreams collection of the actors that follow this actor; see 5.3 Followers Collection.
Sourcepub fn unset_followers(&mut self) -> Option<Item>
pub fn unset_followers(&mut self) -> Option<Item>
Unsets the Repository followers.
A link to an ActivityStreams collection of the actors that follow this actor; see 5.3 Followers Collection.
Sourcepub fn with_followers<I: Into<Item>>(self, val: I) -> Self
pub fn with_followers<I: Into<Item>>(self, val: I) -> Self
Builder function that sets the Repository followers.
A link to an ActivityStreams collection of the actors that follow this actor; see 5.3 Followers Collection.
Sourcepub fn liked(&self) -> Option<&Item>
pub fn liked(&self) -> Option<&Item>
Gets the Repository liked.
A link to an ActivityStreams collection of objects this actor has liked; see 5.5 Liked Collection.
Sourcepub fn set_liked<I: Into<Item>>(&mut self, val: I)
pub fn set_liked<I: Into<Item>>(&mut self, val: I)
Sets the Repository liked.
A link to an ActivityStreams collection of objects this actor has liked; see 5.5 Liked Collection.
Sourcepub fn unset_liked(&mut self) -> Option<Item>
pub fn unset_liked(&mut self) -> Option<Item>
Unsets the Repository liked.
A link to an ActivityStreams collection of objects this actor has liked; see 5.5 Liked Collection.
Sourcepub fn with_liked<I: Into<Item>>(self, val: I) -> Self
pub fn with_liked<I: Into<Item>>(self, val: I) -> Self
Builder function that sets the Repository liked.
A link to an ActivityStreams collection of objects this actor has liked; see 5.5 Liked Collection.
Sourcepub fn streams(&self) -> Option<&Items>
pub fn streams(&self) -> Option<&Items>
Gets the Repository streams.
A list of supplementary Collections which may be of interest.
Sourcepub fn set_streams<I: Into<Items>>(&mut self, val: I)
pub fn set_streams<I: Into<Items>>(&mut self, val: I)
Sets the Repository streams.
A list of supplementary Collections which may be of interest.
Sourcepub fn unset_streams(&mut self) -> Option<Items>
pub fn unset_streams(&mut self) -> Option<Items>
Unsets the Repository streams.
A list of supplementary Collections which may be of interest.
Sourcepub fn with_streams<I: Into<Items>>(self, val: I) -> Self
pub fn with_streams<I: Into<Items>>(self, val: I) -> Self
Builder function that sets the Repository streams.
A list of supplementary Collections which may be of interest.
Sourcepub fn preferred_username(&self) -> Option<&Name>
pub fn preferred_username(&self) -> Option<&Name>
Gets the Repository preferred_username.
A short username which may be used to refer to the actor, with no uniqueness guarantees.
Sourcepub fn set_preferred_username<I: Into<Name>>(&mut self, val: I)
pub fn set_preferred_username<I: Into<Name>>(&mut self, val: I)
Sets the Repository preferred_username.
A short username which may be used to refer to the actor, with no uniqueness guarantees.
Sourcepub fn unset_preferred_username(&mut self) -> Option<Name>
pub fn unset_preferred_username(&mut self) -> Option<Name>
Unsets the Repository preferred_username.
A short username which may be used to refer to the actor, with no uniqueness guarantees.
Sourcepub fn with_preferred_username<I: Into<Name>>(self, val: I) -> Self
pub fn with_preferred_username<I: Into<Name>>(self, val: I) -> Self
Builder function that sets the Repository preferred_username.
A short username which may be used to refer to the actor, with no uniqueness guarantees.
Sourcepub fn endpoints(&self) -> Option<&Endpoints>
pub fn endpoints(&self) -> Option<&Endpoints>
Gets the Repository endpoints.
A json object which maps additional (typically server/domain-wide) endpoints which may be useful either for this actor or someone referencing this actor.
This mapping may be nested inside the actor document as the value or may be a link to a JSON-LD document with these properties.
Sourcepub fn set_endpoints<I: Into<Endpoints>>(&mut self, val: I)
pub fn set_endpoints<I: Into<Endpoints>>(&mut self, val: I)
Sets the Repository endpoints.
A json object which maps additional (typically server/domain-wide) endpoints which may be useful either for this actor or someone referencing this actor.
This mapping may be nested inside the actor document as the value or may be a link to a JSON-LD document with these properties.
Sourcepub fn unset_endpoints(&mut self) -> Option<Endpoints>
pub fn unset_endpoints(&mut self) -> Option<Endpoints>
Unsets the Repository endpoints.
A json object which maps additional (typically server/domain-wide) endpoints which may be useful either for this actor or someone referencing this actor.
This mapping may be nested inside the actor document as the value or may be a link to a JSON-LD document with these properties.
Sourcepub fn with_endpoints<I: Into<Endpoints>>(self, val: I) -> Self
pub fn with_endpoints<I: Into<Endpoints>>(self, val: I) -> Self
Builder function that sets the Repository endpoints.
A json object which maps additional (typically server/domain-wide) endpoints which may be useful either for this actor or someone referencing this actor.
This mapping may be nested inside the actor document as the value or may be a link to a JSON-LD document with these properties.
Sourcepub fn assertion_method(&self) -> Option<&MultikeyItems>
pub fn assertion_method(&self) -> Option<&MultikeyItems>
Gets the Repository assertion_method.
A list of public key representations following the FEP-521a specification.
Sourcepub fn set_assertion_method<I: Into<MultikeyItems>>(&mut self, val: I)
pub fn set_assertion_method<I: Into<MultikeyItems>>(&mut self, val: I)
Sets the Repository assertion_method.
A list of public key representations following the FEP-521a specification.
Sourcepub fn unset_assertion_method(&mut self) -> Option<MultikeyItems>
pub fn unset_assertion_method(&mut self) -> Option<MultikeyItems>
Unsets the Repository assertion_method.
A list of public key representations following the FEP-521a specification.
Sourcepub fn with_assertion_method<I: Into<MultikeyItems>>(self, val: I) -> Self
pub fn with_assertion_method<I: Into<MultikeyItems>>(self, val: I) -> Self
Builder function that sets the Repository assertion_method.
A list of public key representations following the FEP-521a specification.
Sourcepub fn public_key(&self) -> Option<&KeyItems>
👎Deprecated since 0.3.0: The publicKey vocabulary has been deprecated since Security Vocabulary 2.0. Users should use the assertionMethod field instead, where possible.
pub fn public_key(&self) -> Option<&KeyItems>
The publicKey vocabulary has been deprecated since Security Vocabulary 2.0. Users should use the assertionMethod field instead, where possible.
Gets the Repository public_key.
Public key used for HTTP Signatures and Linked Data Signatures.
Sourcepub fn set_public_key<I: Into<KeyItems>>(&mut self, val: I)
👎Deprecated since 0.3.0: The publicKey vocabulary has been deprecated since Security Vocabulary 2.0. Users should use the assertionMethod field instead, where possible.
pub fn set_public_key<I: Into<KeyItems>>(&mut self, val: I)
The publicKey vocabulary has been deprecated since Security Vocabulary 2.0. Users should use the assertionMethod field instead, where possible.
Sets the Repository public_key.
Public key used for HTTP Signatures and Linked Data Signatures.
Sourcepub fn unset_public_key(&mut self) -> Option<KeyItems>
👎Deprecated since 0.3.0: The publicKey vocabulary has been deprecated since Security Vocabulary 2.0. Users should use the assertionMethod field instead, where possible.
pub fn unset_public_key(&mut self) -> Option<KeyItems>
The publicKey vocabulary has been deprecated since Security Vocabulary 2.0. Users should use the assertionMethod field instead, where possible.
Unsets the Repository public_key.
Public key used for HTTP Signatures and Linked Data Signatures.
Sourcepub fn with_public_key<I: Into<KeyItems>>(self, val: I) -> Self
👎Deprecated since 0.3.0: The publicKey vocabulary has been deprecated since Security Vocabulary 2.0. Users should use the assertionMethod field instead, where possible.
pub fn with_public_key<I: Into<KeyItems>>(self, val: I) -> Self
The publicKey vocabulary has been deprecated since Security Vocabulary 2.0. Users should use the assertionMethod field instead, where possible.
Builder function that sets the Repository public_key.
Public key used for HTTP Signatures and Linked Data Signatures.
Source§impl Repository
impl Repository
Sourcepub fn clone_uri(&self) -> Option<&Iris>
pub fn clone_uri(&self) -> Option<&Iris>
Gets the Repository clone_uri.
The endpoint from which the content of the repository can be obtained via the native protocol (Git, Hg, etc.)
Sourcepub fn set_clone_uri<I: Into<Iris>>(&mut self, val: I)
pub fn set_clone_uri<I: Into<Iris>>(&mut self, val: I)
Sets the Repository clone_uri.
The endpoint from which the content of the repository can be obtained via the native protocol (Git, Hg, etc.)
Sourcepub fn unset_clone_uri(&mut self) -> Option<Iris>
pub fn unset_clone_uri(&mut self) -> Option<Iris>
Unsets the Repository clone_uri.
The endpoint from which the content of the repository can be obtained via the native protocol (Git, Hg, etc.)
Sourcepub fn with_clone_uri<I: Into<Iris>>(self, val: I) -> Self
pub fn with_clone_uri<I: Into<Iris>>(self, val: I) -> Self
Builder function that sets the Repository clone_uri.
The endpoint from which the content of the repository can be obtained via the native protocol (Git, Hg, etc.)
Sourcepub fn push_uri(&self) -> Option<&Iris>
pub fn push_uri(&self) -> Option<&Iris>
Gets the Repository push_uri.
The endpoint through which repository commits can be pushed via the native protocol.
Sourcepub fn set_push_uri<I: Into<Iris>>(&mut self, val: I)
pub fn set_push_uri<I: Into<Iris>>(&mut self, val: I)
Sets the Repository push_uri.
The endpoint through which repository commits can be pushed via the native protocol.
Sourcepub fn unset_push_uri(&mut self) -> Option<Iris>
pub fn unset_push_uri(&mut self) -> Option<Iris>
Unsets the Repository push_uri.
The endpoint through which repository commits can be pushed via the native protocol.
Sourcepub fn with_push_uri<I: Into<Iris>>(self, val: I) -> Self
pub fn with_push_uri<I: Into<Iris>>(self, val: I) -> Self
Builder function that sets the Repository push_uri.
The endpoint through which repository commits can be pushed via the native protocol.
Sourcepub fn forks(&self) -> Option<&OrderedCollectionItem>
pub fn forks(&self) -> Option<&OrderedCollectionItem>
Gets the Repository forks.
Represents repositories that are forks of this repository.
Sourcepub fn set_forks<I: Into<OrderedCollectionItem>>(&mut self, val: I)
pub fn set_forks<I: Into<OrderedCollectionItem>>(&mut self, val: I)
Sets the Repository forks.
Represents repositories that are forks of this repository.
Sourcepub fn unset_forks(&mut self) -> Option<OrderedCollectionItem>
pub fn unset_forks(&mut self) -> Option<OrderedCollectionItem>
Unsets the Repository forks.
Represents repositories that are forks of this repository.
Sourcepub fn with_forks<I: Into<OrderedCollectionItem>>(self, val: I) -> Self
pub fn with_forks<I: Into<OrderedCollectionItem>>(self, val: I) -> Self
Builder function that sets the Repository forks.
Represents repositories that are forks of this repository.
Sourcepub fn likes(&self) -> Option<&CollectionItem>
pub fn likes(&self) -> Option<&CollectionItem>
Gets the Repository likes.
Represents the Like activities, i.e. stars, that the repo received.
Sourcepub fn set_likes<I: Into<CollectionItem>>(&mut self, val: I)
pub fn set_likes<I: Into<CollectionItem>>(&mut self, val: I)
Sets the Repository likes.
Represents the Like activities, i.e. stars, that the repo received.
Sourcepub fn unset_likes(&mut self) -> Option<CollectionItem>
pub fn unset_likes(&mut self) -> Option<CollectionItem>
Unsets the Repository likes.
Represents the Like activities, i.e. stars, that the repo received.
Sourcepub fn with_likes<I: Into<CollectionItem>>(self, val: I) -> Self
pub fn with_likes<I: Into<CollectionItem>>(self, val: I) -> Self
Builder function that sets the Repository likes.
Represents the Like activities, i.e. stars, that the repo received.
Sourcepub fn moved_to(&self) -> Option<&LinkItem>
pub fn moved_to(&self) -> Option<&LinkItem>
Gets the Repository moved_to.
Represents a new location the Repository moved to, if it is archived.
Sourcepub fn set_moved_to<I: Into<LinkItem>>(&mut self, val: I)
pub fn set_moved_to<I: Into<LinkItem>>(&mut self, val: I)
Sets the Repository moved_to.
Represents a new location the Repository moved to, if it is archived.
Sourcepub fn unset_moved_to(&mut self) -> Option<LinkItem>
pub fn unset_moved_to(&mut self) -> Option<LinkItem>
Unsets the Repository moved_to.
Represents a new location the Repository moved to, if it is archived.
Sourcepub fn with_moved_to<I: Into<LinkItem>>(self, val: I) -> Self
pub fn with_moved_to<I: Into<LinkItem>>(self, val: I) -> Self
Builder function that sets the Repository moved_to.
Represents a new location the Repository moved to, if it is archived.
Sourcepub fn mirrors(&self) -> Option<&RepositoryItem>
pub fn mirrors(&self) -> Option<&RepositoryItem>
Gets the Repository mirrors.
Identifies the Repository which this Repository copies content from (i.e. what this repository is a “pull mirror” of).
Sourcepub fn set_mirrors<I: Into<RepositoryItem>>(&mut self, val: I)
pub fn set_mirrors<I: Into<RepositoryItem>>(&mut self, val: I)
Sets the Repository mirrors.
Identifies the Repository which this Repository copies content from (i.e. what this repository is a “pull mirror” of).
Sourcepub fn unset_mirrors(&mut self) -> Option<RepositoryItem>
pub fn unset_mirrors(&mut self) -> Option<RepositoryItem>
Unsets the Repository mirrors.
Identifies the Repository which this Repository copies content from (i.e. what this repository is a “pull mirror” of).
Sourcepub fn with_mirrors<I: Into<RepositoryItem>>(self, val: I) -> Self
pub fn with_mirrors<I: Into<RepositoryItem>>(self, val: I) -> Self
Builder function that sets the Repository mirrors.
Identifies the Repository which this Repository copies content from (i.e. what this repository is a “pull mirror” of).
Sourcepub fn team(&self) -> Option<&CollectionItem>
pub fn team(&self) -> Option<&CollectionItem>
Gets the Repository team.
Represents people who have push/edit access, the “collaborators” of the repository.
Specifies a Collection of actors who are working on the object, or responsible for it, or managing or administrating it, or having edit access to it.
Sourcepub fn set_team<I: Into<CollectionItem>>(&mut self, val: I)
pub fn set_team<I: Into<CollectionItem>>(&mut self, val: I)
Sets the Repository team.
Represents people who have push/edit access, the “collaborators” of the repository.
Specifies a Collection of actors who are working on the object, or responsible for it, or managing or administrating it, or having edit access to it.
Sourcepub fn unset_team(&mut self) -> Option<CollectionItem>
pub fn unset_team(&mut self) -> Option<CollectionItem>
Unsets the Repository team.
Represents people who have push/edit access, the “collaborators” of the repository.
Specifies a Collection of actors who are working on the object, or responsible for it, or managing or administrating it, or having edit access to it.
Sourcepub fn with_team<I: Into<CollectionItem>>(self, val: I) -> Self
pub fn with_team<I: Into<CollectionItem>>(self, val: I) -> Self
Builder function that sets the Repository team.
Represents people who have push/edit access, the “collaborators” of the repository.
Specifies a Collection of actors who are working on the object, or responsible for it, or managing or administrating it, or having edit access to it.
Source§impl Repository
impl Repository
Sourcepub const fn is_archived(&self) -> Option<bool>
pub const fn is_archived(&self) -> Option<bool>
Gets the Repository is_archived.
Represents whether the repo is in read-only mode.
Sourcepub fn set_is_archived<I: Into<bool>>(&mut self, val: I)
pub fn set_is_archived<I: Into<bool>>(&mut self, val: I)
Sets the Repository is_archived.
Represents whether the repo is in read-only mode.
Sourcepub fn unset_is_archived(&mut self) -> Option<bool>
pub fn unset_is_archived(&mut self) -> Option<bool>
Unsets the Repository is_archived.
Represents whether the repo is in read-only mode.
Sourcepub fn with_is_archived<I: Into<bool>>(self, val: I) -> Self
pub fn with_is_archived<I: Into<bool>>(self, val: I) -> Self
Builder function that sets the Repository is_archived.
Represents whether the repo is in read-only mode.
Trait Implementations§
Source§impl<Vocab: Clone + ActivityVocabulary> Clone for Repository<Vocab>
impl<Vocab: Clone + ActivityVocabulary> Clone for Repository<Vocab>
Source§fn clone(&self) -> Repository<Vocab>
fn clone(&self) -> Repository<Vocab>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl<Vocab: Debug + ActivityVocabulary> Debug for Repository<Vocab>
impl<Vocab: Debug + ActivityVocabulary> Debug for Repository<Vocab>
Source§impl Default for Repository
impl Default for Repository
Source§impl<'de, T: ActivityVocabulary> Deserialize<'de> for Repository<T>
impl<'de, T: ActivityVocabulary> Deserialize<'de> for Repository<T>
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Source§impl Display for Repository
impl Display for Repository
Source§impl From<Repository> for Item
impl From<Repository> for Item
Source§fn from(val: Repository) -> Self
fn from(val: Repository) -> Self
Source§impl From<Repository> for Object<VocabularyTypes>
impl From<Repository> for Object<VocabularyTypes>
Source§fn from(val: Repository<VocabularyTypes>) -> Self
fn from(val: Repository<VocabularyTypes>) -> Self
Source§impl From<Repository> for Option<Box<Item>>
impl From<Repository> for Option<Box<Item>>
Source§fn from(val: Repository) -> Self
fn from(val: Repository) -> Self
Source§impl From<Repository> for Option<Box<Items>>
impl From<Repository> for Option<Box<Items>>
Source§fn from(val: Repository) -> Self
fn from(val: Repository) -> Self
Source§impl From<Repository> for Option<Box<OrderedItems>>
impl From<Repository> for Option<Box<OrderedItems>>
Source§fn from(val: Repository) -> Self
fn from(val: Repository) -> Self
Source§impl<Vocab: PartialEq + ActivityVocabulary> PartialEq for Repository<Vocab>
impl<Vocab: PartialEq + ActivityVocabulary> PartialEq for Repository<Vocab>
Source§impl<Vocab: ActivityVocabulary> Serialize for Repository<Vocab>
impl<Vocab: ActivityVocabulary> Serialize for Repository<Vocab>
impl<Vocab: Eq + ActivityVocabulary> Eq for Repository<Vocab>
impl<Vocab: ActivityVocabulary> StructuralPartialEq for Repository<Vocab>
Auto Trait Implementations§
impl<Vocab> Freeze for Repository<Vocab>where
Vocab: Freeze,
impl<Vocab> RefUnwindSafe for Repository<Vocab>where
Vocab: RefUnwindSafe,
impl<Vocab> Send for Repository<Vocab>where
Vocab: Send,
impl<Vocab> Sync for Repository<Vocab>where
Vocab: Sync,
impl<Vocab> Unpin for Repository<Vocab>where
Vocab: Unpin,
impl<Vocab> UnsafeUnpin for Repository<Vocab>where
Vocab: UnsafeUnpin,
impl<Vocab> UnwindSafe for Repository<Vocab>where
Vocab: UnwindSafe,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more