Hide builder docs
This commit is contained in:
parent
61430f1425
commit
e7ad1f3f79
6 changed files with 0 additions and 21 deletions
|
@ -1610,7 +1610,6 @@ pub type Remove = ActorAndObjectOptOriginAndTarget<RemoveType>;
|
|||
/// future.
|
||||
#[derive(Clone, Debug, serde::Deserialize, serde::Serialize, TypedBuilder)]
|
||||
#[serde(rename_all = "camelCase")]
|
||||
#[builder(doc)]
|
||||
pub struct Activity<Kind> {
|
||||
/// Describes the result of the activity.
|
||||
///
|
||||
|
@ -1639,7 +1638,6 @@ pub struct Activity<Kind> {
|
|||
/// Activity with actor and object properties
|
||||
#[derive(Debug, Clone, serde::Deserialize, serde::Serialize, TypedBuilder)]
|
||||
#[serde(rename_all = "camelCase")]
|
||||
#[builder(doc)]
|
||||
pub struct ActorAndObject<Kind> {
|
||||
/// Describes one or more entities that either performed or are expected to perform the
|
||||
/// activity.
|
||||
|
@ -1673,7 +1671,6 @@ pub struct ActorAndObject<Kind> {
|
|||
/// typically has no defined meaning.
|
||||
#[derive(Debug, Clone, serde::Deserialize, serde::Serialize, TypedBuilder)]
|
||||
#[serde(rename_all = "camelCase")]
|
||||
#[builder(doc)]
|
||||
pub struct Arrive {
|
||||
/// Describes one or more entities that either performed or are expected to perform the
|
||||
/// activity.
|
||||
|
@ -1706,7 +1703,6 @@ pub struct Arrive {
|
|||
/// target.
|
||||
#[derive(Debug, Clone, serde::Deserialize, serde::Serialize, TypedBuilder)]
|
||||
#[serde(rename_all = "camelCase")]
|
||||
#[builder(doc)]
|
||||
pub struct Invite {
|
||||
/// Describes one or more entities that either performed or are expected to perform the
|
||||
/// activity.
|
||||
|
@ -1751,7 +1747,6 @@ pub struct Invite {
|
|||
/// If specified, the origin indicates the context from which the object was deleted.
|
||||
#[derive(Debug, Clone, serde::Deserialize, serde::Serialize, TypedBuilder)]
|
||||
#[serde(rename_all = "camelCase")]
|
||||
#[builder(doc)]
|
||||
pub struct Delete {
|
||||
/// Describes one or more entities that either performed or are expected to perform the
|
||||
/// activity.
|
||||
|
@ -1794,7 +1789,6 @@ pub struct Delete {
|
|||
/// Activity with actor, object, and optional origin and target properties
|
||||
#[derive(Debug, Clone, serde::Deserialize, serde::Serialize, TypedBuilder)]
|
||||
#[serde(rename_all = "camelCase")]
|
||||
#[builder(doc)]
|
||||
pub struct ActorAndObjectOptOriginAndTarget<Kind> {
|
||||
/// Describes one or more entities that either performed or are expected to perform the
|
||||
/// activity.
|
||||
|
@ -1850,7 +1844,6 @@ pub struct ActorAndObjectOptOriginAndTarget<Kind> {
|
|||
/// Activity with actor, object, and optional target properties
|
||||
#[derive(Debug, Clone, serde::Deserialize, serde::Serialize, TypedBuilder)]
|
||||
#[serde(rename_all = "camelCase")]
|
||||
#[builder(doc)]
|
||||
pub struct ActorAndObjectOptTarget<Kind> {
|
||||
/// Describes one or more entities that either performed or are expected to perform the
|
||||
/// activity.
|
||||
|
@ -1897,7 +1890,6 @@ pub struct ActorAndObjectOptTarget<Kind> {
|
|||
/// origin are not specified, either can be determined by context.
|
||||
#[derive(Debug, Clone, serde::Deserialize, serde::Serialize, TypedBuilder)]
|
||||
#[serde(rename_all = "camelCase")]
|
||||
#[builder(doc)]
|
||||
pub struct Travel {
|
||||
/// Describes one or more entities that either performed or are expected to perform the
|
||||
/// activity.
|
||||
|
@ -1950,7 +1942,6 @@ pub struct Travel {
|
|||
/// Question object MUST NOT have both properties.
|
||||
#[derive(Clone, Debug, serde::Deserialize, serde::Serialize, TypedBuilder)]
|
||||
#[serde(rename_all = "camelCase")]
|
||||
#[builder(doc)]
|
||||
pub struct Question {
|
||||
/// Identifies an exclusive option for a Question.
|
||||
///
|
||||
|
|
|
@ -642,7 +642,6 @@ pub type Service = Object<ServiceType>;
|
|||
/// example, to use a vcard:Individual as an Actor MUST also identify that Actor as a Person.
|
||||
#[derive(Clone, Debug, serde::Deserialize, serde::Serialize, TypedBuilder)]
|
||||
#[serde(rename_all = "camelCase")]
|
||||
#[builder(doc)]
|
||||
pub struct ApActor<Inner> {
|
||||
/// A reference to an [ActivityStreams] OrderedCollection comprised of all the messages received by the actor.
|
||||
///
|
||||
|
|
|
@ -741,7 +741,6 @@ pub struct AnyBase(Either<IdOrBase, XsdString>);
|
|||
/// implemented a type.
|
||||
#[derive(Clone, Debug, serde::Deserialize, serde::Serialize, TypedBuilder)]
|
||||
#[serde(rename_all = "camelCase")]
|
||||
#[builder(doc)]
|
||||
pub struct Base<Kind> {
|
||||
/// Identifies the context within which the object exists or an activity was performed.
|
||||
///
|
||||
|
|
|
@ -937,7 +937,6 @@ pub type UnorderedCollectionPage = CollectionPage<CollectionPageType>;
|
|||
/// are represented using the orderedItems property.
|
||||
#[derive(Debug, Clone, serde::Deserialize, serde::Serialize, TypedBuilder)]
|
||||
#[serde(rename_all = "camelCase")]
|
||||
#[builder(doc)]
|
||||
pub struct Collection<Kind> {
|
||||
/// Identifies the items contained in a collection. The items might be ordered or unordered.
|
||||
///
|
||||
|
@ -996,7 +995,6 @@ pub struct Collection<Kind> {
|
|||
/// distinct subsets or "pages". A page is identified using the CollectionPage type.
|
||||
#[derive(Debug, Clone, serde::Deserialize, serde::Serialize, TypedBuilder)]
|
||||
#[serde(rename_all = "camelCase")]
|
||||
#[builder(doc)]
|
||||
pub struct CollectionPage<Kind> {
|
||||
/// Identifies the Collection to which a CollectionPage objects items belong.
|
||||
///
|
||||
|
@ -1030,7 +1028,6 @@ pub struct CollectionPage<Kind> {
|
|||
/// Used to represent ordered subsets of items from an OrderedCollection.
|
||||
#[derive(Debug, Clone, serde::Deserialize, serde::Serialize, TypedBuilder)]
|
||||
#[serde(rename_all = "camelCase")]
|
||||
#[builder(doc)]
|
||||
pub struct OrderedCollectionPage {
|
||||
/// A non-negative integer value identifying the relative position within the logical view of a strictly ordered collection.
|
||||
///
|
||||
|
|
|
@ -488,7 +488,6 @@ pub type Mention = Link<MentionType>;
|
|||
/// three ways of describing such references.
|
||||
#[derive(Clone, Debug, serde::Deserialize, serde::Serialize, TypedBuilder)]
|
||||
#[serde(rename_all = "camelCase")]
|
||||
#[builder(doc)]
|
||||
pub struct Link<Kind> {
|
||||
/// The target resource pointed to by a Link.
|
||||
///
|
||||
|
|
|
@ -4252,7 +4252,6 @@ pub type Video = Object<VideoType>;
|
|||
/// Collection and OrderedCollection.
|
||||
#[derive(Clone, Debug, serde::Deserialize, serde::Serialize, TypedBuilder)]
|
||||
#[serde(rename_all = "camelCase")]
|
||||
#[builder(doc)]
|
||||
pub struct Object<Kind> {
|
||||
/// Identifies a resource attached or related to an object that potentially requires special
|
||||
/// handling.
|
||||
|
@ -4472,7 +4471,6 @@ pub struct Object<Kind> {
|
|||
/// Define activitypub properties for the Object type as described by the Activity Pub vocabulary.
|
||||
#[derive(Clone, Debug, serde::Deserialize, serde::Serialize, TypedBuilder)]
|
||||
#[serde(rename_all = "camelCase")]
|
||||
#[builder(doc)]
|
||||
pub struct ApObject<Inner> {
|
||||
/// This is a list of all Announce activities with this object as the object property, added as
|
||||
/// a side effect.
|
||||
|
@ -4551,7 +4549,6 @@ pub struct ApObject<Inner> {
|
|||
/// mechanisms for describing locations, consuming implementations that support the Place object
|
||||
/// MUST support the use of these properties.
|
||||
#[derive(Clone, Debug, serde::Deserialize, serde::Serialize, TypedBuilder)]
|
||||
#[builder(doc)]
|
||||
pub struct Place {
|
||||
/// Indicates the accuracy of position coordinates on a Place objects.
|
||||
///
|
||||
|
@ -4621,7 +4618,6 @@ pub struct Place {
|
|||
///
|
||||
/// The describes property is used to reference the object being described by the profile.
|
||||
#[derive(Clone, Debug, serde::Deserialize, serde::Serialize, TypedBuilder)]
|
||||
#[builder(doc)]
|
||||
pub struct Profile {
|
||||
/// On a Profile object, the describes property identifies the object described by the Profile.
|
||||
///
|
||||
|
@ -4651,7 +4647,6 @@ pub struct Profile {
|
|||
/// user, Sally, with direct relationships to users Joe and Jane. Sally follows Joe's updates while
|
||||
/// Sally and Jane have a mutual relationship.
|
||||
#[derive(Clone, Debug, serde::Deserialize, serde::Serialize, TypedBuilder)]
|
||||
#[builder(doc)]
|
||||
pub struct Relationship {
|
||||
/// On a Relationship object, the subject property identifies one of the connected individuals.
|
||||
///
|
||||
|
@ -4691,7 +4686,6 @@ pub struct Relationship {
|
|||
/// It can be used in Collections to signify that there used to be an object at this position, but
|
||||
/// it has been deleted.
|
||||
#[derive(Clone, Debug, serde::Deserialize, serde::Serialize, TypedBuilder)]
|
||||
#[builder(doc)]
|
||||
pub struct Tombstone {
|
||||
/// On a Tombstone object, the formerType property identifies the type of the object that was
|
||||
/// deleted.
|
||||
|
|
Loading…
Reference in a new issue