12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127 |
- // Code generated by capnpc-go. DO NOT EDIT.
- package protocol
- import (
- math "math"
- capnp "zombiezen.com/go/capnproto2"
- text "zombiezen.com/go/capnproto2/encoding/text"
- schemas "zombiezen.com/go/capnproto2/schemas"
- )
- type Film struct{ capnp.Struct }
- // Film_TypeID is the unique identifier for the type Film.
- const Film_TypeID = 0x8662baafda730202
- func NewFilm(s *capnp.Segment) (Film, error) {
- st, err := capnp.NewStruct(s, capnp.ObjectSize{DataSize: 32, PointerCount: 11})
- return Film{st}, err
- }
- func NewRootFilm(s *capnp.Segment) (Film, error) {
- st, err := capnp.NewRootStruct(s, capnp.ObjectSize{DataSize: 32, PointerCount: 11})
- return Film{st}, err
- }
- func ReadRootFilm(msg *capnp.Message) (Film, error) {
- root, err := msg.RootPtr()
- return Film{root.Struct()}, err
- }
- func (s Film) String() string {
- str, _ := text.Marshal(0x8662baafda730202, s.Struct)
- return str
- }
- func (s Film) Id() uint64 {
- return s.Struct.Uint64(0)
- }
- func (s Film) SetId(v uint64) {
- s.Struct.SetUint64(0, v)
- }
- func (s Film) Title() (string, error) {
- p, err := s.Struct.Ptr(0)
- return p.Text(), err
- }
- func (s Film) HasTitle() bool {
- p, err := s.Struct.Ptr(0)
- return p.IsValid() || err != nil
- }
- func (s Film) TitleBytes() ([]byte, error) {
- p, err := s.Struct.Ptr(0)
- return p.TextBytes(), err
- }
- func (s Film) SetTitle(v string) error {
- return s.Struct.SetText(0, v)
- }
- func (s Film) Genres() (capnp.TextList, error) {
- p, err := s.Struct.Ptr(1)
- return capnp.TextList{List: p.List()}, err
- }
- func (s Film) HasGenres() bool {
- p, err := s.Struct.Ptr(1)
- return p.IsValid() || err != nil
- }
- func (s Film) SetGenres(v capnp.TextList) error {
- return s.Struct.SetPtr(1, v.List.ToPtr())
- }
- // NewGenres sets the genres field to a newly
- // allocated capnp.TextList, preferring placement in s's segment.
- func (s Film) NewGenres(n int32) (capnp.TextList, error) {
- l, err := capnp.NewTextList(s.Struct.Segment(), n)
- if err != nil {
- return capnp.TextList{}, err
- }
- err = s.Struct.SetPtr(1, l.List.ToPtr())
- return l, err
- }
- func (s Film) ReleaseDate() (Film_Date, error) {
- p, err := s.Struct.Ptr(2)
- return Film_Date{Struct: p.Struct()}, err
- }
- func (s Film) HasReleaseDate() bool {
- p, err := s.Struct.Ptr(2)
- return p.IsValid() || err != nil
- }
- func (s Film) SetReleaseDate(v Film_Date) error {
- return s.Struct.SetPtr(2, v.Struct.ToPtr())
- }
- // NewReleaseDate sets the releaseDate field to a newly
- // allocated Film_Date struct, preferring placement in s's segment.
- func (s Film) NewReleaseDate() (Film_Date, error) {
- ss, err := NewFilm_Date(s.Struct.Segment())
- if err != nil {
- return Film_Date{}, err
- }
- err = s.Struct.SetPtr(2, ss.Struct.ToPtr())
- return ss, err
- }
- func (s Film) OriginalTitle() (string, error) {
- p, err := s.Struct.Ptr(3)
- return p.Text(), err
- }
- func (s Film) HasOriginalTitle() bool {
- p, err := s.Struct.Ptr(3)
- return p.IsValid() || err != nil
- }
- func (s Film) OriginalTitleBytes() ([]byte, error) {
- p, err := s.Struct.Ptr(3)
- return p.TextBytes(), err
- }
- func (s Film) SetOriginalTitle(v string) error {
- return s.Struct.SetText(3, v)
- }
- func (s Film) Overview() (string, error) {
- p, err := s.Struct.Ptr(4)
- return p.Text(), err
- }
- func (s Film) HasOverview() bool {
- p, err := s.Struct.Ptr(4)
- return p.IsValid() || err != nil
- }
- func (s Film) OverviewBytes() ([]byte, error) {
- p, err := s.Struct.Ptr(4)
- return p.TextBytes(), err
- }
- func (s Film) SetOverview(v string) error {
- return s.Struct.SetText(4, v)
- }
- func (s Film) Tagline() (string, error) {
- p, err := s.Struct.Ptr(5)
- return p.Text(), err
- }
- func (s Film) HasTagline() bool {
- p, err := s.Struct.Ptr(5)
- return p.IsValid() || err != nil
- }
- func (s Film) TaglineBytes() ([]byte, error) {
- p, err := s.Struct.Ptr(5)
- return p.TextBytes(), err
- }
- func (s Film) SetTagline(v string) error {
- return s.Struct.SetText(5, v)
- }
- func (s Film) Runtime() uint16 {
- return s.Struct.Uint16(8)
- }
- func (s Film) SetRuntime(v uint16) {
- s.Struct.SetUint16(8, v)
- }
- func (s Film) IsAdult() bool {
- return s.Struct.Bit(80)
- }
- func (s Film) SetIsAdult(v bool) {
- s.Struct.SetBit(80, v)
- }
- func (s Film) Mark() float32 {
- return math.Float32frombits(s.Struct.Uint32(12))
- }
- func (s Film) SetMark(v float32) {
- s.Struct.SetUint32(12, math.Float32bits(v))
- }
- func (s Film) VoteCount() uint64 {
- return s.Struct.Uint64(16)
- }
- func (s Film) SetVoteCount(v uint64) {
- s.Struct.SetUint64(16, v)
- }
- func (s Film) Status() Film_Status {
- return Film_Status(s.Struct.Uint16(24))
- }
- func (s Film) SetStatus(v Film_Status) {
- s.Struct.SetUint16(24, uint16(v))
- }
- func (s Film) PosterPath() (string, error) {
- p, err := s.Struct.Ptr(6)
- return p.Text(), err
- }
- func (s Film) HasPosterPath() bool {
- p, err := s.Struct.Ptr(6)
- return p.IsValid() || err != nil
- }
- func (s Film) PosterPathBytes() ([]byte, error) {
- p, err := s.Struct.Ptr(6)
- return p.TextBytes(), err
- }
- func (s Film) SetPosterPath(v string) error {
- return s.Struct.SetText(6, v)
- }
- func (s Film) BackdropPath() (string, error) {
- p, err := s.Struct.Ptr(7)
- return p.Text(), err
- }
- func (s Film) HasBackdropPath() bool {
- p, err := s.Struct.Ptr(7)
- return p.IsValid() || err != nil
- }
- func (s Film) BackdropPathBytes() ([]byte, error) {
- p, err := s.Struct.Ptr(7)
- return p.TextBytes(), err
- }
- func (s Film) SetBackdropPath(v string) error {
- return s.Struct.SetText(7, v)
- }
- func (s Film) Collection() (Film_Collection, error) {
- p, err := s.Struct.Ptr(8)
- return Film_Collection{Struct: p.Struct()}, err
- }
- func (s Film) HasCollection() bool {
- p, err := s.Struct.Ptr(8)
- return p.IsValid() || err != nil
- }
- func (s Film) SetCollection(v Film_Collection) error {
- return s.Struct.SetPtr(8, v.Struct.ToPtr())
- }
- // NewCollection sets the collection field to a newly
- // allocated Film_Collection struct, preferring placement in s's segment.
- func (s Film) NewCollection() (Film_Collection, error) {
- ss, err := NewFilm_Collection(s.Struct.Segment())
- if err != nil {
- return Film_Collection{}, err
- }
- err = s.Struct.SetPtr(8, ss.Struct.ToPtr())
- return ss, err
- }
- func (s Film) Cast() (Film_Character_List, error) {
- p, err := s.Struct.Ptr(9)
- return Film_Character_List{List: p.List()}, err
- }
- func (s Film) HasCast() bool {
- p, err := s.Struct.Ptr(9)
- return p.IsValid() || err != nil
- }
- func (s Film) SetCast(v Film_Character_List) error {
- return s.Struct.SetPtr(9, v.List.ToPtr())
- }
- // NewCast sets the cast field to a newly
- // allocated Film_Character_List, preferring placement in s's segment.
- func (s Film) NewCast(n int32) (Film_Character_List, error) {
- l, err := NewFilm_Character_List(s.Struct.Segment(), n)
- if err != nil {
- return Film_Character_List{}, err
- }
- err = s.Struct.SetPtr(9, l.List.ToPtr())
- return l, err
- }
- func (s Film) Crew() (Film_CrewMember_List, error) {
- p, err := s.Struct.Ptr(10)
- return Film_CrewMember_List{List: p.List()}, err
- }
- func (s Film) HasCrew() bool {
- p, err := s.Struct.Ptr(10)
- return p.IsValid() || err != nil
- }
- func (s Film) SetCrew(v Film_CrewMember_List) error {
- return s.Struct.SetPtr(10, v.List.ToPtr())
- }
- // NewCrew sets the crew field to a newly
- // allocated Film_CrewMember_List, preferring placement in s's segment.
- func (s Film) NewCrew(n int32) (Film_CrewMember_List, error) {
- l, err := NewFilm_CrewMember_List(s.Struct.Segment(), n)
- if err != nil {
- return Film_CrewMember_List{}, err
- }
- err = s.Struct.SetPtr(10, l.List.ToPtr())
- return l, err
- }
- // Film_List is a list of Film.
- type Film_List struct{ capnp.List }
- // NewFilm creates a new list of Film.
- func NewFilm_List(s *capnp.Segment, sz int32) (Film_List, error) {
- l, err := capnp.NewCompositeList(s, capnp.ObjectSize{DataSize: 32, PointerCount: 11}, sz)
- return Film_List{l}, err
- }
- func (s Film_List) At(i int) Film { return Film{s.List.Struct(i)} }
- func (s Film_List) Set(i int, v Film) error { return s.List.SetStruct(i, v.Struct) }
- func (s Film_List) String() string {
- str, _ := text.MarshalList(0x8662baafda730202, s.List)
- return str
- }
- // Film_Promise is a wrapper for a Film promised by a client call.
- type Film_Promise struct{ *capnp.Pipeline }
- func (p Film_Promise) Struct() (Film, error) {
- s, err := p.Pipeline.Struct()
- return Film{s}, err
- }
- func (p Film_Promise) ReleaseDate() Film_Date_Promise {
- return Film_Date_Promise{Pipeline: p.Pipeline.GetPipeline(2)}
- }
- func (p Film_Promise) Collection() Film_Collection_Promise {
- return Film_Collection_Promise{Pipeline: p.Pipeline.GetPipeline(8)}
- }
- type Film_Date struct{ capnp.Struct }
- // Film_Date_TypeID is the unique identifier for the type Film_Date.
- const Film_Date_TypeID = 0xc1264952b8db1201
- func NewFilm_Date(s *capnp.Segment) (Film_Date, error) {
- st, err := capnp.NewStruct(s, capnp.ObjectSize{DataSize: 8, PointerCount: 0})
- return Film_Date{st}, err
- }
- func NewRootFilm_Date(s *capnp.Segment) (Film_Date, error) {
- st, err := capnp.NewRootStruct(s, capnp.ObjectSize{DataSize: 8, PointerCount: 0})
- return Film_Date{st}, err
- }
- func ReadRootFilm_Date(msg *capnp.Message) (Film_Date, error) {
- root, err := msg.RootPtr()
- return Film_Date{root.Struct()}, err
- }
- func (s Film_Date) String() string {
- str, _ := text.Marshal(0xc1264952b8db1201, s.Struct)
- return str
- }
- func (s Film_Date) Year() int16 {
- return int16(s.Struct.Uint16(0))
- }
- func (s Film_Date) SetYear(v int16) {
- s.Struct.SetUint16(0, uint16(v))
- }
- func (s Film_Date) Month() uint8 {
- return s.Struct.Uint8(2)
- }
- func (s Film_Date) SetMonth(v uint8) {
- s.Struct.SetUint8(2, v)
- }
- func (s Film_Date) Day() uint8 {
- return s.Struct.Uint8(3)
- }
- func (s Film_Date) SetDay(v uint8) {
- s.Struct.SetUint8(3, v)
- }
- // Film_Date_List is a list of Film_Date.
- type Film_Date_List struct{ capnp.List }
- // NewFilm_Date creates a new list of Film_Date.
- func NewFilm_Date_List(s *capnp.Segment, sz int32) (Film_Date_List, error) {
- l, err := capnp.NewCompositeList(s, capnp.ObjectSize{DataSize: 8, PointerCount: 0}, sz)
- return Film_Date_List{l}, err
- }
- func (s Film_Date_List) At(i int) Film_Date { return Film_Date{s.List.Struct(i)} }
- func (s Film_Date_List) Set(i int, v Film_Date) error { return s.List.SetStruct(i, v.Struct) }
- func (s Film_Date_List) String() string {
- str, _ := text.MarshalList(0xc1264952b8db1201, s.List)
- return str
- }
- // Film_Date_Promise is a wrapper for a Film_Date promised by a client call.
- type Film_Date_Promise struct{ *capnp.Pipeline }
- func (p Film_Date_Promise) Struct() (Film_Date, error) {
- s, err := p.Pipeline.Struct()
- return Film_Date{s}, err
- }
- type Film_Status uint16
- // Film_Status_TypeID is the unique identifier for the type Film_Status.
- const Film_Status_TypeID = 0xbacdba448901b941
- // Values of Film_Status.
- const (
- Film_Status_rumored Film_Status = 0
- Film_Status_planned Film_Status = 1
- Film_Status_inProduction Film_Status = 2
- Film_Status_postProduction Film_Status = 3
- Film_Status_released Film_Status = 4
- Film_Status_cancelled Film_Status = 5
- )
- // String returns the enum's constant name.
- func (c Film_Status) String() string {
- switch c {
- case Film_Status_rumored:
- return "Rumored"
- case Film_Status_planned:
- return "Planned"
- case Film_Status_inProduction:
- return "In Production"
- case Film_Status_postProduction:
- return "Post Production"
- case Film_Status_released:
- return "Released"
- case Film_Status_cancelled:
- return "Cancelled"
- default:
- return ""
- }
- }
- // Film_StatusFromString returns the enum value with a name,
- // or the zero value if there's no such value.
- func Film_StatusFromString(c string) Film_Status {
- switch c {
- case "Rumored":
- return Film_Status_rumored
- case "Planned":
- return Film_Status_planned
- case "In Production":
- return Film_Status_inProduction
- case "Post Production":
- return Film_Status_postProduction
- case "Released":
- return Film_Status_released
- case "Cancelled":
- return Film_Status_cancelled
- default:
- return 0
- }
- }
- type Film_Status_List struct{ capnp.List }
- func NewFilm_Status_List(s *capnp.Segment, sz int32) (Film_Status_List, error) {
- l, err := capnp.NewUInt16List(s, sz)
- return Film_Status_List{l.List}, err
- }
- func (l Film_Status_List) At(i int) Film_Status {
- ul := capnp.UInt16List{List: l.List}
- return Film_Status(ul.At(i))
- }
- func (l Film_Status_List) Set(i int, v Film_Status) {
- ul := capnp.UInt16List{List: l.List}
- ul.Set(i, uint16(v))
- }
- type Film_Collection struct{ capnp.Struct }
- // Film_Collection_TypeID is the unique identifier for the type Film_Collection.
- const Film_Collection_TypeID = 0xd4e4ef9e83a4bc53
- func NewFilm_Collection(s *capnp.Segment) (Film_Collection, error) {
- st, err := capnp.NewStruct(s, capnp.ObjectSize{DataSize: 0, PointerCount: 2})
- return Film_Collection{st}, err
- }
- func NewRootFilm_Collection(s *capnp.Segment) (Film_Collection, error) {
- st, err := capnp.NewRootStruct(s, capnp.ObjectSize{DataSize: 0, PointerCount: 2})
- return Film_Collection{st}, err
- }
- func ReadRootFilm_Collection(msg *capnp.Message) (Film_Collection, error) {
- root, err := msg.RootPtr()
- return Film_Collection{root.Struct()}, err
- }
- func (s Film_Collection) String() string {
- str, _ := text.Marshal(0xd4e4ef9e83a4bc53, s.Struct)
- return str
- }
- func (s Film_Collection) Name() (string, error) {
- p, err := s.Struct.Ptr(0)
- return p.Text(), err
- }
- func (s Film_Collection) HasName() bool {
- p, err := s.Struct.Ptr(0)
- return p.IsValid() || err != nil
- }
- func (s Film_Collection) NameBytes() ([]byte, error) {
- p, err := s.Struct.Ptr(0)
- return p.TextBytes(), err
- }
- func (s Film_Collection) SetName(v string) error {
- return s.Struct.SetText(0, v)
- }
- func (s Film_Collection) Parts() (Film_Collection_CollectionPart_List, error) {
- p, err := s.Struct.Ptr(1)
- return Film_Collection_CollectionPart_List{List: p.List()}, err
- }
- func (s Film_Collection) HasParts() bool {
- p, err := s.Struct.Ptr(1)
- return p.IsValid() || err != nil
- }
- func (s Film_Collection) SetParts(v Film_Collection_CollectionPart_List) error {
- return s.Struct.SetPtr(1, v.List.ToPtr())
- }
- // NewParts sets the parts field to a newly
- // allocated Film_Collection_CollectionPart_List, preferring placement in s's segment.
- func (s Film_Collection) NewParts(n int32) (Film_Collection_CollectionPart_List, error) {
- l, err := NewFilm_Collection_CollectionPart_List(s.Struct.Segment(), n)
- if err != nil {
- return Film_Collection_CollectionPart_List{}, err
- }
- err = s.Struct.SetPtr(1, l.List.ToPtr())
- return l, err
- }
- // Film_Collection_List is a list of Film_Collection.
- type Film_Collection_List struct{ capnp.List }
- // NewFilm_Collection creates a new list of Film_Collection.
- func NewFilm_Collection_List(s *capnp.Segment, sz int32) (Film_Collection_List, error) {
- l, err := capnp.NewCompositeList(s, capnp.ObjectSize{DataSize: 0, PointerCount: 2}, sz)
- return Film_Collection_List{l}, err
- }
- func (s Film_Collection_List) At(i int) Film_Collection { return Film_Collection{s.List.Struct(i)} }
- func (s Film_Collection_List) Set(i int, v Film_Collection) error {
- return s.List.SetStruct(i, v.Struct)
- }
- func (s Film_Collection_List) String() string {
- str, _ := text.MarshalList(0xd4e4ef9e83a4bc53, s.List)
- return str
- }
- // Film_Collection_Promise is a wrapper for a Film_Collection promised by a client call.
- type Film_Collection_Promise struct{ *capnp.Pipeline }
- func (p Film_Collection_Promise) Struct() (Film_Collection, error) {
- s, err := p.Pipeline.Struct()
- return Film_Collection{s}, err
- }
- type Film_Collection_CollectionPart struct{ capnp.Struct }
- // Film_Collection_CollectionPart_TypeID is the unique identifier for the type Film_Collection_CollectionPart.
- const Film_Collection_CollectionPart_TypeID = 0xa0d6cbb1ccac3e25
- func NewFilm_Collection_CollectionPart(s *capnp.Segment) (Film_Collection_CollectionPart, error) {
- st, err := capnp.NewStruct(s, capnp.ObjectSize{DataSize: 8, PointerCount: 3})
- return Film_Collection_CollectionPart{st}, err
- }
- func NewRootFilm_Collection_CollectionPart(s *capnp.Segment) (Film_Collection_CollectionPart, error) {
- st, err := capnp.NewRootStruct(s, capnp.ObjectSize{DataSize: 8, PointerCount: 3})
- return Film_Collection_CollectionPart{st}, err
- }
- func ReadRootFilm_Collection_CollectionPart(msg *capnp.Message) (Film_Collection_CollectionPart, error) {
- root, err := msg.RootPtr()
- return Film_Collection_CollectionPart{root.Struct()}, err
- }
- func (s Film_Collection_CollectionPart) String() string {
- str, _ := text.Marshal(0xa0d6cbb1ccac3e25, s.Struct)
- return str
- }
- func (s Film_Collection_CollectionPart) Id() uint64 {
- return s.Struct.Uint64(0)
- }
- func (s Film_Collection_CollectionPart) SetId(v uint64) {
- s.Struct.SetUint64(0, v)
- }
- func (s Film_Collection_CollectionPart) Title() (string, error) {
- p, err := s.Struct.Ptr(0)
- return p.Text(), err
- }
- func (s Film_Collection_CollectionPart) HasTitle() bool {
- p, err := s.Struct.Ptr(0)
- return p.IsValid() || err != nil
- }
- func (s Film_Collection_CollectionPart) TitleBytes() ([]byte, error) {
- p, err := s.Struct.Ptr(0)
- return p.TextBytes(), err
- }
- func (s Film_Collection_CollectionPart) SetTitle(v string) error {
- return s.Struct.SetText(0, v)
- }
- func (s Film_Collection_CollectionPart) ReleaseDate() (Film_Date, error) {
- p, err := s.Struct.Ptr(1)
- return Film_Date{Struct: p.Struct()}, err
- }
- func (s Film_Collection_CollectionPart) HasReleaseDate() bool {
- p, err := s.Struct.Ptr(1)
- return p.IsValid() || err != nil
- }
- func (s Film_Collection_CollectionPart) SetReleaseDate(v Film_Date) error {
- return s.Struct.SetPtr(1, v.Struct.ToPtr())
- }
- // NewReleaseDate sets the releaseDate field to a newly
- // allocated Film_Date struct, preferring placement in s's segment.
- func (s Film_Collection_CollectionPart) NewReleaseDate() (Film_Date, error) {
- ss, err := NewFilm_Date(s.Struct.Segment())
- if err != nil {
- return Film_Date{}, err
- }
- err = s.Struct.SetPtr(1, ss.Struct.ToPtr())
- return ss, err
- }
- func (s Film_Collection_CollectionPart) PosterPath() (string, error) {
- p, err := s.Struct.Ptr(2)
- return p.Text(), err
- }
- func (s Film_Collection_CollectionPart) HasPosterPath() bool {
- p, err := s.Struct.Ptr(2)
- return p.IsValid() || err != nil
- }
- func (s Film_Collection_CollectionPart) PosterPathBytes() ([]byte, error) {
- p, err := s.Struct.Ptr(2)
- return p.TextBytes(), err
- }
- func (s Film_Collection_CollectionPart) SetPosterPath(v string) error {
- return s.Struct.SetText(2, v)
- }
- // Film_Collection_CollectionPart_List is a list of Film_Collection_CollectionPart.
- type Film_Collection_CollectionPart_List struct{ capnp.List }
- // NewFilm_Collection_CollectionPart creates a new list of Film_Collection_CollectionPart.
- func NewFilm_Collection_CollectionPart_List(s *capnp.Segment, sz int32) (Film_Collection_CollectionPart_List, error) {
- l, err := capnp.NewCompositeList(s, capnp.ObjectSize{DataSize: 8, PointerCount: 3}, sz)
- return Film_Collection_CollectionPart_List{l}, err
- }
- func (s Film_Collection_CollectionPart_List) At(i int) Film_Collection_CollectionPart {
- return Film_Collection_CollectionPart{s.List.Struct(i)}
- }
- func (s Film_Collection_CollectionPart_List) Set(i int, v Film_Collection_CollectionPart) error {
- return s.List.SetStruct(i, v.Struct)
- }
- func (s Film_Collection_CollectionPart_List) String() string {
- str, _ := text.MarshalList(0xa0d6cbb1ccac3e25, s.List)
- return str
- }
- // Film_Collection_CollectionPart_Promise is a wrapper for a Film_Collection_CollectionPart promised by a client call.
- type Film_Collection_CollectionPart_Promise struct{ *capnp.Pipeline }
- func (p Film_Collection_CollectionPart_Promise) Struct() (Film_Collection_CollectionPart, error) {
- s, err := p.Pipeline.Struct()
- return Film_Collection_CollectionPart{s}, err
- }
- func (p Film_Collection_CollectionPart_Promise) ReleaseDate() Film_Date_Promise {
- return Film_Date_Promise{Pipeline: p.Pipeline.GetPipeline(1)}
- }
- type Film_Character struct{ capnp.Struct }
- // Film_Character_TypeID is the unique identifier for the type Film_Character.
- const Film_Character_TypeID = 0xfc58a269203af0a8
- func NewFilm_Character(s *capnp.Segment) (Film_Character, error) {
- st, err := capnp.NewStruct(s, capnp.ObjectSize{DataSize: 0, PointerCount: 2})
- return Film_Character{st}, err
- }
- func NewRootFilm_Character(s *capnp.Segment) (Film_Character, error) {
- st, err := capnp.NewRootStruct(s, capnp.ObjectSize{DataSize: 0, PointerCount: 2})
- return Film_Character{st}, err
- }
- func ReadRootFilm_Character(msg *capnp.Message) (Film_Character, error) {
- root, err := msg.RootPtr()
- return Film_Character{root.Struct()}, err
- }
- func (s Film_Character) String() string {
- str, _ := text.Marshal(0xfc58a269203af0a8, s.Struct)
- return str
- }
- func (s Film_Character) Person() (Person, error) {
- p, err := s.Struct.Ptr(0)
- return Person{Struct: p.Struct()}, err
- }
- func (s Film_Character) HasPerson() bool {
- p, err := s.Struct.Ptr(0)
- return p.IsValid() || err != nil
- }
- func (s Film_Character) SetPerson(v Person) error {
- return s.Struct.SetPtr(0, v.Struct.ToPtr())
- }
- // NewPerson sets the person field to a newly
- // allocated Person struct, preferring placement in s's segment.
- func (s Film_Character) NewPerson() (Person, error) {
- ss, err := NewPerson(s.Struct.Segment())
- if err != nil {
- return Person{}, err
- }
- err = s.Struct.SetPtr(0, ss.Struct.ToPtr())
- return ss, err
- }
- func (s Film_Character) Name() (string, error) {
- p, err := s.Struct.Ptr(1)
- return p.Text(), err
- }
- func (s Film_Character) HasName() bool {
- p, err := s.Struct.Ptr(1)
- return p.IsValid() || err != nil
- }
- func (s Film_Character) NameBytes() ([]byte, error) {
- p, err := s.Struct.Ptr(1)
- return p.TextBytes(), err
- }
- func (s Film_Character) SetName(v string) error {
- return s.Struct.SetText(1, v)
- }
- // Film_Character_List is a list of Film_Character.
- type Film_Character_List struct{ capnp.List }
- // NewFilm_Character creates a new list of Film_Character.
- func NewFilm_Character_List(s *capnp.Segment, sz int32) (Film_Character_List, error) {
- l, err := capnp.NewCompositeList(s, capnp.ObjectSize{DataSize: 0, PointerCount: 2}, sz)
- return Film_Character_List{l}, err
- }
- func (s Film_Character_List) At(i int) Film_Character { return Film_Character{s.List.Struct(i)} }
- func (s Film_Character_List) Set(i int, v Film_Character) error { return s.List.SetStruct(i, v.Struct) }
- func (s Film_Character_List) String() string {
- str, _ := text.MarshalList(0xfc58a269203af0a8, s.List)
- return str
- }
- // Film_Character_Promise is a wrapper for a Film_Character promised by a client call.
- type Film_Character_Promise struct{ *capnp.Pipeline }
- func (p Film_Character_Promise) Struct() (Film_Character, error) {
- s, err := p.Pipeline.Struct()
- return Film_Character{s}, err
- }
- func (p Film_Character_Promise) Person() Person_Promise {
- return Person_Promise{Pipeline: p.Pipeline.GetPipeline(0)}
- }
- type Film_CrewMember struct{ capnp.Struct }
- // Film_CrewMember_TypeID is the unique identifier for the type Film_CrewMember.
- const Film_CrewMember_TypeID = 0x8afd64c84282f606
- func NewFilm_CrewMember(s *capnp.Segment) (Film_CrewMember, error) {
- st, err := capnp.NewStruct(s, capnp.ObjectSize{DataSize: 0, PointerCount: 2})
- return Film_CrewMember{st}, err
- }
- func NewRootFilm_CrewMember(s *capnp.Segment) (Film_CrewMember, error) {
- st, err := capnp.NewRootStruct(s, capnp.ObjectSize{DataSize: 0, PointerCount: 2})
- return Film_CrewMember{st}, err
- }
- func ReadRootFilm_CrewMember(msg *capnp.Message) (Film_CrewMember, error) {
- root, err := msg.RootPtr()
- return Film_CrewMember{root.Struct()}, err
- }
- func (s Film_CrewMember) String() string {
- str, _ := text.Marshal(0x8afd64c84282f606, s.Struct)
- return str
- }
- func (s Film_CrewMember) Person() (Person, error) {
- p, err := s.Struct.Ptr(0)
- return Person{Struct: p.Struct()}, err
- }
- func (s Film_CrewMember) HasPerson() bool {
- p, err := s.Struct.Ptr(0)
- return p.IsValid() || err != nil
- }
- func (s Film_CrewMember) SetPerson(v Person) error {
- return s.Struct.SetPtr(0, v.Struct.ToPtr())
- }
- // NewPerson sets the person field to a newly
- // allocated Person struct, preferring placement in s's segment.
- func (s Film_CrewMember) NewPerson() (Person, error) {
- ss, err := NewPerson(s.Struct.Segment())
- if err != nil {
- return Person{}, err
- }
- err = s.Struct.SetPtr(0, ss.Struct.ToPtr())
- return ss, err
- }
- func (s Film_CrewMember) Job() (string, error) {
- p, err := s.Struct.Ptr(1)
- return p.Text(), err
- }
- func (s Film_CrewMember) HasJob() bool {
- p, err := s.Struct.Ptr(1)
- return p.IsValid() || err != nil
- }
- func (s Film_CrewMember) JobBytes() ([]byte, error) {
- p, err := s.Struct.Ptr(1)
- return p.TextBytes(), err
- }
- func (s Film_CrewMember) SetJob(v string) error {
- return s.Struct.SetText(1, v)
- }
- // Film_CrewMember_List is a list of Film_CrewMember.
- type Film_CrewMember_List struct{ capnp.List }
- // NewFilm_CrewMember creates a new list of Film_CrewMember.
- func NewFilm_CrewMember_List(s *capnp.Segment, sz int32) (Film_CrewMember_List, error) {
- l, err := capnp.NewCompositeList(s, capnp.ObjectSize{DataSize: 0, PointerCount: 2}, sz)
- return Film_CrewMember_List{l}, err
- }
- func (s Film_CrewMember_List) At(i int) Film_CrewMember { return Film_CrewMember{s.List.Struct(i)} }
- func (s Film_CrewMember_List) Set(i int, v Film_CrewMember) error {
- return s.List.SetStruct(i, v.Struct)
- }
- func (s Film_CrewMember_List) String() string {
- str, _ := text.MarshalList(0x8afd64c84282f606, s.List)
- return str
- }
- // Film_CrewMember_Promise is a wrapper for a Film_CrewMember promised by a client call.
- type Film_CrewMember_Promise struct{ *capnp.Pipeline }
- func (p Film_CrewMember_Promise) Struct() (Film_CrewMember, error) {
- s, err := p.Pipeline.Struct()
- return Film_CrewMember{s}, err
- }
- func (p Film_CrewMember_Promise) Person() Person_Promise {
- return Person_Promise{Pipeline: p.Pipeline.GetPipeline(0)}
- }
- type Person struct{ capnp.Struct }
- // Person_TypeID is the unique identifier for the type Person.
- const Person_TypeID = 0xbe38be3daa02cbbb
- func NewPerson(s *capnp.Segment) (Person, error) {
- st, err := capnp.NewStruct(s, capnp.ObjectSize{DataSize: 8, PointerCount: 2})
- return Person{st}, err
- }
- func NewRootPerson(s *capnp.Segment) (Person, error) {
- st, err := capnp.NewRootStruct(s, capnp.ObjectSize{DataSize: 8, PointerCount: 2})
- return Person{st}, err
- }
- func ReadRootPerson(msg *capnp.Message) (Person, error) {
- root, err := msg.RootPtr()
- return Person{root.Struct()}, err
- }
- func (s Person) String() string {
- str, _ := text.Marshal(0xbe38be3daa02cbbb, s.Struct)
- return str
- }
- func (s Person) Id() uint64 {
- return s.Struct.Uint64(0)
- }
- func (s Person) SetId(v uint64) {
- s.Struct.SetUint64(0, v)
- }
- func (s Person) Name() (string, error) {
- p, err := s.Struct.Ptr(0)
- return p.Text(), err
- }
- func (s Person) HasName() bool {
- p, err := s.Struct.Ptr(0)
- return p.IsValid() || err != nil
- }
- func (s Person) NameBytes() ([]byte, error) {
- p, err := s.Struct.Ptr(0)
- return p.TextBytes(), err
- }
- func (s Person) SetName(v string) error {
- return s.Struct.SetText(0, v)
- }
- func (s Person) PhotoPath() (string, error) {
- p, err := s.Struct.Ptr(1)
- return p.Text(), err
- }
- func (s Person) HasPhotoPath() bool {
- p, err := s.Struct.Ptr(1)
- return p.IsValid() || err != nil
- }
- func (s Person) PhotoPathBytes() ([]byte, error) {
- p, err := s.Struct.Ptr(1)
- return p.TextBytes(), err
- }
- func (s Person) SetPhotoPath(v string) error {
- return s.Struct.SetText(1, v)
- }
- // Person_List is a list of Person.
- type Person_List struct{ capnp.List }
- // NewPerson creates a new list of Person.
- func NewPerson_List(s *capnp.Segment, sz int32) (Person_List, error) {
- l, err := capnp.NewCompositeList(s, capnp.ObjectSize{DataSize: 8, PointerCount: 2}, sz)
- return Person_List{l}, err
- }
- func (s Person_List) At(i int) Person { return Person{s.List.Struct(i)} }
- func (s Person_List) Set(i int, v Person) error { return s.List.SetStruct(i, v.Struct) }
- func (s Person_List) String() string {
- str, _ := text.MarshalList(0xbe38be3daa02cbbb, s.List)
- return str
- }
- // Person_Promise is a wrapper for a Person promised by a client call.
- type Person_Promise struct{ *capnp.Pipeline }
- func (p Person_Promise) Struct() (Person, error) {
- s, err := p.Pipeline.Struct()
- return Person{s}, err
- }
- const schema_cd7129bab3129d29 = "x\xda\x8c\x96\xef\x8bSW\x1e\xc6\x9f\xe7\x9c$w\x12" +
- "\xe3$\xd7{\x97\xdd\x11%\xee\xa2\x8b\x0e\xab\x8c\xa3." +
- "2\xb0;\xce\x8f]vD!7\x11V\x86\x15\xbc\x93" +
- "\\\x9ch\x92\x1bon\x1c\x94]\x86ua\xa1\xfe\x03" +
- "\x85\x82\xa5-\x15\xdaR\x90\xfex\xd1N\x8b\xc5B\xa9" +
- "T\x85\x0aZ\x8a}'-\xadP\xd1B-\x15,\xb7" +
- "\x9c\x9b\x1f7S\xa7\xea\xbb\xc3'\xdfs\xcf\xf3=\xe7" +
- "y\xce\xc9\xc8\x9f\xe5\x1e\xb1=\xbe\x18\x03\xac\x9d\xf1D" +
- " D\xf3\xe6\xf9\xa5\xb9\xff\xc3J3\x16l9\xbb\xe6" +
- "\xad\xa5-\xc7\xaf\"\xbeJ\x03\x8cM\xe2\x8c\xb1U\xfc" +
- "\x13\xd8q\\| \xc1 \xf1\xc3\xe9\xc9K\xe5\x9f\xce" +
- "@\xd7\x19M\x8d\x0bU|6q\xcbx5\xa1F\xe7" +
- "\x12\x0b`\xb0\xe9\xaf\xaf_y\xe3\xf2g/\xc0ZG" +
- "\x06\xc5\xf7_\xfe\xdf\xf3w\xbf\xbc\x8e\xb8\xd4\x80\x1d\xd4" +
- "fi\xfcFS\xd5\xba\xf65\x18L\xbc\xcbg\xa6\x97" +
- "\xae.A\xd7E\xf4e\xd0\xb8\xa3}h\xdc\x0f\x0b\xbf" +
- "\xd3\x9e\x05\x83\xf7.\x8b\xd7\xfera\xf7\x05%\x98}" +
- "\x82C\x0d[\x93\xcf\x19\xbb\x92j\xb4=y\x1e\x0c\xb8" +
- "\xe6\x8bw\x0a3\x7f\xbc\x08Kg\x9f\xe0\x98\xaa\xb8\x9a" +
- "|\xd3\xb8\x11\xd6^\x0bk{\x0aW\xe8\xad\x92\xbae" +
- "\xb4R\xbf\x05\x8c\xff\xa6To\xaf\xdc\x1b\xdbPy\xe9" +
- "\xe0\xc3\x95j\xef\xa4n\x1a\x0fRjt?\xb5\x80\xdd" +
- "\x81]k5\x9dm\x0d\x8f\xae\xef\x8e\xfd\xbdR\xad\x01" +
- "\x96\xc9>m\xfa\xef\x87\xfb\xda_?\xd6\xa7dh\xb6" +
- "o\xa9\xa1B\xdf\xfe\x0f\xcdf\xa6m\xdf\x19/\xfa\xb6" +
- "\xdfj\x06Sn\xb5\xea\x94\xfc\x0a\xa4[\x0f\xa6\xe6m" +
- "\xcf.\xf9\x0e\xe8\x05S\x9e\xb3\xb0\xdf\xa9\xcdA:\x9e" +
- "5-c@\x8c\xaay\xae\x05\x8a\x97(Y\xbcNA" +
- "\xd2\xa4\xc2\xd78\x0a\x14\xaf(\xfc9\x05uA\x93\x02" +
- "0np\x0c(~\xaa\xf8\xb7\x8aKaR\x02\xc6m" +
- "\xce\x01\xc5o\x14\xff^\xf1\x984\x19SGE\x0f(" +
- "\xdeS\xfc\xa1\xe2\xf1\x98\xc98`<\xe0^\xa0\xf8\xa3" +
- "\xe21!\xa8'\xe2&\x13\x80A1\x09\x14\x1f*>" +
- "\xa0\xb8\x163\xa9v0\xaexAH\x16\xd3\x0a\x0f\xe4" +
- "M\x0e\x00F2,\x8f)\x9eU<)M&\x01c" +
- "\xb5\x18\x06\x8a\x03\x8a\x9b\x8a\xa7\x84\xc9\x94\xb2\x98(\x00" +
- "\xc5\xac\xe2\xeb\x14_\x956\xb9\x0a0\x86\x84j\xcbT" +
- "|\x83\xe2\xe9\x84\xc94`\xac\x17\xb3@q\x9d\xe2\x9b" +
- "\x15_\xad\x99\\\x1d\xe6\xe1(P\xdc\xa8\xf8\x88\xe2\x83" +
- "\x03&\x07\x95\xed\xc2\xfa?)\xbe[\xf1L\xd2d\x06" +
- "0v\x85zF\x14\xdf\xa7x6e2\x0b\x183!" +
- "\x9fV\xfc\xb0\x10\x94\x952\x93\x10L\x829\xbf\xe2W" +
- "\x1d\xa6!\x98\x06\xc7\x8f8u\xcfir\x10\xccK\x86" +
- "t\x10\x0c<\xa7\xea\xd8Mg\x1a\x9a\xed;\xccFN" +
- "\x02\x99\x05\x03\xd7\xab\x1c\xa9\xd4\xed*r\x07\xfa\xbf\x16" +
- "\xb8'\x1c\xefD\xc5Y\x00\xd0e\x8b\xbe}\xa4Z\xa9" +
- "\xf7j\x16\xbdV\xdd\xaf\xd4\x1cj\x10\xd4\xc0\xc5Js" +
- "\xa2\xdc\xaa\xfa$\x04\x09fj\xb6w\x8c)\x08\xa6\xc0" +
- "\xe0\x84\xeb;Sn\xab\x0e\xfa\xdd\x06\xc6\x9b\xa1!\x99" +
- "\x89,\x0d2\x03\x06\x0d\xb7\xe9;^\xde\x86\xf4\xe7{" +
- "\x92\xe6\xec\xd2\xb1\xb2\xe76\x90\xc9\xdb}\xb8\xd4gg" +
- "f\xa3@\xb4\x1b\xcc\x94\xec\xa6\xdf\xdd\x94l\x94\x10P" +
- "\xc1L\xc9s\x16\xa2_{\x91i\xff\xda\x8b\xa3\xe8\xc6" +
- "q['\"\xda\x9c\xe3\xe5Ik\xa0\x1b\x12}\xcb\x18" +
- "`m\x94\xb4F\x04\xf5ND\xf4\xad\x7f\x00\xac\xcd\x92" +
- "\xd6N\xc1\xf1\x86\xe35C\x85\xbd[\xa9\xadP;\xea" +
- "\xce\xf5\x9a\xe9\xae\x18\x8bV\xec\xb4\xe7\xd6\xfb\x86y[" +
- "z\xbe\x12\x90\xed\x09\xb0\xd7\x02\xd6\xbf$\xad\xf9^D" +
- "ug\x14\xb0\x0eKZ\xd5(\x9fze\x0e\xb0\xe6%" +
- "-?\x0a\xa7~|\x16\xb0\x1a\x92\xd6\xbf\x1fc\xb1'" +
- "\x9ai\xc5c{t\x13\xdb\xf7\x10\x94\xfe\xdf\x85\x92&" +
- "&\xf5\x89\x1c\xa9\x1f\x9a\xd4\x0f\xe5(\xf4\x93G\xf5\xff" +
- "\xe4(\xf5\xb3\xa7\xf4\x17s\x8c\xe9\x17\xf7\xea\x1f\xe5\x18" +
- "\xd7\xbf*\xe8\xb7s\x8b^\xab\xe6zN\xd9\x8aQ\x04" +
- "\x1f\xdf\xfdd\xe3\xd0\xdb\xfe9X1\xc1\x89\xac\xf2=" +
- "tN.\x16\xda5\xc0b\xa3j\xd7\xebO\xa8\xce\xb7" +
- "k\x80\xa0R\xcf{n\xb9UBFm\xf3\x0a\x93\xcc" +
- "\xce$/\x98\xa9o\x08k\x91\x0b\x8f\x04\x08\xdbW\x08" +
- "\xe3\xad\xd2\x13\xa6\x9f\x0e\xf2n\xd3W\x1f`\xb9\xd5\x99" +
- "\x8f\xee\xfe\x96\x01<f\xee\xde\xa0\xd0\xabcP\xb2\xeb" +
- "%\xa7Zu\xc0\xf2c\xe6\x14\x82\xa9\xa8\x0eX\xfe\xd0" +
- "\xe4\x1d\xaf)\xdd\xba:\x8ft\xcfO\x7fS~\xda#" +
- "i\xed\x8b\xfc43\x0cX\xd3\x92V\xbe\xcfO\xfb\x0b" +
- "\x80\xb5O\xd2:\xb8\xcc:\x99\xba]\x8b\x9c\xd3\x98w" +
- "}7o\xfb\xe0\xa3\xc6\xe8=v\xb9m\xea\x99\xfa\x85" +
- "\x8c\xe1H\x86N\xd1\xd11\xda\xafCvt\xa8\xb0\xfd" +
- "C\xd2: \x989\xe9\xd8\x1e%\x04%\x98\xab\xb9u" +
- "\x7f\x9e\x09\x08&@\xadl\x9f\xec\x8eW\x0ax;c" +
- "Z\xfb\xf8\xfa\xfe\x99\xe8<\x15\xbd\x9c\xe3*\x82\x9e\xdf" +
- "\x9f\xff\xe1\x95\xf2?\xda\xc9\xff\xb4X\xbe\x1f\xb9\x86\xed" +
- "\xf9\xcd\xe8\xe2\xe9\xad\xf2\xeb\x17O\xfb\x9d\x96Ow\xef" +
- "\x0c?\xc5\xbd\xb3L\xd0\xcf\x01\x00\x00\xff\xff\xd0*V" +
- "\x11"
- func init() {
- schemas.Register(schema_cd7129bab3129d29,
- 0x8662baafda730202,
- 0x8afd64c84282f606,
- 0xa0d6cbb1ccac3e25,
- 0xbacdba448901b941,
- 0xbe38be3daa02cbbb,
- 0xc1264952b8db1201,
- 0xd4e4ef9e83a4bc53,
- 0xfc58a269203af0a8)
- }
|