Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type EchoArguments ¶
type EchoArguments struct {
Message string `cborgen:"message"`
}
func (*EchoArguments) MarshalCBOR ¶
func (t *EchoArguments) MarshalCBOR(w io.Writer) error
func (*EchoArguments) UnmarshalCBOR ¶
func (t *EchoArguments) UnmarshalCBOR(r io.Reader) (err error)
type EmailsListArguments ¶
type EmailsListArguments struct {
Limit uint64 `cborgen:"limit"`
}
func (*EmailsListArguments) MarshalCBOR ¶
func (t *EmailsListArguments) MarshalCBOR(w io.Writer) error
func (*EmailsListArguments) UnmarshalCBOR ¶
func (t *EmailsListArguments) UnmarshalCBOR(r io.Reader) (err error)
type MessageSendArguments ¶
type MessageSendArguments struct {
To []string `cborgen:"to"`
Subject string `cborgen:"subject"`
Message string `cborgen:"message"`
}
func (*MessageSendArguments) MarshalCBOR ¶
func (t *MessageSendArguments) MarshalCBOR(w io.Writer) error
func (*MessageSendArguments) UnmarshalCBOR ¶
func (t *MessageSendArguments) UnmarshalCBOR(r io.Reader) (err error)
type PromisedMsgSendArguments ¶
type PromisedMsgSendArguments struct {
From string `cborgen:"from"`
To promise.AwaitOK `cborgen:"to"`
Message string `cborgen:"message"`
}
func (*PromisedMsgSendArguments) MarshalCBOR ¶
func (t *PromisedMsgSendArguments) MarshalCBOR(w io.Writer) error
func (*PromisedMsgSendArguments) UnmarshalCBOR ¶
func (t *PromisedMsgSendArguments) UnmarshalCBOR(r io.Reader) (err error)
Click to show internal directories.
Click to hide internal directories.