aya.txt 705 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830
  1. pub mod aya
  2. pub use aya::Btf
  3. pub use aya::BtfError
  4. pub use aya::Endianness
  5. pub use aya::PinningType
  6. pub use aya::bpf_map_def
  7. pub mod aya::maps
  8. pub mod aya::maps::array
  9. pub struct aya::maps::array::Array<T, V: aya::Pod>
  10. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::array::Array<T, V>
  11. pub fn aya::maps::array::Array<T, V>::get(&self, index: &u32, flags: u64) -> core::result::Result<V, aya::maps::MapError>
  12. pub fn aya::maps::array::Array<T, V>::iter(&self) -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<V, aya::maps::MapError>> + '_
  13. pub fn aya::maps::array::Array<T, V>::len(&self) -> u32
  14. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::array::Array<T, V>
  15. pub fn aya::maps::array::Array<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  16. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::array::Array<T, V>
  17. pub fn aya::maps::array::Array<T, V>::set(&mut self, index: u32, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  18. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::array::Array<&'a aya::maps::MapData, V>
  19. pub type aya::maps::array::Array<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  20. pub fn aya::maps::array::Array<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  21. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::array::Array<&'a mut aya::maps::MapData, V>
  22. pub type aya::maps::array::Array<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  23. pub fn aya::maps::array::Array<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  24. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::IterableMap<u32, V> for aya::maps::array::Array<T, V>
  25. pub fn aya::maps::array::Array<T, V>::get(&self, index: &u32) -> core::result::Result<V, aya::maps::MapError>
  26. pub fn aya::maps::array::Array<T, V>::map(&self) -> &aya::maps::MapData
  27. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::array::Array<aya::maps::MapData, V>
  28. pub type aya::maps::array::Array<aya::maps::MapData, V>::Error = aya::maps::MapError
  29. pub fn aya::maps::array::Array<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  30. impl<T, V> core::marker::Send for aya::maps::array::Array<T, V> where T: core::marker::Send, V: core::marker::Send
  31. impl<T, V> core::marker::Sync for aya::maps::array::Array<T, V> where T: core::marker::Sync, V: core::marker::Sync
  32. impl<T, V> core::marker::Unpin for aya::maps::array::Array<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  33. impl<T, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::array::Array<T, V> where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  34. impl<T, V> core::panic::unwind_safe::UnwindSafe for aya::maps::array::Array<T, V> where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  35. impl<T, U> core::convert::Into<U> for aya::maps::array::Array<T, V> where U: core::convert::From<T>
  36. pub fn aya::maps::array::Array<T, V>::into(self) -> U
  37. impl<T, U> core::convert::TryFrom<U> for aya::maps::array::Array<T, V> where U: core::convert::Into<T>
  38. pub type aya::maps::array::Array<T, V>::Error = core::convert::Infallible
  39. pub fn aya::maps::array::Array<T, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  40. impl<T, U> core::convert::TryInto<U> for aya::maps::array::Array<T, V> where U: core::convert::TryFrom<T>
  41. pub type aya::maps::array::Array<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  42. pub fn aya::maps::array::Array<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  43. impl<T> core::any::Any for aya::maps::array::Array<T, V> where T: 'static + core::marker::Sized
  44. pub fn aya::maps::array::Array<T, V>::type_id(&self) -> core::any::TypeId
  45. impl<T> core::borrow::Borrow<T> for aya::maps::array::Array<T, V> where T: core::marker::Sized
  46. pub fn aya::maps::array::Array<T, V>::borrow(&self) -> &T
  47. impl<T> core::borrow::BorrowMut<T> for aya::maps::array::Array<T, V> where T: core::marker::Sized
  48. pub fn aya::maps::array::Array<T, V>::borrow_mut(&mut self) -> &mut T
  49. impl<T> core::convert::From<T> for aya::maps::array::Array<T, V>
  50. pub fn aya::maps::array::Array<T, V>::from(t: T) -> T
  51. pub struct aya::maps::array::PerCpuArray<T, V: aya::Pod>
  52. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::PerCpuArray<T, V>
  53. pub fn aya::maps::PerCpuArray<T, V>::get(&self, index: &u32, flags: u64) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  54. pub fn aya::maps::PerCpuArray<T, V>::iter(&self) -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>> + '_
  55. pub fn aya::maps::PerCpuArray<T, V>::len(&self) -> u32
  56. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::PerCpuArray<T, V>
  57. pub fn aya::maps::PerCpuArray<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  58. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::PerCpuArray<T, V>
  59. pub fn aya::maps::PerCpuArray<T, V>::set(&mut self, index: u32, values: aya::maps::PerCpuValues<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  60. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::PerCpuArray<&'a aya::maps::MapData, V>
  61. pub type aya::maps::PerCpuArray<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  62. pub fn aya::maps::PerCpuArray<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  63. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V>
  64. pub type aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  65. pub fn aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  66. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::IterableMap<u32, aya::maps::PerCpuValues<V>> for aya::maps::PerCpuArray<T, V>
  67. pub fn aya::maps::PerCpuArray<T, V>::get(&self, index: &u32) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  68. pub fn aya::maps::PerCpuArray<T, V>::map(&self) -> &aya::maps::MapData
  69. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::PerCpuArray<aya::maps::MapData, V>
  70. pub type aya::maps::PerCpuArray<aya::maps::MapData, V>::Error = aya::maps::MapError
  71. pub fn aya::maps::PerCpuArray<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  72. impl<T, V> core::marker::Send for aya::maps::PerCpuArray<T, V> where T: core::marker::Send, V: core::marker::Send
  73. impl<T, V> core::marker::Sync for aya::maps::PerCpuArray<T, V> where T: core::marker::Sync, V: core::marker::Sync
  74. impl<T, V> core::marker::Unpin for aya::maps::PerCpuArray<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  75. impl<T, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::PerCpuArray<T, V> where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  76. impl<T, V> core::panic::unwind_safe::UnwindSafe for aya::maps::PerCpuArray<T, V> where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  77. impl<T, U> core::convert::Into<U> for aya::maps::PerCpuArray<T, V> where U: core::convert::From<T>
  78. pub fn aya::maps::PerCpuArray<T, V>::into(self) -> U
  79. impl<T, U> core::convert::TryFrom<U> for aya::maps::PerCpuArray<T, V> where U: core::convert::Into<T>
  80. pub type aya::maps::PerCpuArray<T, V>::Error = core::convert::Infallible
  81. pub fn aya::maps::PerCpuArray<T, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  82. impl<T, U> core::convert::TryInto<U> for aya::maps::PerCpuArray<T, V> where U: core::convert::TryFrom<T>
  83. pub type aya::maps::PerCpuArray<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  84. pub fn aya::maps::PerCpuArray<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  85. impl<T> core::any::Any for aya::maps::PerCpuArray<T, V> where T: 'static + core::marker::Sized
  86. pub fn aya::maps::PerCpuArray<T, V>::type_id(&self) -> core::any::TypeId
  87. impl<T> core::borrow::Borrow<T> for aya::maps::PerCpuArray<T, V> where T: core::marker::Sized
  88. pub fn aya::maps::PerCpuArray<T, V>::borrow(&self) -> &T
  89. impl<T> core::borrow::BorrowMut<T> for aya::maps::PerCpuArray<T, V> where T: core::marker::Sized
  90. pub fn aya::maps::PerCpuArray<T, V>::borrow_mut(&mut self) -> &mut T
  91. impl<T> core::convert::From<T> for aya::maps::PerCpuArray<T, V>
  92. pub fn aya::maps::PerCpuArray<T, V>::from(t: T) -> T
  93. pub struct aya::maps::array::ProgramArray<T>
  94. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::ProgramArray<T>
  95. pub fn aya::maps::ProgramArray<T>::indices(&self) -> aya::maps::MapKeys<'_, u32>
  96. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::ProgramArray<T>
  97. pub fn aya::maps::ProgramArray<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  98. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::ProgramArray<T>
  99. pub fn aya::maps::ProgramArray<T>::clear_index(&mut self, index: &u32) -> core::result::Result<(), aya::maps::MapError>
  100. pub fn aya::maps::ProgramArray<T>::set(&mut self, index: u32, program: &aya::programs::ProgramFd, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  101. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::ProgramArray<aya::maps::MapData>
  102. pub type aya::maps::ProgramArray<aya::maps::MapData>::Error = aya::maps::MapError
  103. pub fn aya::maps::ProgramArray<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  104. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::ProgramArray<&'a aya::maps::MapData>
  105. pub type aya::maps::ProgramArray<&'a aya::maps::MapData>::Error = aya::maps::MapError
  106. pub fn aya::maps::ProgramArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  107. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::ProgramArray<&'a mut aya::maps::MapData>
  108. pub type aya::maps::ProgramArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  109. pub fn aya::maps::ProgramArray<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  110. impl<T> core::marker::Send for aya::maps::ProgramArray<T> where T: core::marker::Send
  111. impl<T> core::marker::Sync for aya::maps::ProgramArray<T> where T: core::marker::Sync
  112. impl<T> core::marker::Unpin for aya::maps::ProgramArray<T> where T: core::marker::Unpin
  113. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::ProgramArray<T> where T: core::panic::unwind_safe::RefUnwindSafe
  114. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::ProgramArray<T> where T: core::panic::unwind_safe::UnwindSafe
  115. impl<T, U> core::convert::Into<U> for aya::maps::ProgramArray<T> where U: core::convert::From<T>
  116. pub fn aya::maps::ProgramArray<T>::into(self) -> U
  117. impl<T, U> core::convert::TryFrom<U> for aya::maps::ProgramArray<T> where U: core::convert::Into<T>
  118. pub type aya::maps::ProgramArray<T>::Error = core::convert::Infallible
  119. pub fn aya::maps::ProgramArray<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  120. impl<T, U> core::convert::TryInto<U> for aya::maps::ProgramArray<T> where U: core::convert::TryFrom<T>
  121. pub type aya::maps::ProgramArray<T>::Error = <U as core::convert::TryFrom<T>>::Error
  122. pub fn aya::maps::ProgramArray<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  123. impl<T> core::any::Any for aya::maps::ProgramArray<T> where T: 'static + core::marker::Sized
  124. pub fn aya::maps::ProgramArray<T>::type_id(&self) -> core::any::TypeId
  125. impl<T> core::borrow::Borrow<T> for aya::maps::ProgramArray<T> where T: core::marker::Sized
  126. pub fn aya::maps::ProgramArray<T>::borrow(&self) -> &T
  127. impl<T> core::borrow::BorrowMut<T> for aya::maps::ProgramArray<T> where T: core::marker::Sized
  128. pub fn aya::maps::ProgramArray<T>::borrow_mut(&mut self) -> &mut T
  129. impl<T> core::convert::From<T> for aya::maps::ProgramArray<T>
  130. pub fn aya::maps::ProgramArray<T>::from(t: T) -> T
  131. pub mod aya::maps::bloom_filter
  132. pub struct aya::maps::bloom_filter::BloomFilter<T, V: aya::Pod>
  133. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::bloom_filter::BloomFilter<T, V>
  134. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::contains(&self, value: &V, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  135. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::bloom_filter::BloomFilter<T, V>
  136. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  137. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::bloom_filter::BloomFilter<T, V>
  138. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::insert(&mut self, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  139. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V>
  140. pub type aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  141. pub fn aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  142. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::bloom_filter::BloomFilter<&'a mut aya::maps::MapData, V>
  143. pub type aya::maps::bloom_filter::BloomFilter<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  144. pub fn aya::maps::bloom_filter::BloomFilter<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  145. impl<T: core::fmt::Debug, V: core::fmt::Debug + aya::Pod> core::fmt::Debug for aya::maps::bloom_filter::BloomFilter<T, V>
  146. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  147. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::bloom_filter::BloomFilter<aya::maps::MapData, V>
  148. pub type aya::maps::bloom_filter::BloomFilter<aya::maps::MapData, V>::Error = aya::maps::MapError
  149. pub fn aya::maps::bloom_filter::BloomFilter<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  150. impl<T, V> core::marker::Send for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::marker::Send, V: core::marker::Send
  151. impl<T, V> core::marker::Sync for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::marker::Sync, V: core::marker::Sync
  152. impl<T, V> core::marker::Unpin for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  153. impl<T, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  154. impl<T, V> core::panic::unwind_safe::UnwindSafe for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  155. impl<T, U> core::convert::Into<U> for aya::maps::bloom_filter::BloomFilter<T, V> where U: core::convert::From<T>
  156. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::into(self) -> U
  157. impl<T, U> core::convert::TryFrom<U> for aya::maps::bloom_filter::BloomFilter<T, V> where U: core::convert::Into<T>
  158. pub type aya::maps::bloom_filter::BloomFilter<T, V>::Error = core::convert::Infallible
  159. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  160. impl<T, U> core::convert::TryInto<U> for aya::maps::bloom_filter::BloomFilter<T, V> where U: core::convert::TryFrom<T>
  161. pub type aya::maps::bloom_filter::BloomFilter<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  162. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  163. impl<T> core::any::Any for aya::maps::bloom_filter::BloomFilter<T, V> where T: 'static + core::marker::Sized
  164. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::type_id(&self) -> core::any::TypeId
  165. impl<T> core::borrow::Borrow<T> for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::marker::Sized
  166. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::borrow(&self) -> &T
  167. impl<T> core::borrow::BorrowMut<T> for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::marker::Sized
  168. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::borrow_mut(&mut self) -> &mut T
  169. impl<T> core::convert::From<T> for aya::maps::bloom_filter::BloomFilter<T, V>
  170. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::from(t: T) -> T
  171. pub mod aya::maps::hash_map
  172. pub struct aya::maps::hash_map::HashMap<T, K, V>
  173. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::HashMap<T, K, V>
  174. pub fn aya::maps::hash_map::HashMap<T, K, V>::get(&self, key: &K, flags: u64) -> core::result::Result<V, aya::maps::MapError>
  175. pub fn aya::maps::hash_map::HashMap<T, K, V>::iter(&self) -> aya::maps::MapIter<'_, K, V, Self>
  176. pub fn aya::maps::hash_map::HashMap<T, K, V>::keys(&self) -> aya::maps::MapKeys<'_, K>
  177. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::HashMap<T, K, V>
  178. pub fn aya::maps::hash_map::HashMap<T, K, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  179. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::HashMap<T, K, V>
  180. pub fn aya::maps::hash_map::HashMap<T, K, V>::insert(&mut self, key: impl core::borrow::Borrow<K>, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  181. pub fn aya::maps::hash_map::HashMap<T, K, V>::remove(&mut self, key: &K) -> core::result::Result<(), aya::maps::MapError>
  182. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::hash_map::HashMap<&'a aya::maps::MapData, K, V>
  183. pub type aya::maps::hash_map::HashMap<&'a aya::maps::MapData, K, V>::Error = aya::maps::MapError
  184. pub fn aya::maps::hash_map::HashMap<&'a aya::maps::MapData, K, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  185. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::hash_map::HashMap<&'a mut aya::maps::MapData, K, V>
  186. pub type aya::maps::hash_map::HashMap<&'a mut aya::maps::MapData, K, V>::Error = aya::maps::MapError
  187. pub fn aya::maps::hash_map::HashMap<&'a mut aya::maps::MapData, K, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  188. impl<K: aya::Pod, V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::hash_map::HashMap<aya::maps::MapData, K, V>
  189. pub type aya::maps::hash_map::HashMap<aya::maps::MapData, K, V>::Error = aya::maps::MapError
  190. pub fn aya::maps::hash_map::HashMap<aya::maps::MapData, K, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  191. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap<K, V> for aya::maps::hash_map::HashMap<T, K, V>
  192. pub fn aya::maps::hash_map::HashMap<T, K, V>::get(&self, key: &K) -> core::result::Result<V, aya::maps::MapError>
  193. pub fn aya::maps::hash_map::HashMap<T, K, V>::map(&self) -> &aya::maps::MapData
  194. impl<T: core::fmt::Debug, K: core::fmt::Debug, V: core::fmt::Debug> core::fmt::Debug for aya::maps::hash_map::HashMap<T, K, V>
  195. pub fn aya::maps::hash_map::HashMap<T, K, V>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  196. impl<T, K, V> core::marker::Send for aya::maps::hash_map::HashMap<T, K, V> where K: core::marker::Send, T: core::marker::Send, V: core::marker::Send
  197. impl<T, K, V> core::marker::Sync for aya::maps::hash_map::HashMap<T, K, V> where K: core::marker::Sync, T: core::marker::Sync, V: core::marker::Sync
  198. impl<T, K, V> core::marker::Unpin for aya::maps::hash_map::HashMap<T, K, V> where K: core::marker::Unpin, T: core::marker::Unpin, V: core::marker::Unpin
  199. impl<T, K, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::hash_map::HashMap<T, K, V> where K: core::panic::unwind_safe::RefUnwindSafe, T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  200. impl<T, K, V> core::panic::unwind_safe::UnwindSafe for aya::maps::hash_map::HashMap<T, K, V> where K: core::panic::unwind_safe::UnwindSafe, T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  201. impl<T, U> core::convert::Into<U> for aya::maps::hash_map::HashMap<T, K, V> where U: core::convert::From<T>
  202. pub fn aya::maps::hash_map::HashMap<T, K, V>::into(self) -> U
  203. impl<T, U> core::convert::TryFrom<U> for aya::maps::hash_map::HashMap<T, K, V> where U: core::convert::Into<T>
  204. pub type aya::maps::hash_map::HashMap<T, K, V>::Error = core::convert::Infallible
  205. pub fn aya::maps::hash_map::HashMap<T, K, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  206. impl<T, U> core::convert::TryInto<U> for aya::maps::hash_map::HashMap<T, K, V> where U: core::convert::TryFrom<T>
  207. pub type aya::maps::hash_map::HashMap<T, K, V>::Error = <U as core::convert::TryFrom<T>>::Error
  208. pub fn aya::maps::hash_map::HashMap<T, K, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  209. impl<T> core::any::Any for aya::maps::hash_map::HashMap<T, K, V> where T: 'static + core::marker::Sized
  210. pub fn aya::maps::hash_map::HashMap<T, K, V>::type_id(&self) -> core::any::TypeId
  211. impl<T> core::borrow::Borrow<T> for aya::maps::hash_map::HashMap<T, K, V> where T: core::marker::Sized
  212. pub fn aya::maps::hash_map::HashMap<T, K, V>::borrow(&self) -> &T
  213. impl<T> core::borrow::BorrowMut<T> for aya::maps::hash_map::HashMap<T, K, V> where T: core::marker::Sized
  214. pub fn aya::maps::hash_map::HashMap<T, K, V>::borrow_mut(&mut self) -> &mut T
  215. impl<T> core::convert::From<T> for aya::maps::hash_map::HashMap<T, K, V>
  216. pub fn aya::maps::hash_map::HashMap<T, K, V>::from(t: T) -> T
  217. pub struct aya::maps::hash_map::PerCpuHashMap<T, K: aya::Pod, V: aya::Pod>
  218. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::PerCpuHashMap<T, K, V>
  219. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::get(&self, key: &K, flags: u64) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  220. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::iter(&self) -> aya::maps::MapIter<'_, K, aya::maps::PerCpuValues<V>, Self>
  221. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::keys(&self) -> aya::maps::MapKeys<'_, K>
  222. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::PerCpuHashMap<T, K, V>
  223. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  224. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::PerCpuHashMap<T, K, V>
  225. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::insert(&mut self, key: impl core::borrow::Borrow<K>, values: aya::maps::PerCpuValues<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  226. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::remove(&mut self, key: &K) -> core::result::Result<(), aya::maps::MapError>
  227. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::hash_map::PerCpuHashMap<&'a aya::maps::MapData, K, V>
  228. pub type aya::maps::hash_map::PerCpuHashMap<&'a aya::maps::MapData, K, V>::Error = aya::maps::MapError
  229. pub fn aya::maps::hash_map::PerCpuHashMap<&'a aya::maps::MapData, K, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  230. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::hash_map::PerCpuHashMap<&'a mut aya::maps::MapData, K, V>
  231. pub type aya::maps::hash_map::PerCpuHashMap<&'a mut aya::maps::MapData, K, V>::Error = aya::maps::MapError
  232. pub fn aya::maps::hash_map::PerCpuHashMap<&'a mut aya::maps::MapData, K, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  233. impl<K: aya::Pod, V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::hash_map::PerCpuHashMap<aya::maps::MapData, K, V>
  234. pub type aya::maps::hash_map::PerCpuHashMap<aya::maps::MapData, K, V>::Error = aya::maps::MapError
  235. pub fn aya::maps::hash_map::PerCpuHashMap<aya::maps::MapData, K, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  236. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap<K, aya::maps::PerCpuValues<V>> for aya::maps::hash_map::PerCpuHashMap<T, K, V>
  237. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::get(&self, key: &K) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  238. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::map(&self) -> &aya::maps::MapData
  239. impl<T, K, V> core::marker::Send for aya::maps::hash_map::PerCpuHashMap<T, K, V> where K: core::marker::Send, T: core::marker::Send, V: core::marker::Send
  240. impl<T, K, V> core::marker::Sync for aya::maps::hash_map::PerCpuHashMap<T, K, V> where K: core::marker::Sync, T: core::marker::Sync, V: core::marker::Sync
  241. impl<T, K, V> core::marker::Unpin for aya::maps::hash_map::PerCpuHashMap<T, K, V> where K: core::marker::Unpin, T: core::marker::Unpin, V: core::marker::Unpin
  242. impl<T, K, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::hash_map::PerCpuHashMap<T, K, V> where K: core::panic::unwind_safe::RefUnwindSafe, T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  243. impl<T, K, V> core::panic::unwind_safe::UnwindSafe for aya::maps::hash_map::PerCpuHashMap<T, K, V> where K: core::panic::unwind_safe::UnwindSafe, T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  244. impl<T, U> core::convert::Into<U> for aya::maps::hash_map::PerCpuHashMap<T, K, V> where U: core::convert::From<T>
  245. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::into(self) -> U
  246. impl<T, U> core::convert::TryFrom<U> for aya::maps::hash_map::PerCpuHashMap<T, K, V> where U: core::convert::Into<T>
  247. pub type aya::maps::hash_map::PerCpuHashMap<T, K, V>::Error = core::convert::Infallible
  248. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  249. impl<T, U> core::convert::TryInto<U> for aya::maps::hash_map::PerCpuHashMap<T, K, V> where U: core::convert::TryFrom<T>
  250. pub type aya::maps::hash_map::PerCpuHashMap<T, K, V>::Error = <U as core::convert::TryFrom<T>>::Error
  251. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  252. impl<T> core::any::Any for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: 'static + core::marker::Sized
  253. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::type_id(&self) -> core::any::TypeId
  254. impl<T> core::borrow::Borrow<T> for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: core::marker::Sized
  255. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::borrow(&self) -> &T
  256. impl<T> core::borrow::BorrowMut<T> for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: core::marker::Sized
  257. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::borrow_mut(&mut self) -> &mut T
  258. impl<T> core::convert::From<T> for aya::maps::hash_map::PerCpuHashMap<T, K, V>
  259. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::from(t: T) -> T
  260. pub mod aya::maps::lpm_trie
  261. #[repr(packed)] pub struct aya::maps::lpm_trie::Key<K: aya::Pod>
  262. impl<K: aya::Pod> aya::maps::lpm_trie::Key<K>
  263. pub fn aya::maps::lpm_trie::Key<K>::data(&self) -> K
  264. pub fn aya::maps::lpm_trie::Key<K>::new(prefix_len: u32, data: K) -> Self
  265. pub fn aya::maps::lpm_trie::Key<K>::prefix_len(&self) -> u32
  266. impl<K: aya::Pod> aya::Pod for aya::maps::lpm_trie::Key<K>
  267. impl<K: aya::Pod> core::clone::Clone for aya::maps::lpm_trie::Key<K>
  268. pub fn aya::maps::lpm_trie::Key<K>::clone(&self) -> Self
  269. impl<K: aya::Pod> core::marker::Copy for aya::maps::lpm_trie::Key<K>
  270. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap<aya::maps::lpm_trie::Key<K>, V> for aya::maps::lpm_trie::LpmTrie<T, K, V>
  271. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::get(&self, key: &aya::maps::lpm_trie::Key<K>) -> core::result::Result<V, aya::maps::MapError>
  272. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::map(&self) -> &aya::maps::MapData
  273. impl<K> core::marker::Send for aya::maps::lpm_trie::Key<K> where K: core::marker::Send
  274. impl<K> core::marker::Sync for aya::maps::lpm_trie::Key<K> where K: core::marker::Sync
  275. impl<K> core::marker::Unpin for aya::maps::lpm_trie::Key<K> where K: core::marker::Unpin
  276. impl<K> core::panic::unwind_safe::RefUnwindSafe for aya::maps::lpm_trie::Key<K> where K: core::panic::unwind_safe::RefUnwindSafe
  277. impl<K> core::panic::unwind_safe::UnwindSafe for aya::maps::lpm_trie::Key<K> where K: core::panic::unwind_safe::UnwindSafe
  278. impl<T, U> core::convert::Into<U> for aya::maps::lpm_trie::Key<K> where U: core::convert::From<T>
  279. pub fn aya::maps::lpm_trie::Key<K>::into(self) -> U
  280. impl<T, U> core::convert::TryFrom<U> for aya::maps::lpm_trie::Key<K> where U: core::convert::Into<T>
  281. pub type aya::maps::lpm_trie::Key<K>::Error = core::convert::Infallible
  282. pub fn aya::maps::lpm_trie::Key<K>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  283. impl<T, U> core::convert::TryInto<U> for aya::maps::lpm_trie::Key<K> where U: core::convert::TryFrom<T>
  284. pub type aya::maps::lpm_trie::Key<K>::Error = <U as core::convert::TryFrom<T>>::Error
  285. pub fn aya::maps::lpm_trie::Key<K>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  286. impl<T> alloc::borrow::ToOwned for aya::maps::lpm_trie::Key<K> where T: core::clone::Clone
  287. pub type aya::maps::lpm_trie::Key<K>::Owned = T
  288. pub fn aya::maps::lpm_trie::Key<K>::clone_into(&self, target: &mut T)
  289. pub fn aya::maps::lpm_trie::Key<K>::to_owned(&self) -> T
  290. impl<T> core::any::Any for aya::maps::lpm_trie::Key<K> where T: 'static + core::marker::Sized
  291. pub fn aya::maps::lpm_trie::Key<K>::type_id(&self) -> core::any::TypeId
  292. impl<T> core::borrow::Borrow<T> for aya::maps::lpm_trie::Key<K> where T: core::marker::Sized
  293. pub fn aya::maps::lpm_trie::Key<K>::borrow(&self) -> &T
  294. impl<T> core::borrow::BorrowMut<T> for aya::maps::lpm_trie::Key<K> where T: core::marker::Sized
  295. pub fn aya::maps::lpm_trie::Key<K>::borrow_mut(&mut self) -> &mut T
  296. impl<T> core::convert::From<T> for aya::maps::lpm_trie::Key<K>
  297. pub fn aya::maps::lpm_trie::Key<K>::from(t: T) -> T
  298. pub struct aya::maps::lpm_trie::LpmTrie<T, K, V>
  299. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::lpm_trie::LpmTrie<T, K, V>
  300. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::get(&self, key: &aya::maps::lpm_trie::Key<K>, flags: u64) -> core::result::Result<V, aya::maps::MapError>
  301. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::iter(&self) -> aya::maps::MapIter<'_, aya::maps::lpm_trie::Key<K>, V, Self>
  302. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::keys(&self) -> aya::maps::MapKeys<'_, aya::maps::lpm_trie::Key<K>>
  303. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::lpm_trie::LpmTrie<T, K, V>
  304. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  305. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::lpm_trie::LpmTrie<T, K, V>
  306. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::insert(&mut self, key: &aya::maps::lpm_trie::Key<K>, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  307. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::remove(&mut self, key: &aya::maps::lpm_trie::Key<K>) -> core::result::Result<(), aya::maps::MapError>
  308. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::lpm_trie::LpmTrie<&'a aya::maps::MapData, K, V>
  309. pub type aya::maps::lpm_trie::LpmTrie<&'a aya::maps::MapData, K, V>::Error = aya::maps::MapError
  310. pub fn aya::maps::lpm_trie::LpmTrie<&'a aya::maps::MapData, K, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  311. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::lpm_trie::LpmTrie<&'a mut aya::maps::MapData, K, V>
  312. pub type aya::maps::lpm_trie::LpmTrie<&'a mut aya::maps::MapData, K, V>::Error = aya::maps::MapError
  313. pub fn aya::maps::lpm_trie::LpmTrie<&'a mut aya::maps::MapData, K, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  314. impl<K: aya::Pod, V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::lpm_trie::LpmTrie<aya::maps::MapData, K, V>
  315. pub type aya::maps::lpm_trie::LpmTrie<aya::maps::MapData, K, V>::Error = aya::maps::MapError
  316. pub fn aya::maps::lpm_trie::LpmTrie<aya::maps::MapData, K, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  317. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap<aya::maps::lpm_trie::Key<K>, V> for aya::maps::lpm_trie::LpmTrie<T, K, V>
  318. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::get(&self, key: &aya::maps::lpm_trie::Key<K>) -> core::result::Result<V, aya::maps::MapError>
  319. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::map(&self) -> &aya::maps::MapData
  320. impl<T: core::fmt::Debug, K: core::fmt::Debug, V: core::fmt::Debug> core::fmt::Debug for aya::maps::lpm_trie::LpmTrie<T, K, V>
  321. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  322. impl<T, K, V> core::marker::Send for aya::maps::lpm_trie::LpmTrie<T, K, V> where K: core::marker::Send, T: core::marker::Send, V: core::marker::Send
  323. impl<T, K, V> core::marker::Sync for aya::maps::lpm_trie::LpmTrie<T, K, V> where K: core::marker::Sync, T: core::marker::Sync, V: core::marker::Sync
  324. impl<T, K, V> core::marker::Unpin for aya::maps::lpm_trie::LpmTrie<T, K, V> where K: core::marker::Unpin, T: core::marker::Unpin, V: core::marker::Unpin
  325. impl<T, K, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::lpm_trie::LpmTrie<T, K, V> where K: core::panic::unwind_safe::RefUnwindSafe, T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  326. impl<T, K, V> core::panic::unwind_safe::UnwindSafe for aya::maps::lpm_trie::LpmTrie<T, K, V> where K: core::panic::unwind_safe::UnwindSafe, T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  327. impl<T, U> core::convert::Into<U> for aya::maps::lpm_trie::LpmTrie<T, K, V> where U: core::convert::From<T>
  328. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::into(self) -> U
  329. impl<T, U> core::convert::TryFrom<U> for aya::maps::lpm_trie::LpmTrie<T, K, V> where U: core::convert::Into<T>
  330. pub type aya::maps::lpm_trie::LpmTrie<T, K, V>::Error = core::convert::Infallible
  331. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  332. impl<T, U> core::convert::TryInto<U> for aya::maps::lpm_trie::LpmTrie<T, K, V> where U: core::convert::TryFrom<T>
  333. pub type aya::maps::lpm_trie::LpmTrie<T, K, V>::Error = <U as core::convert::TryFrom<T>>::Error
  334. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  335. impl<T> core::any::Any for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: 'static + core::marker::Sized
  336. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::type_id(&self) -> core::any::TypeId
  337. impl<T> core::borrow::Borrow<T> for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: core::marker::Sized
  338. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::borrow(&self) -> &T
  339. impl<T> core::borrow::BorrowMut<T> for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: core::marker::Sized
  340. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::borrow_mut(&mut self) -> &mut T
  341. impl<T> core::convert::From<T> for aya::maps::lpm_trie::LpmTrie<T, K, V>
  342. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::from(t: T) -> T
  343. pub mod aya::maps::perf
  344. pub enum aya::maps::perf::PerfBufferError
  345. pub aya::maps::perf::PerfBufferError::IOError(std::io::error::Error)
  346. pub aya::maps::perf::PerfBufferError::InvalidPageCount
  347. pub aya::maps::perf::PerfBufferError::InvalidPageCount::page_count: usize
  348. pub aya::maps::perf::PerfBufferError::MMapError
  349. pub aya::maps::perf::PerfBufferError::MMapError::io_error: std::io::error::Error
  350. pub aya::maps::perf::PerfBufferError::MoreSpaceNeeded
  351. pub aya::maps::perf::PerfBufferError::MoreSpaceNeeded::size: usize
  352. pub aya::maps::perf::PerfBufferError::NoBuffers
  353. pub aya::maps::perf::PerfBufferError::OpenError
  354. pub aya::maps::perf::PerfBufferError::OpenError::io_error: std::io::error::Error
  355. pub aya::maps::perf::PerfBufferError::PerfEventEnableError
  356. pub aya::maps::perf::PerfBufferError::PerfEventEnableError::io_error: std::io::error::Error
  357. impl core::convert::From<std::io::error::Error> for aya::maps::perf::PerfBufferError
  358. pub fn aya::maps::perf::PerfBufferError::from(source: std::io::error::Error) -> Self
  359. impl core::error::Error for aya::maps::perf::PerfBufferError
  360. pub fn aya::maps::perf::PerfBufferError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  361. impl core::fmt::Debug for aya::maps::perf::PerfBufferError
  362. pub fn aya::maps::perf::PerfBufferError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  363. impl core::fmt::Display for aya::maps::perf::PerfBufferError
  364. pub fn aya::maps::perf::PerfBufferError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  365. impl core::marker::Send for aya::maps::perf::PerfBufferError
  366. impl core::marker::Sync for aya::maps::perf::PerfBufferError
  367. impl core::marker::Unpin for aya::maps::perf::PerfBufferError
  368. impl !core::panic::unwind_safe::RefUnwindSafe for aya::maps::perf::PerfBufferError
  369. impl !core::panic::unwind_safe::UnwindSafe for aya::maps::perf::PerfBufferError
  370. impl<T, U> core::convert::Into<U> for aya::maps::perf::PerfBufferError where U: core::convert::From<T>
  371. pub fn aya::maps::perf::PerfBufferError::into(self) -> U
  372. impl<T, U> core::convert::TryFrom<U> for aya::maps::perf::PerfBufferError where U: core::convert::Into<T>
  373. pub type aya::maps::perf::PerfBufferError::Error = core::convert::Infallible
  374. pub fn aya::maps::perf::PerfBufferError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  375. impl<T, U> core::convert::TryInto<U> for aya::maps::perf::PerfBufferError where U: core::convert::TryFrom<T>
  376. pub type aya::maps::perf::PerfBufferError::Error = <U as core::convert::TryFrom<T>>::Error
  377. pub fn aya::maps::perf::PerfBufferError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  378. impl<T> alloc::string::ToString for aya::maps::perf::PerfBufferError where T: core::fmt::Display + core::marker::Sized
  379. pub fn aya::maps::perf::PerfBufferError::to_string(&self) -> alloc::string::String
  380. impl<T> core::any::Any for aya::maps::perf::PerfBufferError where T: 'static + core::marker::Sized
  381. pub fn aya::maps::perf::PerfBufferError::type_id(&self) -> core::any::TypeId
  382. impl<T> core::borrow::Borrow<T> for aya::maps::perf::PerfBufferError where T: core::marker::Sized
  383. pub fn aya::maps::perf::PerfBufferError::borrow(&self) -> &T
  384. impl<T> core::borrow::BorrowMut<T> for aya::maps::perf::PerfBufferError where T: core::marker::Sized
  385. pub fn aya::maps::perf::PerfBufferError::borrow_mut(&mut self) -> &mut T
  386. impl<T> core::convert::From<T> for aya::maps::perf::PerfBufferError
  387. pub fn aya::maps::perf::PerfBufferError::from(t: T) -> T
  388. pub struct aya::maps::perf::AsyncPerfEventArray<T>
  389. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::perf::AsyncPerfEventArray<T>
  390. pub fn aya::maps::perf::AsyncPerfEventArray<T>::open(&mut self, index: u32, page_count: core::option::Option<usize>) -> core::result::Result<aya::maps::perf::AsyncPerfEventArrayBuffer<T>, aya::maps::perf::PerfBufferError>
  391. pub fn aya::maps::perf::AsyncPerfEventArray<T>::pin<P: core::convert::AsRef<std::path::Path>>(&self, path: P) -> core::result::Result<(), aya::pin::PinError>
  392. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::perf::AsyncPerfEventArray<aya::maps::MapData>
  393. pub type aya::maps::perf::AsyncPerfEventArray<aya::maps::MapData>::Error = aya::maps::MapError
  394. pub fn aya::maps::perf::AsyncPerfEventArray<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  395. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::perf::AsyncPerfEventArray<&'a aya::maps::MapData>
  396. pub type aya::maps::perf::AsyncPerfEventArray<&'a aya::maps::MapData>::Error = aya::maps::MapError
  397. pub fn aya::maps::perf::AsyncPerfEventArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  398. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::perf::AsyncPerfEventArray<&'a mut aya::maps::MapData>
  399. pub type aya::maps::perf::AsyncPerfEventArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  400. pub fn aya::maps::perf::AsyncPerfEventArray<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  401. impl<T> core::marker::Send for aya::maps::perf::AsyncPerfEventArray<T> where T: core::marker::Sync + core::marker::Send
  402. impl<T> core::marker::Sync for aya::maps::perf::AsyncPerfEventArray<T> where T: core::marker::Sync + core::marker::Send
  403. impl<T> core::marker::Unpin for aya::maps::perf::AsyncPerfEventArray<T>
  404. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::perf::AsyncPerfEventArray<T> where T: core::panic::unwind_safe::RefUnwindSafe
  405. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::perf::AsyncPerfEventArray<T> where T: core::panic::unwind_safe::RefUnwindSafe
  406. impl<T, U> core::convert::Into<U> for aya::maps::perf::AsyncPerfEventArray<T> where U: core::convert::From<T>
  407. pub fn aya::maps::perf::AsyncPerfEventArray<T>::into(self) -> U
  408. impl<T, U> core::convert::TryFrom<U> for aya::maps::perf::AsyncPerfEventArray<T> where U: core::convert::Into<T>
  409. pub type aya::maps::perf::AsyncPerfEventArray<T>::Error = core::convert::Infallible
  410. pub fn aya::maps::perf::AsyncPerfEventArray<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  411. impl<T, U> core::convert::TryInto<U> for aya::maps::perf::AsyncPerfEventArray<T> where U: core::convert::TryFrom<T>
  412. pub type aya::maps::perf::AsyncPerfEventArray<T>::Error = <U as core::convert::TryFrom<T>>::Error
  413. pub fn aya::maps::perf::AsyncPerfEventArray<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  414. impl<T> core::any::Any for aya::maps::perf::AsyncPerfEventArray<T> where T: 'static + core::marker::Sized
  415. pub fn aya::maps::perf::AsyncPerfEventArray<T>::type_id(&self) -> core::any::TypeId
  416. impl<T> core::borrow::Borrow<T> for aya::maps::perf::AsyncPerfEventArray<T> where T: core::marker::Sized
  417. pub fn aya::maps::perf::AsyncPerfEventArray<T>::borrow(&self) -> &T
  418. impl<T> core::borrow::BorrowMut<T> for aya::maps::perf::AsyncPerfEventArray<T> where T: core::marker::Sized
  419. pub fn aya::maps::perf::AsyncPerfEventArray<T>::borrow_mut(&mut self) -> &mut T
  420. impl<T> core::convert::From<T> for aya::maps::perf::AsyncPerfEventArray<T>
  421. pub fn aya::maps::perf::AsyncPerfEventArray<T>::from(t: T) -> T
  422. pub struct aya::maps::perf::AsyncPerfEventArrayBuffer<T: core::borrow::BorrowMut<aya::maps::MapData>>
  423. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::perf::AsyncPerfEventArrayBuffer<T>
  424. pub async fn aya::maps::perf::AsyncPerfEventArrayBuffer<T>::read_events(&mut self, buffers: &mut [bytes::bytes_mut::BytesMut]) -> core::result::Result<aya::maps::perf::Events, aya::maps::perf::PerfBufferError>
  425. impl<T> core::marker::Send for aya::maps::perf::AsyncPerfEventArrayBuffer<T> where T: core::marker::Sync + core::marker::Send
  426. impl<T> core::marker::Sync for aya::maps::perf::AsyncPerfEventArrayBuffer<T> where T: core::marker::Sync + core::marker::Send
  427. impl<T> core::marker::Unpin for aya::maps::perf::AsyncPerfEventArrayBuffer<T>
  428. impl<T> !core::panic::unwind_safe::RefUnwindSafe for aya::maps::perf::AsyncPerfEventArrayBuffer<T>
  429. impl<T> !core::panic::unwind_safe::UnwindSafe for aya::maps::perf::AsyncPerfEventArrayBuffer<T>
  430. impl<T, U> core::convert::Into<U> for aya::maps::perf::AsyncPerfEventArrayBuffer<T> where U: core::convert::From<T>
  431. pub fn aya::maps::perf::AsyncPerfEventArrayBuffer<T>::into(self) -> U
  432. impl<T, U> core::convert::TryFrom<U> for aya::maps::perf::AsyncPerfEventArrayBuffer<T> where U: core::convert::Into<T>
  433. pub type aya::maps::perf::AsyncPerfEventArrayBuffer<T>::Error = core::convert::Infallible
  434. pub fn aya::maps::perf::AsyncPerfEventArrayBuffer<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  435. impl<T, U> core::convert::TryInto<U> for aya::maps::perf::AsyncPerfEventArrayBuffer<T> where U: core::convert::TryFrom<T>
  436. pub type aya::maps::perf::AsyncPerfEventArrayBuffer<T>::Error = <U as core::convert::TryFrom<T>>::Error
  437. pub fn aya::maps::perf::AsyncPerfEventArrayBuffer<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  438. impl<T> core::any::Any for aya::maps::perf::AsyncPerfEventArrayBuffer<T> where T: 'static + core::marker::Sized
  439. pub fn aya::maps::perf::AsyncPerfEventArrayBuffer<T>::type_id(&self) -> core::any::TypeId
  440. impl<T> core::borrow::Borrow<T> for aya::maps::perf::AsyncPerfEventArrayBuffer<T> where T: core::marker::Sized
  441. pub fn aya::maps::perf::AsyncPerfEventArrayBuffer<T>::borrow(&self) -> &T
  442. impl<T> core::borrow::BorrowMut<T> for aya::maps::perf::AsyncPerfEventArrayBuffer<T> where T: core::marker::Sized
  443. pub fn aya::maps::perf::AsyncPerfEventArrayBuffer<T>::borrow_mut(&mut self) -> &mut T
  444. impl<T> core::convert::From<T> for aya::maps::perf::AsyncPerfEventArrayBuffer<T>
  445. pub fn aya::maps::perf::AsyncPerfEventArrayBuffer<T>::from(t: T) -> T
  446. pub struct aya::maps::perf::Events
  447. pub aya::maps::perf::Events::lost: usize
  448. pub aya::maps::perf::Events::read: usize
  449. impl core::cmp::Eq for aya::maps::perf::Events
  450. impl core::cmp::PartialEq for aya::maps::perf::Events
  451. pub fn aya::maps::perf::Events::eq(&self, other: &aya::maps::perf::Events) -> bool
  452. impl core::fmt::Debug for aya::maps::perf::Events
  453. pub fn aya::maps::perf::Events::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  454. impl core::marker::StructuralPartialEq for aya::maps::perf::Events
  455. impl core::marker::Send for aya::maps::perf::Events
  456. impl core::marker::Sync for aya::maps::perf::Events
  457. impl core::marker::Unpin for aya::maps::perf::Events
  458. impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::perf::Events
  459. impl core::panic::unwind_safe::UnwindSafe for aya::maps::perf::Events
  460. impl<T, U> core::convert::Into<U> for aya::maps::perf::Events where U: core::convert::From<T>
  461. pub fn aya::maps::perf::Events::into(self) -> U
  462. impl<T, U> core::convert::TryFrom<U> for aya::maps::perf::Events where U: core::convert::Into<T>
  463. pub type aya::maps::perf::Events::Error = core::convert::Infallible
  464. pub fn aya::maps::perf::Events::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  465. impl<T, U> core::convert::TryInto<U> for aya::maps::perf::Events where U: core::convert::TryFrom<T>
  466. pub type aya::maps::perf::Events::Error = <U as core::convert::TryFrom<T>>::Error
  467. pub fn aya::maps::perf::Events::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  468. impl<T> core::any::Any for aya::maps::perf::Events where T: 'static + core::marker::Sized
  469. pub fn aya::maps::perf::Events::type_id(&self) -> core::any::TypeId
  470. impl<T> core::borrow::Borrow<T> for aya::maps::perf::Events where T: core::marker::Sized
  471. pub fn aya::maps::perf::Events::borrow(&self) -> &T
  472. impl<T> core::borrow::BorrowMut<T> for aya::maps::perf::Events where T: core::marker::Sized
  473. pub fn aya::maps::perf::Events::borrow_mut(&mut self) -> &mut T
  474. impl<T> core::convert::From<T> for aya::maps::perf::Events
  475. pub fn aya::maps::perf::Events::from(t: T) -> T
  476. pub struct aya::maps::perf::PerfEventArray<T>
  477. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::perf::PerfEventArray<T>
  478. pub fn aya::maps::perf::PerfEventArray<T>::pin<P: core::convert::AsRef<std::path::Path>>(&self, path: P) -> core::result::Result<(), aya::pin::PinError>
  479. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::perf::PerfEventArray<T>
  480. pub fn aya::maps::perf::PerfEventArray<T>::open(&mut self, index: u32, page_count: core::option::Option<usize>) -> core::result::Result<aya::maps::perf::PerfEventArrayBuffer<T>, aya::maps::perf::PerfBufferError>
  481. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::perf::PerfEventArray<aya::maps::MapData>
  482. pub type aya::maps::perf::PerfEventArray<aya::maps::MapData>::Error = aya::maps::MapError
  483. pub fn aya::maps::perf::PerfEventArray<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  484. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>
  485. pub type aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>::Error = aya::maps::MapError
  486. pub fn aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  487. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData>
  488. pub type aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  489. pub fn aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  490. impl<T> core::marker::Send for aya::maps::perf::PerfEventArray<T> where T: core::marker::Sync + core::marker::Send
  491. impl<T> core::marker::Sync for aya::maps::perf::PerfEventArray<T> where T: core::marker::Sync + core::marker::Send
  492. impl<T> core::marker::Unpin for aya::maps::perf::PerfEventArray<T>
  493. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::perf::PerfEventArray<T> where T: core::panic::unwind_safe::RefUnwindSafe
  494. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::perf::PerfEventArray<T> where T: core::panic::unwind_safe::RefUnwindSafe
  495. impl<T, U> core::convert::Into<U> for aya::maps::perf::PerfEventArray<T> where U: core::convert::From<T>
  496. pub fn aya::maps::perf::PerfEventArray<T>::into(self) -> U
  497. impl<T, U> core::convert::TryFrom<U> for aya::maps::perf::PerfEventArray<T> where U: core::convert::Into<T>
  498. pub type aya::maps::perf::PerfEventArray<T>::Error = core::convert::Infallible
  499. pub fn aya::maps::perf::PerfEventArray<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  500. impl<T, U> core::convert::TryInto<U> for aya::maps::perf::PerfEventArray<T> where U: core::convert::TryFrom<T>
  501. pub type aya::maps::perf::PerfEventArray<T>::Error = <U as core::convert::TryFrom<T>>::Error
  502. pub fn aya::maps::perf::PerfEventArray<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  503. impl<T> core::any::Any for aya::maps::perf::PerfEventArray<T> where T: 'static + core::marker::Sized
  504. pub fn aya::maps::perf::PerfEventArray<T>::type_id(&self) -> core::any::TypeId
  505. impl<T> core::borrow::Borrow<T> for aya::maps::perf::PerfEventArray<T> where T: core::marker::Sized
  506. pub fn aya::maps::perf::PerfEventArray<T>::borrow(&self) -> &T
  507. impl<T> core::borrow::BorrowMut<T> for aya::maps::perf::PerfEventArray<T> where T: core::marker::Sized
  508. pub fn aya::maps::perf::PerfEventArray<T>::borrow_mut(&mut self) -> &mut T
  509. impl<T> core::convert::From<T> for aya::maps::perf::PerfEventArray<T>
  510. pub fn aya::maps::perf::PerfEventArray<T>::from(t: T) -> T
  511. pub struct aya::maps::perf::PerfEventArrayBuffer<T>
  512. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::perf::PerfEventArrayBuffer<T>
  513. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::read_events(&mut self, out_bufs: &mut [bytes::bytes_mut::BytesMut]) -> core::result::Result<aya::maps::perf::Events, aya::maps::perf::PerfBufferError>
  514. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::readable(&self) -> bool
  515. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> std::os::fd::owned::AsFd for aya::maps::perf::PerfEventArrayBuffer<T>
  516. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::as_fd(&self) -> std::os::fd::owned::BorrowedFd<'_>
  517. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> std::os::fd::raw::AsRawFd for aya::maps::perf::PerfEventArrayBuffer<T>
  518. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::as_raw_fd(&self) -> std::os::fd::raw::RawFd
  519. impl<T> core::marker::Send for aya::maps::perf::PerfEventArrayBuffer<T> where T: core::marker::Sync + core::marker::Send
  520. impl<T> core::marker::Sync for aya::maps::perf::PerfEventArrayBuffer<T> where T: core::marker::Sync + core::marker::Send
  521. impl<T> core::marker::Unpin for aya::maps::perf::PerfEventArrayBuffer<T>
  522. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::perf::PerfEventArrayBuffer<T> where T: core::panic::unwind_safe::RefUnwindSafe
  523. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::perf::PerfEventArrayBuffer<T> where T: core::panic::unwind_safe::RefUnwindSafe
  524. impl<T, U> core::convert::Into<U> for aya::maps::perf::PerfEventArrayBuffer<T> where U: core::convert::From<T>
  525. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::into(self) -> U
  526. impl<T, U> core::convert::TryFrom<U> for aya::maps::perf::PerfEventArrayBuffer<T> where U: core::convert::Into<T>
  527. pub type aya::maps::perf::PerfEventArrayBuffer<T>::Error = core::convert::Infallible
  528. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  529. impl<T, U> core::convert::TryInto<U> for aya::maps::perf::PerfEventArrayBuffer<T> where U: core::convert::TryFrom<T>
  530. pub type aya::maps::perf::PerfEventArrayBuffer<T>::Error = <U as core::convert::TryFrom<T>>::Error
  531. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  532. impl<T> core::any::Any for aya::maps::perf::PerfEventArrayBuffer<T> where T: 'static + core::marker::Sized
  533. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::type_id(&self) -> core::any::TypeId
  534. impl<T> core::borrow::Borrow<T> for aya::maps::perf::PerfEventArrayBuffer<T> where T: core::marker::Sized
  535. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::borrow(&self) -> &T
  536. impl<T> core::borrow::BorrowMut<T> for aya::maps::perf::PerfEventArrayBuffer<T> where T: core::marker::Sized
  537. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::borrow_mut(&mut self) -> &mut T
  538. impl<T> core::convert::From<T> for aya::maps::perf::PerfEventArrayBuffer<T>
  539. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::from(t: T) -> T
  540. pub mod aya::maps::queue
  541. pub struct aya::maps::queue::Queue<T, V: aya::Pod>
  542. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::queue::Queue<T, V>
  543. pub fn aya::maps::queue::Queue<T, V>::capacity(&self) -> u32
  544. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::queue::Queue<T, V>
  545. pub fn aya::maps::queue::Queue<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  546. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::queue::Queue<T, V>
  547. pub fn aya::maps::queue::Queue<T, V>::pop(&mut self, flags: u64) -> core::result::Result<V, aya::maps::MapError>
  548. pub fn aya::maps::queue::Queue<T, V>::push(&mut self, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  549. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::queue::Queue<&'a aya::maps::MapData, V>
  550. pub type aya::maps::queue::Queue<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  551. pub fn aya::maps::queue::Queue<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  552. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::queue::Queue<&'a mut aya::maps::MapData, V>
  553. pub type aya::maps::queue::Queue<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  554. pub fn aya::maps::queue::Queue<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  555. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::queue::Queue<aya::maps::MapData, V>
  556. pub type aya::maps::queue::Queue<aya::maps::MapData, V>::Error = aya::maps::MapError
  557. pub fn aya::maps::queue::Queue<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  558. impl<T, V> core::marker::Send for aya::maps::queue::Queue<T, V> where T: core::marker::Send, V: core::marker::Send
  559. impl<T, V> core::marker::Sync for aya::maps::queue::Queue<T, V> where T: core::marker::Sync, V: core::marker::Sync
  560. impl<T, V> core::marker::Unpin for aya::maps::queue::Queue<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  561. impl<T, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::queue::Queue<T, V> where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  562. impl<T, V> core::panic::unwind_safe::UnwindSafe for aya::maps::queue::Queue<T, V> where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  563. impl<T, U> core::convert::Into<U> for aya::maps::queue::Queue<T, V> where U: core::convert::From<T>
  564. pub fn aya::maps::queue::Queue<T, V>::into(self) -> U
  565. impl<T, U> core::convert::TryFrom<U> for aya::maps::queue::Queue<T, V> where U: core::convert::Into<T>
  566. pub type aya::maps::queue::Queue<T, V>::Error = core::convert::Infallible
  567. pub fn aya::maps::queue::Queue<T, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  568. impl<T, U> core::convert::TryInto<U> for aya::maps::queue::Queue<T, V> where U: core::convert::TryFrom<T>
  569. pub type aya::maps::queue::Queue<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  570. pub fn aya::maps::queue::Queue<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  571. impl<T> core::any::Any for aya::maps::queue::Queue<T, V> where T: 'static + core::marker::Sized
  572. pub fn aya::maps::queue::Queue<T, V>::type_id(&self) -> core::any::TypeId
  573. impl<T> core::borrow::Borrow<T> for aya::maps::queue::Queue<T, V> where T: core::marker::Sized
  574. pub fn aya::maps::queue::Queue<T, V>::borrow(&self) -> &T
  575. impl<T> core::borrow::BorrowMut<T> for aya::maps::queue::Queue<T, V> where T: core::marker::Sized
  576. pub fn aya::maps::queue::Queue<T, V>::borrow_mut(&mut self) -> &mut T
  577. impl<T> core::convert::From<T> for aya::maps::queue::Queue<T, V>
  578. pub fn aya::maps::queue::Queue<T, V>::from(t: T) -> T
  579. pub mod aya::maps::ring_buf
  580. pub struct aya::maps::ring_buf::RingBuf<T>
  581. impl<T> aya::maps::ring_buf::RingBuf<T>
  582. pub fn aya::maps::ring_buf::RingBuf<T>::next(&mut self) -> core::option::Option<aya::maps::ring_buf::RingBufItem<'_>>
  583. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::ring_buf::RingBuf<aya::maps::MapData>
  584. pub type aya::maps::ring_buf::RingBuf<aya::maps::MapData>::Error = aya::maps::MapError
  585. pub fn aya::maps::ring_buf::RingBuf<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  586. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::ring_buf::RingBuf<&'a aya::maps::MapData>
  587. pub type aya::maps::ring_buf::RingBuf<&'a aya::maps::MapData>::Error = aya::maps::MapError
  588. pub fn aya::maps::ring_buf::RingBuf<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  589. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::ring_buf::RingBuf<&'a mut aya::maps::MapData>
  590. pub type aya::maps::ring_buf::RingBuf<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  591. pub fn aya::maps::ring_buf::RingBuf<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  592. impl<T: core::borrow::Borrow<aya::maps::MapData>> std::os::fd::raw::AsRawFd for aya::maps::ring_buf::RingBuf<T>
  593. pub fn aya::maps::ring_buf::RingBuf<T>::as_raw_fd(&self) -> std::os::fd::raw::RawFd
  594. impl<T> core::marker::Send for aya::maps::ring_buf::RingBuf<T> where T: core::marker::Send
  595. impl<T> core::marker::Sync for aya::maps::ring_buf::RingBuf<T> where T: core::marker::Sync
  596. impl<T> core::marker::Unpin for aya::maps::ring_buf::RingBuf<T> where T: core::marker::Unpin
  597. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::ring_buf::RingBuf<T> where T: core::panic::unwind_safe::RefUnwindSafe
  598. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::ring_buf::RingBuf<T> where T: core::panic::unwind_safe::UnwindSafe
  599. impl<T, U> core::convert::Into<U> for aya::maps::ring_buf::RingBuf<T> where U: core::convert::From<T>
  600. pub fn aya::maps::ring_buf::RingBuf<T>::into(self) -> U
  601. impl<T, U> core::convert::TryFrom<U> for aya::maps::ring_buf::RingBuf<T> where U: core::convert::Into<T>
  602. pub type aya::maps::ring_buf::RingBuf<T>::Error = core::convert::Infallible
  603. pub fn aya::maps::ring_buf::RingBuf<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  604. impl<T, U> core::convert::TryInto<U> for aya::maps::ring_buf::RingBuf<T> where U: core::convert::TryFrom<T>
  605. pub type aya::maps::ring_buf::RingBuf<T>::Error = <U as core::convert::TryFrom<T>>::Error
  606. pub fn aya::maps::ring_buf::RingBuf<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  607. impl<T> core::any::Any for aya::maps::ring_buf::RingBuf<T> where T: 'static + core::marker::Sized
  608. pub fn aya::maps::ring_buf::RingBuf<T>::type_id(&self) -> core::any::TypeId
  609. impl<T> core::borrow::Borrow<T> for aya::maps::ring_buf::RingBuf<T> where T: core::marker::Sized
  610. pub fn aya::maps::ring_buf::RingBuf<T>::borrow(&self) -> &T
  611. impl<T> core::borrow::BorrowMut<T> for aya::maps::ring_buf::RingBuf<T> where T: core::marker::Sized
  612. pub fn aya::maps::ring_buf::RingBuf<T>::borrow_mut(&mut self) -> &mut T
  613. impl<T> core::convert::From<T> for aya::maps::ring_buf::RingBuf<T>
  614. pub fn aya::maps::ring_buf::RingBuf<T>::from(t: T) -> T
  615. pub struct aya::maps::ring_buf::RingBufItem<'a>
  616. impl core::fmt::Debug for aya::maps::ring_buf::RingBufItem<'_>
  617. pub fn aya::maps::ring_buf::RingBufItem<'_>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  618. impl core::ops::deref::Deref for aya::maps::ring_buf::RingBufItem<'_>
  619. pub type aya::maps::ring_buf::RingBufItem<'_>::Target = [u8]
  620. pub fn aya::maps::ring_buf::RingBufItem<'_>::deref(&self) -> &Self::Target
  621. impl core::ops::drop::Drop for aya::maps::ring_buf::RingBufItem<'_>
  622. pub fn aya::maps::ring_buf::RingBufItem<'_>::drop(&mut self)
  623. impl<'a> core::marker::Send for aya::maps::ring_buf::RingBufItem<'a>
  624. impl<'a> core::marker::Sync for aya::maps::ring_buf::RingBufItem<'a>
  625. impl<'a> core::marker::Unpin for aya::maps::ring_buf::RingBufItem<'a>
  626. impl<'a> core::panic::unwind_safe::RefUnwindSafe for aya::maps::ring_buf::RingBufItem<'a>
  627. impl<'a> !core::panic::unwind_safe::UnwindSafe for aya::maps::ring_buf::RingBufItem<'a>
  628. impl<T, U> core::convert::Into<U> for aya::maps::ring_buf::RingBufItem<'a> where U: core::convert::From<T>
  629. pub fn aya::maps::ring_buf::RingBufItem<'a>::into(self) -> U
  630. impl<T, U> core::convert::TryFrom<U> for aya::maps::ring_buf::RingBufItem<'a> where U: core::convert::Into<T>
  631. pub type aya::maps::ring_buf::RingBufItem<'a>::Error = core::convert::Infallible
  632. pub fn aya::maps::ring_buf::RingBufItem<'a>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  633. impl<T, U> core::convert::TryInto<U> for aya::maps::ring_buf::RingBufItem<'a> where U: core::convert::TryFrom<T>
  634. pub type aya::maps::ring_buf::RingBufItem<'a>::Error = <U as core::convert::TryFrom<T>>::Error
  635. pub fn aya::maps::ring_buf::RingBufItem<'a>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  636. impl<T> core::any::Any for aya::maps::ring_buf::RingBufItem<'a> where T: 'static + core::marker::Sized
  637. pub fn aya::maps::ring_buf::RingBufItem<'a>::type_id(&self) -> core::any::TypeId
  638. impl<T> core::borrow::Borrow<T> for aya::maps::ring_buf::RingBufItem<'a> where T: core::marker::Sized
  639. pub fn aya::maps::ring_buf::RingBufItem<'a>::borrow(&self) -> &T
  640. impl<T> core::borrow::BorrowMut<T> for aya::maps::ring_buf::RingBufItem<'a> where T: core::marker::Sized
  641. pub fn aya::maps::ring_buf::RingBufItem<'a>::borrow_mut(&mut self) -> &mut T
  642. impl<T> core::convert::From<T> for aya::maps::ring_buf::RingBufItem<'a>
  643. pub fn aya::maps::ring_buf::RingBufItem<'a>::from(t: T) -> T
  644. pub mod aya::maps::sock
  645. pub struct aya::maps::sock::SockHash<T, K>
  646. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod> aya::maps::SockHash<T, K>
  647. pub fn aya::maps::SockHash<T, K>::fd(&self) -> &aya::maps::sock::SockMapFd
  648. pub fn aya::maps::SockHash<T, K>::get(&self, key: &K, flags: u64) -> core::result::Result<std::os::fd::raw::RawFd, aya::maps::MapError>
  649. pub fn aya::maps::SockHash<T, K>::iter(&self) -> aya::maps::MapIter<'_, K, std::os::fd::raw::RawFd, Self>
  650. pub fn aya::maps::SockHash<T, K>::keys(&self) -> aya::maps::MapKeys<'_, K>
  651. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::SockHash<T, V>
  652. pub fn aya::maps::SockHash<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  653. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, K: aya::Pod> aya::maps::SockHash<T, K>
  654. pub fn aya::maps::SockHash<T, K>::insert<I: std::os::fd::raw::AsRawFd>(&mut self, key: impl core::borrow::Borrow<K>, value: I, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  655. pub fn aya::maps::SockHash<T, K>::remove(&mut self, key: &K) -> core::result::Result<(), aya::maps::MapError>
  656. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::SockHash<&'a aya::maps::MapData, V>
  657. pub type aya::maps::SockHash<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  658. pub fn aya::maps::SockHash<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  659. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::SockHash<&'a mut aya::maps::MapData, V>
  660. pub type aya::maps::SockHash<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  661. pub fn aya::maps::SockHash<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  662. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod> aya::maps::IterableMap<K, i32> for aya::maps::SockHash<T, K>
  663. pub fn aya::maps::SockHash<T, K>::get(&self, key: &K) -> core::result::Result<std::os::fd::raw::RawFd, aya::maps::MapError>
  664. pub fn aya::maps::SockHash<T, K>::map(&self) -> &aya::maps::MapData
  665. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::SockHash<aya::maps::MapData, V>
  666. pub type aya::maps::SockHash<aya::maps::MapData, V>::Error = aya::maps::MapError
  667. pub fn aya::maps::SockHash<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  668. impl<T, K> core::marker::Send for aya::maps::SockHash<T, K> where K: core::marker::Send, T: core::marker::Send
  669. impl<T, K> core::marker::Sync for aya::maps::SockHash<T, K> where K: core::marker::Sync, T: core::marker::Sync
  670. impl<T, K> core::marker::Unpin for aya::maps::SockHash<T, K> where K: core::marker::Unpin, T: core::marker::Unpin
  671. impl<T, K> core::panic::unwind_safe::RefUnwindSafe for aya::maps::SockHash<T, K> where K: core::panic::unwind_safe::RefUnwindSafe, T: core::panic::unwind_safe::RefUnwindSafe
  672. impl<T, K> core::panic::unwind_safe::UnwindSafe for aya::maps::SockHash<T, K> where K: core::panic::unwind_safe::UnwindSafe, T: core::panic::unwind_safe::UnwindSafe
  673. impl<T, U> core::convert::Into<U> for aya::maps::SockHash<T, K> where U: core::convert::From<T>
  674. pub fn aya::maps::SockHash<T, K>::into(self) -> U
  675. impl<T, U> core::convert::TryFrom<U> for aya::maps::SockHash<T, K> where U: core::convert::Into<T>
  676. pub type aya::maps::SockHash<T, K>::Error = core::convert::Infallible
  677. pub fn aya::maps::SockHash<T, K>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  678. impl<T, U> core::convert::TryInto<U> for aya::maps::SockHash<T, K> where U: core::convert::TryFrom<T>
  679. pub type aya::maps::SockHash<T, K>::Error = <U as core::convert::TryFrom<T>>::Error
  680. pub fn aya::maps::SockHash<T, K>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  681. impl<T> core::any::Any for aya::maps::SockHash<T, K> where T: 'static + core::marker::Sized
  682. pub fn aya::maps::SockHash<T, K>::type_id(&self) -> core::any::TypeId
  683. impl<T> core::borrow::Borrow<T> for aya::maps::SockHash<T, K> where T: core::marker::Sized
  684. pub fn aya::maps::SockHash<T, K>::borrow(&self) -> &T
  685. impl<T> core::borrow::BorrowMut<T> for aya::maps::SockHash<T, K> where T: core::marker::Sized
  686. pub fn aya::maps::SockHash<T, K>::borrow_mut(&mut self) -> &mut T
  687. impl<T> core::convert::From<T> for aya::maps::SockHash<T, K>
  688. pub fn aya::maps::SockHash<T, K>::from(t: T) -> T
  689. pub struct aya::maps::sock::SockMap<T>
  690. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::SockMap<T>
  691. pub fn aya::maps::SockMap<T>::fd(&self) -> &aya::maps::sock::SockMapFd
  692. pub fn aya::maps::SockMap<T>::indices(&self) -> aya::maps::MapKeys<'_, u32>
  693. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::SockMap<T>
  694. pub fn aya::maps::SockMap<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  695. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::SockMap<T>
  696. pub fn aya::maps::SockMap<T>::clear_index(&mut self, index: &u32) -> core::result::Result<(), aya::maps::MapError>
  697. pub fn aya::maps::SockMap<T>::set<I: std::os::fd::raw::AsRawFd>(&mut self, index: u32, socket: &I, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  698. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::SockMap<aya::maps::MapData>
  699. pub type aya::maps::SockMap<aya::maps::MapData>::Error = aya::maps::MapError
  700. pub fn aya::maps::SockMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  701. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::SockMap<&'a aya::maps::MapData>
  702. pub type aya::maps::SockMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  703. pub fn aya::maps::SockMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  704. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::SockMap<&'a mut aya::maps::MapData>
  705. pub type aya::maps::SockMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  706. pub fn aya::maps::SockMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  707. impl<T> core::marker::Send for aya::maps::SockMap<T> where T: core::marker::Send
  708. impl<T> core::marker::Sync for aya::maps::SockMap<T> where T: core::marker::Sync
  709. impl<T> core::marker::Unpin for aya::maps::SockMap<T> where T: core::marker::Unpin
  710. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::SockMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  711. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::SockMap<T> where T: core::panic::unwind_safe::UnwindSafe
  712. impl<T, U> core::convert::Into<U> for aya::maps::SockMap<T> where U: core::convert::From<T>
  713. pub fn aya::maps::SockMap<T>::into(self) -> U
  714. impl<T, U> core::convert::TryFrom<U> for aya::maps::SockMap<T> where U: core::convert::Into<T>
  715. pub type aya::maps::SockMap<T>::Error = core::convert::Infallible
  716. pub fn aya::maps::SockMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  717. impl<T, U> core::convert::TryInto<U> for aya::maps::SockMap<T> where U: core::convert::TryFrom<T>
  718. pub type aya::maps::SockMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  719. pub fn aya::maps::SockMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  720. impl<T> core::any::Any for aya::maps::SockMap<T> where T: 'static + core::marker::Sized
  721. pub fn aya::maps::SockMap<T>::type_id(&self) -> core::any::TypeId
  722. impl<T> core::borrow::Borrow<T> for aya::maps::SockMap<T> where T: core::marker::Sized
  723. pub fn aya::maps::SockMap<T>::borrow(&self) -> &T
  724. impl<T> core::borrow::BorrowMut<T> for aya::maps::SockMap<T> where T: core::marker::Sized
  725. pub fn aya::maps::SockMap<T>::borrow_mut(&mut self) -> &mut T
  726. impl<T> core::convert::From<T> for aya::maps::SockMap<T>
  727. pub fn aya::maps::SockMap<T>::from(t: T) -> T
  728. #[repr(transparent)] pub struct aya::maps::sock::SockMapFd(_)
  729. impl aya::maps::sock::SockMapFd
  730. pub fn aya::maps::sock::SockMapFd::try_clone(&self) -> std::io::error::Result<Self>
  731. impl std::os::fd::owned::AsFd for aya::maps::sock::SockMapFd
  732. pub fn aya::maps::sock::SockMapFd::as_fd(&self) -> std::os::fd::owned::BorrowedFd<'_>
  733. impl core::marker::Send for aya::maps::sock::SockMapFd
  734. impl core::marker::Sync for aya::maps::sock::SockMapFd
  735. impl core::marker::Unpin for aya::maps::sock::SockMapFd
  736. impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::sock::SockMapFd
  737. impl core::panic::unwind_safe::UnwindSafe for aya::maps::sock::SockMapFd
  738. impl<T, U> core::convert::Into<U> for aya::maps::sock::SockMapFd where U: core::convert::From<T>
  739. pub fn aya::maps::sock::SockMapFd::into(self) -> U
  740. impl<T, U> core::convert::TryFrom<U> for aya::maps::sock::SockMapFd where U: core::convert::Into<T>
  741. pub type aya::maps::sock::SockMapFd::Error = core::convert::Infallible
  742. pub fn aya::maps::sock::SockMapFd::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  743. impl<T, U> core::convert::TryInto<U> for aya::maps::sock::SockMapFd where U: core::convert::TryFrom<T>
  744. pub type aya::maps::sock::SockMapFd::Error = <U as core::convert::TryFrom<T>>::Error
  745. pub fn aya::maps::sock::SockMapFd::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  746. impl<T> core::any::Any for aya::maps::sock::SockMapFd where T: 'static + core::marker::Sized
  747. pub fn aya::maps::sock::SockMapFd::type_id(&self) -> core::any::TypeId
  748. impl<T> core::borrow::Borrow<T> for aya::maps::sock::SockMapFd where T: core::marker::Sized
  749. pub fn aya::maps::sock::SockMapFd::borrow(&self) -> &T
  750. impl<T> core::borrow::BorrowMut<T> for aya::maps::sock::SockMapFd where T: core::marker::Sized
  751. pub fn aya::maps::sock::SockMapFd::borrow_mut(&mut self) -> &mut T
  752. impl<T> core::convert::From<T> for aya::maps::sock::SockMapFd
  753. pub fn aya::maps::sock::SockMapFd::from(t: T) -> T
  754. pub mod aya::maps::stack
  755. pub struct aya::maps::stack::Stack<T, V: aya::Pod>
  756. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::stack::Stack<T, V>
  757. pub fn aya::maps::stack::Stack<T, V>::capacity(&self) -> u32
  758. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::stack::Stack<T, V>
  759. pub fn aya::maps::stack::Stack<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  760. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::stack::Stack<T, V>
  761. pub fn aya::maps::stack::Stack<T, V>::pop(&mut self, flags: u64) -> core::result::Result<V, aya::maps::MapError>
  762. pub fn aya::maps::stack::Stack<T, V>::push(&mut self, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  763. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::stack::Stack<&'a aya::maps::MapData, V>
  764. pub type aya::maps::stack::Stack<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  765. pub fn aya::maps::stack::Stack<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  766. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::stack::Stack<&'a mut aya::maps::MapData, V>
  767. pub type aya::maps::stack::Stack<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  768. pub fn aya::maps::stack::Stack<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  769. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::stack::Stack<aya::maps::MapData, V>
  770. pub type aya::maps::stack::Stack<aya::maps::MapData, V>::Error = aya::maps::MapError
  771. pub fn aya::maps::stack::Stack<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  772. impl<T, V> core::marker::Send for aya::maps::stack::Stack<T, V> where T: core::marker::Send, V: core::marker::Send
  773. impl<T, V> core::marker::Sync for aya::maps::stack::Stack<T, V> where T: core::marker::Sync, V: core::marker::Sync
  774. impl<T, V> core::marker::Unpin for aya::maps::stack::Stack<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  775. impl<T, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::stack::Stack<T, V> where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  776. impl<T, V> core::panic::unwind_safe::UnwindSafe for aya::maps::stack::Stack<T, V> where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  777. impl<T, U> core::convert::Into<U> for aya::maps::stack::Stack<T, V> where U: core::convert::From<T>
  778. pub fn aya::maps::stack::Stack<T, V>::into(self) -> U
  779. impl<T, U> core::convert::TryFrom<U> for aya::maps::stack::Stack<T, V> where U: core::convert::Into<T>
  780. pub type aya::maps::stack::Stack<T, V>::Error = core::convert::Infallible
  781. pub fn aya::maps::stack::Stack<T, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  782. impl<T, U> core::convert::TryInto<U> for aya::maps::stack::Stack<T, V> where U: core::convert::TryFrom<T>
  783. pub type aya::maps::stack::Stack<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  784. pub fn aya::maps::stack::Stack<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  785. impl<T> core::any::Any for aya::maps::stack::Stack<T, V> where T: 'static + core::marker::Sized
  786. pub fn aya::maps::stack::Stack<T, V>::type_id(&self) -> core::any::TypeId
  787. impl<T> core::borrow::Borrow<T> for aya::maps::stack::Stack<T, V> where T: core::marker::Sized
  788. pub fn aya::maps::stack::Stack<T, V>::borrow(&self) -> &T
  789. impl<T> core::borrow::BorrowMut<T> for aya::maps::stack::Stack<T, V> where T: core::marker::Sized
  790. pub fn aya::maps::stack::Stack<T, V>::borrow_mut(&mut self) -> &mut T
  791. impl<T> core::convert::From<T> for aya::maps::stack::Stack<T, V>
  792. pub fn aya::maps::stack::Stack<T, V>::from(t: T) -> T
  793. pub mod aya::maps::stack_trace
  794. pub struct aya::maps::stack_trace::StackFrame
  795. pub aya::maps::stack_trace::StackFrame::ip: u64
  796. impl core::marker::Send for aya::maps::stack_trace::StackFrame
  797. impl core::marker::Sync for aya::maps::stack_trace::StackFrame
  798. impl core::marker::Unpin for aya::maps::stack_trace::StackFrame
  799. impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::stack_trace::StackFrame
  800. impl core::panic::unwind_safe::UnwindSafe for aya::maps::stack_trace::StackFrame
  801. impl<T, U> core::convert::Into<U> for aya::maps::stack_trace::StackFrame where U: core::convert::From<T>
  802. pub fn aya::maps::stack_trace::StackFrame::into(self) -> U
  803. impl<T, U> core::convert::TryFrom<U> for aya::maps::stack_trace::StackFrame where U: core::convert::Into<T>
  804. pub type aya::maps::stack_trace::StackFrame::Error = core::convert::Infallible
  805. pub fn aya::maps::stack_trace::StackFrame::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  806. impl<T, U> core::convert::TryInto<U> for aya::maps::stack_trace::StackFrame where U: core::convert::TryFrom<T>
  807. pub type aya::maps::stack_trace::StackFrame::Error = <U as core::convert::TryFrom<T>>::Error
  808. pub fn aya::maps::stack_trace::StackFrame::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  809. impl<T> core::any::Any for aya::maps::stack_trace::StackFrame where T: 'static + core::marker::Sized
  810. pub fn aya::maps::stack_trace::StackFrame::type_id(&self) -> core::any::TypeId
  811. impl<T> core::borrow::Borrow<T> for aya::maps::stack_trace::StackFrame where T: core::marker::Sized
  812. pub fn aya::maps::stack_trace::StackFrame::borrow(&self) -> &T
  813. impl<T> core::borrow::BorrowMut<T> for aya::maps::stack_trace::StackFrame where T: core::marker::Sized
  814. pub fn aya::maps::stack_trace::StackFrame::borrow_mut(&mut self) -> &mut T
  815. impl<T> core::convert::From<T> for aya::maps::stack_trace::StackFrame
  816. pub fn aya::maps::stack_trace::StackFrame::from(t: T) -> T
  817. pub struct aya::maps::stack_trace::StackTrace
  818. pub aya::maps::stack_trace::StackTrace::id: u32
  819. impl aya::maps::stack_trace::StackTrace
  820. pub fn aya::maps::stack_trace::StackTrace::frames(&self) -> &[aya::maps::stack_trace::StackFrame]
  821. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::IterableMap<u32, aya::maps::stack_trace::StackTrace> for aya::maps::stack_trace::StackTraceMap<T>
  822. pub fn aya::maps::stack_trace::StackTraceMap<T>::get(&self, index: &u32) -> core::result::Result<aya::maps::stack_trace::StackTrace, aya::maps::MapError>
  823. pub fn aya::maps::stack_trace::StackTraceMap<T>::map(&self) -> &aya::maps::MapData
  824. impl core::marker::Send for aya::maps::stack_trace::StackTrace
  825. impl core::marker::Sync for aya::maps::stack_trace::StackTrace
  826. impl core::marker::Unpin for aya::maps::stack_trace::StackTrace
  827. impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::stack_trace::StackTrace
  828. impl core::panic::unwind_safe::UnwindSafe for aya::maps::stack_trace::StackTrace
  829. impl<T, U> core::convert::Into<U> for aya::maps::stack_trace::StackTrace where U: core::convert::From<T>
  830. pub fn aya::maps::stack_trace::StackTrace::into(self) -> U
  831. impl<T, U> core::convert::TryFrom<U> for aya::maps::stack_trace::StackTrace where U: core::convert::Into<T>
  832. pub type aya::maps::stack_trace::StackTrace::Error = core::convert::Infallible
  833. pub fn aya::maps::stack_trace::StackTrace::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  834. impl<T, U> core::convert::TryInto<U> for aya::maps::stack_trace::StackTrace where U: core::convert::TryFrom<T>
  835. pub type aya::maps::stack_trace::StackTrace::Error = <U as core::convert::TryFrom<T>>::Error
  836. pub fn aya::maps::stack_trace::StackTrace::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  837. impl<T> core::any::Any for aya::maps::stack_trace::StackTrace where T: 'static + core::marker::Sized
  838. pub fn aya::maps::stack_trace::StackTrace::type_id(&self) -> core::any::TypeId
  839. impl<T> core::borrow::Borrow<T> for aya::maps::stack_trace::StackTrace where T: core::marker::Sized
  840. pub fn aya::maps::stack_trace::StackTrace::borrow(&self) -> &T
  841. impl<T> core::borrow::BorrowMut<T> for aya::maps::stack_trace::StackTrace where T: core::marker::Sized
  842. pub fn aya::maps::stack_trace::StackTrace::borrow_mut(&mut self) -> &mut T
  843. impl<T> core::convert::From<T> for aya::maps::stack_trace::StackTrace
  844. pub fn aya::maps::stack_trace::StackTrace::from(t: T) -> T
  845. pub struct aya::maps::stack_trace::StackTraceMap<T>
  846. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::stack_trace::StackTraceMap<T>
  847. pub fn aya::maps::stack_trace::StackTraceMap<T>::get(&self, stack_id: &u32, flags: u64) -> core::result::Result<aya::maps::stack_trace::StackTrace, aya::maps::MapError>
  848. pub fn aya::maps::stack_trace::StackTraceMap<T>::iter(&self) -> aya::maps::MapIter<'_, u32, aya::maps::stack_trace::StackTrace, Self>
  849. pub fn aya::maps::stack_trace::StackTraceMap<T>::stack_ids(&self) -> aya::maps::MapKeys<'_, u32>
  850. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::stack_trace::StackTraceMap<T>
  851. pub fn aya::maps::stack_trace::StackTraceMap<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  852. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::stack_trace::StackTraceMap<T>
  853. pub fn aya::maps::stack_trace::StackTraceMap<T>::remove(&mut self, stack_id: &u32) -> core::result::Result<(), aya::maps::MapError>
  854. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<aya::maps::MapData>
  855. pub type aya::maps::stack_trace::StackTraceMap<aya::maps::MapData>::Error = aya::maps::MapError
  856. pub fn aya::maps::stack_trace::StackTraceMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  857. impl<'a, T: core::borrow::Borrow<aya::maps::MapData>> core::iter::traits::collect::IntoIterator for &'a aya::maps::stack_trace::StackTraceMap<T>
  858. pub type &'a aya::maps::stack_trace::StackTraceMap<T>::IntoIter = aya::maps::MapIter<'a, u32, aya::maps::stack_trace::StackTrace, aya::maps::stack_trace::StackTraceMap<T>>
  859. pub type &'a aya::maps::stack_trace::StackTraceMap<T>::Item = core::result::Result<(u32, aya::maps::stack_trace::StackTrace), aya::maps::MapError>
  860. pub fn &'a aya::maps::stack_trace::StackTraceMap<T>::into_iter(self) -> Self::IntoIter
  861. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>
  862. pub type aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  863. pub fn aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  864. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData>
  865. pub type aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  866. pub fn aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  867. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::IterableMap<u32, aya::maps::stack_trace::StackTrace> for aya::maps::stack_trace::StackTraceMap<T>
  868. pub fn aya::maps::stack_trace::StackTraceMap<T>::get(&self, index: &u32) -> core::result::Result<aya::maps::stack_trace::StackTrace, aya::maps::MapError>
  869. pub fn aya::maps::stack_trace::StackTraceMap<T>::map(&self) -> &aya::maps::MapData
  870. impl<T: core::fmt::Debug> core::fmt::Debug for aya::maps::stack_trace::StackTraceMap<T>
  871. pub fn aya::maps::stack_trace::StackTraceMap<T>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  872. impl<T> core::marker::Send for aya::maps::stack_trace::StackTraceMap<T> where T: core::marker::Send
  873. impl<T> core::marker::Sync for aya::maps::stack_trace::StackTraceMap<T> where T: core::marker::Sync
  874. impl<T> core::marker::Unpin for aya::maps::stack_trace::StackTraceMap<T> where T: core::marker::Unpin
  875. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::stack_trace::StackTraceMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  876. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::stack_trace::StackTraceMap<T> where T: core::panic::unwind_safe::UnwindSafe
  877. impl<T, U> core::convert::Into<U> for aya::maps::stack_trace::StackTraceMap<T> where U: core::convert::From<T>
  878. pub fn aya::maps::stack_trace::StackTraceMap<T>::into(self) -> U
  879. impl<T, U> core::convert::TryFrom<U> for aya::maps::stack_trace::StackTraceMap<T> where U: core::convert::Into<T>
  880. pub type aya::maps::stack_trace::StackTraceMap<T>::Error = core::convert::Infallible
  881. pub fn aya::maps::stack_trace::StackTraceMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  882. impl<T, U> core::convert::TryInto<U> for aya::maps::stack_trace::StackTraceMap<T> where U: core::convert::TryFrom<T>
  883. pub type aya::maps::stack_trace::StackTraceMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  884. pub fn aya::maps::stack_trace::StackTraceMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  885. impl<T> core::any::Any for aya::maps::stack_trace::StackTraceMap<T> where T: 'static + core::marker::Sized
  886. pub fn aya::maps::stack_trace::StackTraceMap<T>::type_id(&self) -> core::any::TypeId
  887. impl<T> core::borrow::Borrow<T> for aya::maps::stack_trace::StackTraceMap<T> where T: core::marker::Sized
  888. pub fn aya::maps::stack_trace::StackTraceMap<T>::borrow(&self) -> &T
  889. impl<T> core::borrow::BorrowMut<T> for aya::maps::stack_trace::StackTraceMap<T> where T: core::marker::Sized
  890. pub fn aya::maps::stack_trace::StackTraceMap<T>::borrow_mut(&mut self) -> &mut T
  891. impl<T> core::convert::From<T> for aya::maps::stack_trace::StackTraceMap<T>
  892. pub fn aya::maps::stack_trace::StackTraceMap<T>::from(t: T) -> T
  893. pub mod aya::maps::xdp
  894. pub enum aya::maps::xdp::XdpMapError
  895. pub aya::maps::xdp::XdpMapError::ChainedProgramNotSupported
  896. pub aya::maps::xdp::XdpMapError::MapError(aya::maps::MapError)
  897. impl core::convert::From<aya::maps::MapError> for aya::maps::xdp::XdpMapError
  898. pub fn aya::maps::xdp::XdpMapError::from(source: aya::maps::MapError) -> Self
  899. impl core::error::Error for aya::maps::xdp::XdpMapError
  900. pub fn aya::maps::xdp::XdpMapError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  901. impl core::fmt::Debug for aya::maps::xdp::XdpMapError
  902. pub fn aya::maps::xdp::XdpMapError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  903. impl core::fmt::Display for aya::maps::xdp::XdpMapError
  904. pub fn aya::maps::xdp::XdpMapError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  905. impl core::marker::Send for aya::maps::xdp::XdpMapError
  906. impl core::marker::Sync for aya::maps::xdp::XdpMapError
  907. impl core::marker::Unpin for aya::maps::xdp::XdpMapError
  908. impl !core::panic::unwind_safe::RefUnwindSafe for aya::maps::xdp::XdpMapError
  909. impl !core::panic::unwind_safe::UnwindSafe for aya::maps::xdp::XdpMapError
  910. impl<T, U> core::convert::Into<U> for aya::maps::xdp::XdpMapError where U: core::convert::From<T>
  911. pub fn aya::maps::xdp::XdpMapError::into(self) -> U
  912. impl<T, U> core::convert::TryFrom<U> for aya::maps::xdp::XdpMapError where U: core::convert::Into<T>
  913. pub type aya::maps::xdp::XdpMapError::Error = core::convert::Infallible
  914. pub fn aya::maps::xdp::XdpMapError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  915. impl<T, U> core::convert::TryInto<U> for aya::maps::xdp::XdpMapError where U: core::convert::TryFrom<T>
  916. pub type aya::maps::xdp::XdpMapError::Error = <U as core::convert::TryFrom<T>>::Error
  917. pub fn aya::maps::xdp::XdpMapError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  918. impl<T> alloc::string::ToString for aya::maps::xdp::XdpMapError where T: core::fmt::Display + core::marker::Sized
  919. pub fn aya::maps::xdp::XdpMapError::to_string(&self) -> alloc::string::String
  920. impl<T> core::any::Any for aya::maps::xdp::XdpMapError where T: 'static + core::marker::Sized
  921. pub fn aya::maps::xdp::XdpMapError::type_id(&self) -> core::any::TypeId
  922. impl<T> core::borrow::Borrow<T> for aya::maps::xdp::XdpMapError where T: core::marker::Sized
  923. pub fn aya::maps::xdp::XdpMapError::borrow(&self) -> &T
  924. impl<T> core::borrow::BorrowMut<T> for aya::maps::xdp::XdpMapError where T: core::marker::Sized
  925. pub fn aya::maps::xdp::XdpMapError::borrow_mut(&mut self) -> &mut T
  926. impl<T> core::convert::From<T> for aya::maps::xdp::XdpMapError
  927. pub fn aya::maps::xdp::XdpMapError::from(t: T) -> T
  928. pub struct aya::maps::xdp::CpuMap<T>
  929. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::CpuMap<T>
  930. pub fn aya::maps::CpuMap<T>::get(&self, cpu_index: u32, flags: u64) -> core::result::Result<CpuMapValue, aya::maps::MapError>
  931. pub fn aya::maps::CpuMap<T>::iter(&self) -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<CpuMapValue, aya::maps::MapError>> + '_
  932. pub fn aya::maps::CpuMap<T>::len(&self) -> u32
  933. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::CpuMap<T>
  934. pub fn aya::maps::CpuMap<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  935. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::CpuMap<T>
  936. pub fn aya::maps::CpuMap<T>::set(&mut self, cpu_index: u32, queue_size: u32, program: core::option::Option<&aya::programs::ProgramFd>, flags: u64) -> core::result::Result<(), aya::maps::xdp::XdpMapError>
  937. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::CpuMap<aya::maps::MapData>
  938. pub type aya::maps::CpuMap<aya::maps::MapData>::Error = aya::maps::MapError
  939. pub fn aya::maps::CpuMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  940. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::CpuMap<&'a aya::maps::MapData>
  941. pub type aya::maps::CpuMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  942. pub fn aya::maps::CpuMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  943. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::CpuMap<&'a mut aya::maps::MapData>
  944. pub type aya::maps::CpuMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  945. pub fn aya::maps::CpuMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  946. impl<T> core::marker::Send for aya::maps::CpuMap<T> where T: core::marker::Send
  947. impl<T> core::marker::Sync for aya::maps::CpuMap<T> where T: core::marker::Sync
  948. impl<T> core::marker::Unpin for aya::maps::CpuMap<T> where T: core::marker::Unpin
  949. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::CpuMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  950. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::CpuMap<T> where T: core::panic::unwind_safe::UnwindSafe
  951. impl<T, U> core::convert::Into<U> for aya::maps::CpuMap<T> where U: core::convert::From<T>
  952. pub fn aya::maps::CpuMap<T>::into(self) -> U
  953. impl<T, U> core::convert::TryFrom<U> for aya::maps::CpuMap<T> where U: core::convert::Into<T>
  954. pub type aya::maps::CpuMap<T>::Error = core::convert::Infallible
  955. pub fn aya::maps::CpuMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  956. impl<T, U> core::convert::TryInto<U> for aya::maps::CpuMap<T> where U: core::convert::TryFrom<T>
  957. pub type aya::maps::CpuMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  958. pub fn aya::maps::CpuMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  959. impl<T> core::any::Any for aya::maps::CpuMap<T> where T: 'static + core::marker::Sized
  960. pub fn aya::maps::CpuMap<T>::type_id(&self) -> core::any::TypeId
  961. impl<T> core::borrow::Borrow<T> for aya::maps::CpuMap<T> where T: core::marker::Sized
  962. pub fn aya::maps::CpuMap<T>::borrow(&self) -> &T
  963. impl<T> core::borrow::BorrowMut<T> for aya::maps::CpuMap<T> where T: core::marker::Sized
  964. pub fn aya::maps::CpuMap<T>::borrow_mut(&mut self) -> &mut T
  965. impl<T> core::convert::From<T> for aya::maps::CpuMap<T>
  966. pub fn aya::maps::CpuMap<T>::from(t: T) -> T
  967. pub struct aya::maps::xdp::DevMap<T>
  968. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::DevMap<T>
  969. pub fn aya::maps::DevMap<T>::get(&self, index: u32, flags: u64) -> core::result::Result<DevMapValue, aya::maps::MapError>
  970. pub fn aya::maps::DevMap<T>::iter(&self) -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<DevMapValue, aya::maps::MapError>> + '_
  971. pub fn aya::maps::DevMap<T>::len(&self) -> u32
  972. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::DevMap<T>
  973. pub fn aya::maps::DevMap<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  974. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::DevMap<T>
  975. pub fn aya::maps::DevMap<T>::set(&mut self, index: u32, target_if_index: u32, program: core::option::Option<&aya::programs::ProgramFd>, flags: u64) -> core::result::Result<(), aya::maps::xdp::XdpMapError>
  976. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::DevMap<aya::maps::MapData>
  977. pub type aya::maps::DevMap<aya::maps::MapData>::Error = aya::maps::MapError
  978. pub fn aya::maps::DevMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  979. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::DevMap<&'a aya::maps::MapData>
  980. pub type aya::maps::DevMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  981. pub fn aya::maps::DevMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  982. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::DevMap<&'a mut aya::maps::MapData>
  983. pub type aya::maps::DevMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  984. pub fn aya::maps::DevMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  985. impl<T> core::marker::Send for aya::maps::DevMap<T> where T: core::marker::Send
  986. impl<T> core::marker::Sync for aya::maps::DevMap<T> where T: core::marker::Sync
  987. impl<T> core::marker::Unpin for aya::maps::DevMap<T> where T: core::marker::Unpin
  988. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::DevMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  989. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::DevMap<T> where T: core::panic::unwind_safe::UnwindSafe
  990. impl<T, U> core::convert::Into<U> for aya::maps::DevMap<T> where U: core::convert::From<T>
  991. pub fn aya::maps::DevMap<T>::into(self) -> U
  992. impl<T, U> core::convert::TryFrom<U> for aya::maps::DevMap<T> where U: core::convert::Into<T>
  993. pub type aya::maps::DevMap<T>::Error = core::convert::Infallible
  994. pub fn aya::maps::DevMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  995. impl<T, U> core::convert::TryInto<U> for aya::maps::DevMap<T> where U: core::convert::TryFrom<T>
  996. pub type aya::maps::DevMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  997. pub fn aya::maps::DevMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  998. impl<T> core::any::Any for aya::maps::DevMap<T> where T: 'static + core::marker::Sized
  999. pub fn aya::maps::DevMap<T>::type_id(&self) -> core::any::TypeId
  1000. impl<T> core::borrow::Borrow<T> for aya::maps::DevMap<T> where T: core::marker::Sized
  1001. pub fn aya::maps::DevMap<T>::borrow(&self) -> &T
  1002. impl<T> core::borrow::BorrowMut<T> for aya::maps::DevMap<T> where T: core::marker::Sized
  1003. pub fn aya::maps::DevMap<T>::borrow_mut(&mut self) -> &mut T
  1004. impl<T> core::convert::From<T> for aya::maps::DevMap<T>
  1005. pub fn aya::maps::DevMap<T>::from(t: T) -> T
  1006. pub struct aya::maps::xdp::DevMapHash<T>
  1007. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::DevMapHash<T>
  1008. pub fn aya::maps::DevMapHash<T>::get(&self, key: u32, flags: u64) -> core::result::Result<DevMapValue, aya::maps::MapError>
  1009. pub fn aya::maps::DevMapHash<T>::iter(&self) -> aya::maps::MapIter<'_, u32, DevMapValue, Self>
  1010. pub fn aya::maps::DevMapHash<T>::keys(&self) -> aya::maps::MapKeys<'_, u32>
  1011. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::DevMapHash<T>
  1012. pub fn aya::maps::DevMapHash<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1013. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::DevMapHash<T>
  1014. pub fn aya::maps::DevMapHash<T>::insert(&mut self, key: u32, target_if_index: u32, program: core::option::Option<&aya::programs::ProgramFd>, flags: u64) -> core::result::Result<(), aya::maps::xdp::XdpMapError>
  1015. pub fn aya::maps::DevMapHash<T>::remove(&mut self, key: u32) -> core::result::Result<(), aya::maps::MapError>
  1016. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::DevMapHash<aya::maps::MapData>
  1017. pub type aya::maps::DevMapHash<aya::maps::MapData>::Error = aya::maps::MapError
  1018. pub fn aya::maps::DevMapHash<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1019. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::DevMapHash<&'a aya::maps::MapData>
  1020. pub type aya::maps::DevMapHash<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1021. pub fn aya::maps::DevMapHash<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1022. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::DevMapHash<&'a mut aya::maps::MapData>
  1023. pub type aya::maps::DevMapHash<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1024. pub fn aya::maps::DevMapHash<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1025. impl<T> core::marker::Send for aya::maps::DevMapHash<T> where T: core::marker::Send
  1026. impl<T> core::marker::Sync for aya::maps::DevMapHash<T> where T: core::marker::Sync
  1027. impl<T> core::marker::Unpin for aya::maps::DevMapHash<T> where T: core::marker::Unpin
  1028. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::DevMapHash<T> where T: core::panic::unwind_safe::RefUnwindSafe
  1029. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::DevMapHash<T> where T: core::panic::unwind_safe::UnwindSafe
  1030. impl<T, U> core::convert::Into<U> for aya::maps::DevMapHash<T> where U: core::convert::From<T>
  1031. pub fn aya::maps::DevMapHash<T>::into(self) -> U
  1032. impl<T, U> core::convert::TryFrom<U> for aya::maps::DevMapHash<T> where U: core::convert::Into<T>
  1033. pub type aya::maps::DevMapHash<T>::Error = core::convert::Infallible
  1034. pub fn aya::maps::DevMapHash<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1035. impl<T, U> core::convert::TryInto<U> for aya::maps::DevMapHash<T> where U: core::convert::TryFrom<T>
  1036. pub type aya::maps::DevMapHash<T>::Error = <U as core::convert::TryFrom<T>>::Error
  1037. pub fn aya::maps::DevMapHash<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1038. impl<T> core::any::Any for aya::maps::DevMapHash<T> where T: 'static + core::marker::Sized
  1039. pub fn aya::maps::DevMapHash<T>::type_id(&self) -> core::any::TypeId
  1040. impl<T> core::borrow::Borrow<T> for aya::maps::DevMapHash<T> where T: core::marker::Sized
  1041. pub fn aya::maps::DevMapHash<T>::borrow(&self) -> &T
  1042. impl<T> core::borrow::BorrowMut<T> for aya::maps::DevMapHash<T> where T: core::marker::Sized
  1043. pub fn aya::maps::DevMapHash<T>::borrow_mut(&mut self) -> &mut T
  1044. impl<T> core::convert::From<T> for aya::maps::DevMapHash<T>
  1045. pub fn aya::maps::DevMapHash<T>::from(t: T) -> T
  1046. pub struct aya::maps::xdp::XskMap<T>
  1047. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::XskMap<T>
  1048. pub fn aya::maps::XskMap<T>::len(&self) -> u32
  1049. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::XskMap<T>
  1050. pub fn aya::maps::XskMap<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1051. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::XskMap<T>
  1052. pub fn aya::maps::XskMap<T>::set(&mut self, index: u32, socket_fd: impl std::os::fd::raw::AsRawFd, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  1053. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::XskMap<aya::maps::MapData>
  1054. pub type aya::maps::XskMap<aya::maps::MapData>::Error = aya::maps::MapError
  1055. pub fn aya::maps::XskMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1056. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::XskMap<&'a aya::maps::MapData>
  1057. pub type aya::maps::XskMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1058. pub fn aya::maps::XskMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1059. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::XskMap<&'a mut aya::maps::MapData>
  1060. pub type aya::maps::XskMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1061. pub fn aya::maps::XskMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1062. impl<T> core::marker::Send for aya::maps::XskMap<T> where T: core::marker::Send
  1063. impl<T> core::marker::Sync for aya::maps::XskMap<T> where T: core::marker::Sync
  1064. impl<T> core::marker::Unpin for aya::maps::XskMap<T> where T: core::marker::Unpin
  1065. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::XskMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  1066. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::XskMap<T> where T: core::panic::unwind_safe::UnwindSafe
  1067. impl<T, U> core::convert::Into<U> for aya::maps::XskMap<T> where U: core::convert::From<T>
  1068. pub fn aya::maps::XskMap<T>::into(self) -> U
  1069. impl<T, U> core::convert::TryFrom<U> for aya::maps::XskMap<T> where U: core::convert::Into<T>
  1070. pub type aya::maps::XskMap<T>::Error = core::convert::Infallible
  1071. pub fn aya::maps::XskMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1072. impl<T, U> core::convert::TryInto<U> for aya::maps::XskMap<T> where U: core::convert::TryFrom<T>
  1073. pub type aya::maps::XskMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  1074. pub fn aya::maps::XskMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1075. impl<T> core::any::Any for aya::maps::XskMap<T> where T: 'static + core::marker::Sized
  1076. pub fn aya::maps::XskMap<T>::type_id(&self) -> core::any::TypeId
  1077. impl<T> core::borrow::Borrow<T> for aya::maps::XskMap<T> where T: core::marker::Sized
  1078. pub fn aya::maps::XskMap<T>::borrow(&self) -> &T
  1079. impl<T> core::borrow::BorrowMut<T> for aya::maps::XskMap<T> where T: core::marker::Sized
  1080. pub fn aya::maps::XskMap<T>::borrow_mut(&mut self) -> &mut T
  1081. impl<T> core::convert::From<T> for aya::maps::XskMap<T>
  1082. pub fn aya::maps::XskMap<T>::from(t: T) -> T
  1083. pub enum aya::maps::Map
  1084. pub aya::maps::Map::Array(aya::maps::MapData)
  1085. pub aya::maps::Map::BloomFilter(aya::maps::MapData)
  1086. pub aya::maps::Map::CpuMap(aya::maps::MapData)
  1087. pub aya::maps::Map::DevMap(aya::maps::MapData)
  1088. pub aya::maps::Map::DevMapHash(aya::maps::MapData)
  1089. pub aya::maps::Map::HashMap(aya::maps::MapData)
  1090. pub aya::maps::Map::LpmTrie(aya::maps::MapData)
  1091. pub aya::maps::Map::LruHashMap(aya::maps::MapData)
  1092. pub aya::maps::Map::PerCpuArray(aya::maps::MapData)
  1093. pub aya::maps::Map::PerCpuHashMap(aya::maps::MapData)
  1094. pub aya::maps::Map::PerCpuLruHashMap(aya::maps::MapData)
  1095. pub aya::maps::Map::PerfEventArray(aya::maps::MapData)
  1096. pub aya::maps::Map::ProgramArray(aya::maps::MapData)
  1097. pub aya::maps::Map::Queue(aya::maps::MapData)
  1098. pub aya::maps::Map::RingBuf(aya::maps::MapData)
  1099. pub aya::maps::Map::SockHash(aya::maps::MapData)
  1100. pub aya::maps::Map::SockMap(aya::maps::MapData)
  1101. pub aya::maps::Map::Stack(aya::maps::MapData)
  1102. pub aya::maps::Map::StackTraceMap(aya::maps::MapData)
  1103. pub aya::maps::Map::Unsupported(aya::maps::MapData)
  1104. pub aya::maps::Map::XskMap(aya::maps::MapData)
  1105. impl aya::maps::Map
  1106. pub fn aya::maps::Map::pin<P: core::convert::AsRef<std::path::Path>>(&self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1107. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::CpuMap<aya::maps::MapData>
  1108. pub type aya::maps::CpuMap<aya::maps::MapData>::Error = aya::maps::MapError
  1109. pub fn aya::maps::CpuMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1110. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::DevMap<aya::maps::MapData>
  1111. pub type aya::maps::DevMap<aya::maps::MapData>::Error = aya::maps::MapError
  1112. pub fn aya::maps::DevMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1113. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::DevMapHash<aya::maps::MapData>
  1114. pub type aya::maps::DevMapHash<aya::maps::MapData>::Error = aya::maps::MapError
  1115. pub fn aya::maps::DevMapHash<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1116. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::ProgramArray<aya::maps::MapData>
  1117. pub type aya::maps::ProgramArray<aya::maps::MapData>::Error = aya::maps::MapError
  1118. pub fn aya::maps::ProgramArray<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1119. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::SockMap<aya::maps::MapData>
  1120. pub type aya::maps::SockMap<aya::maps::MapData>::Error = aya::maps::MapError
  1121. pub fn aya::maps::SockMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1122. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::XskMap<aya::maps::MapData>
  1123. pub type aya::maps::XskMap<aya::maps::MapData>::Error = aya::maps::MapError
  1124. pub fn aya::maps::XskMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1125. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::perf::AsyncPerfEventArray<aya::maps::MapData>
  1126. pub type aya::maps::perf::AsyncPerfEventArray<aya::maps::MapData>::Error = aya::maps::MapError
  1127. pub fn aya::maps::perf::AsyncPerfEventArray<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1128. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::perf::PerfEventArray<aya::maps::MapData>
  1129. pub type aya::maps::perf::PerfEventArray<aya::maps::MapData>::Error = aya::maps::MapError
  1130. pub fn aya::maps::perf::PerfEventArray<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1131. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::ring_buf::RingBuf<aya::maps::MapData>
  1132. pub type aya::maps::ring_buf::RingBuf<aya::maps::MapData>::Error = aya::maps::MapError
  1133. pub fn aya::maps::ring_buf::RingBuf<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1134. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<aya::maps::MapData>
  1135. pub type aya::maps::stack_trace::StackTraceMap<aya::maps::MapData>::Error = aya::maps::MapError
  1136. pub fn aya::maps::stack_trace::StackTraceMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1137. impl core::fmt::Debug for aya::maps::Map
  1138. pub fn aya::maps::Map::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1139. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::hash_map::HashMap<&'a aya::maps::MapData, K, V>
  1140. pub type aya::maps::hash_map::HashMap<&'a aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1141. pub fn aya::maps::hash_map::HashMap<&'a aya::maps::MapData, K, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1142. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::hash_map::PerCpuHashMap<&'a aya::maps::MapData, K, V>
  1143. pub type aya::maps::hash_map::PerCpuHashMap<&'a aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1144. pub fn aya::maps::hash_map::PerCpuHashMap<&'a aya::maps::MapData, K, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1145. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::lpm_trie::LpmTrie<&'a aya::maps::MapData, K, V>
  1146. pub type aya::maps::lpm_trie::LpmTrie<&'a aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1147. pub fn aya::maps::lpm_trie::LpmTrie<&'a aya::maps::MapData, K, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1148. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::hash_map::HashMap<&'a mut aya::maps::MapData, K, V>
  1149. pub type aya::maps::hash_map::HashMap<&'a mut aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1150. pub fn aya::maps::hash_map::HashMap<&'a mut aya::maps::MapData, K, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1151. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::hash_map::PerCpuHashMap<&'a mut aya::maps::MapData, K, V>
  1152. pub type aya::maps::hash_map::PerCpuHashMap<&'a mut aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1153. pub fn aya::maps::hash_map::PerCpuHashMap<&'a mut aya::maps::MapData, K, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1154. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::lpm_trie::LpmTrie<&'a mut aya::maps::MapData, K, V>
  1155. pub type aya::maps::lpm_trie::LpmTrie<&'a mut aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1156. pub fn aya::maps::lpm_trie::LpmTrie<&'a mut aya::maps::MapData, K, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1157. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::PerCpuArray<&'a aya::maps::MapData, V>
  1158. pub type aya::maps::PerCpuArray<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  1159. pub fn aya::maps::PerCpuArray<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1160. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::SockHash<&'a aya::maps::MapData, V>
  1161. pub type aya::maps::SockHash<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  1162. pub fn aya::maps::SockHash<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1163. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::array::Array<&'a aya::maps::MapData, V>
  1164. pub type aya::maps::array::Array<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  1165. pub fn aya::maps::array::Array<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1166. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V>
  1167. pub type aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  1168. pub fn aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1169. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::queue::Queue<&'a aya::maps::MapData, V>
  1170. pub type aya::maps::queue::Queue<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  1171. pub fn aya::maps::queue::Queue<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1172. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::stack::Stack<&'a aya::maps::MapData, V>
  1173. pub type aya::maps::stack::Stack<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  1174. pub fn aya::maps::stack::Stack<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1175. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V>
  1176. pub type aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  1177. pub fn aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1178. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::SockHash<&'a mut aya::maps::MapData, V>
  1179. pub type aya::maps::SockHash<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  1180. pub fn aya::maps::SockHash<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1181. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::array::Array<&'a mut aya::maps::MapData, V>
  1182. pub type aya::maps::array::Array<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  1183. pub fn aya::maps::array::Array<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1184. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::bloom_filter::BloomFilter<&'a mut aya::maps::MapData, V>
  1185. pub type aya::maps::bloom_filter::BloomFilter<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  1186. pub fn aya::maps::bloom_filter::BloomFilter<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1187. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::queue::Queue<&'a mut aya::maps::MapData, V>
  1188. pub type aya::maps::queue::Queue<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  1189. pub fn aya::maps::queue::Queue<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1190. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::stack::Stack<&'a mut aya::maps::MapData, V>
  1191. pub type aya::maps::stack::Stack<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  1192. pub fn aya::maps::stack::Stack<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1193. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::CpuMap<&'a aya::maps::MapData>
  1194. pub type aya::maps::CpuMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1195. pub fn aya::maps::CpuMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1196. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::DevMap<&'a aya::maps::MapData>
  1197. pub type aya::maps::DevMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1198. pub fn aya::maps::DevMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1199. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::DevMapHash<&'a aya::maps::MapData>
  1200. pub type aya::maps::DevMapHash<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1201. pub fn aya::maps::DevMapHash<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1202. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::ProgramArray<&'a aya::maps::MapData>
  1203. pub type aya::maps::ProgramArray<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1204. pub fn aya::maps::ProgramArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1205. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::SockMap<&'a aya::maps::MapData>
  1206. pub type aya::maps::SockMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1207. pub fn aya::maps::SockMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1208. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::XskMap<&'a aya::maps::MapData>
  1209. pub type aya::maps::XskMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1210. pub fn aya::maps::XskMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1211. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::perf::AsyncPerfEventArray<&'a aya::maps::MapData>
  1212. pub type aya::maps::perf::AsyncPerfEventArray<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1213. pub fn aya::maps::perf::AsyncPerfEventArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1214. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>
  1215. pub type aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1216. pub fn aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1217. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::ring_buf::RingBuf<&'a aya::maps::MapData>
  1218. pub type aya::maps::ring_buf::RingBuf<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1219. pub fn aya::maps::ring_buf::RingBuf<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1220. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>
  1221. pub type aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1222. pub fn aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1223. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::CpuMap<&'a mut aya::maps::MapData>
  1224. pub type aya::maps::CpuMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1225. pub fn aya::maps::CpuMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1226. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::DevMap<&'a mut aya::maps::MapData>
  1227. pub type aya::maps::DevMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1228. pub fn aya::maps::DevMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1229. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::DevMapHash<&'a mut aya::maps::MapData>
  1230. pub type aya::maps::DevMapHash<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1231. pub fn aya::maps::DevMapHash<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1232. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::ProgramArray<&'a mut aya::maps::MapData>
  1233. pub type aya::maps::ProgramArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1234. pub fn aya::maps::ProgramArray<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1235. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::SockMap<&'a mut aya::maps::MapData>
  1236. pub type aya::maps::SockMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1237. pub fn aya::maps::SockMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1238. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::XskMap<&'a mut aya::maps::MapData>
  1239. pub type aya::maps::XskMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1240. pub fn aya::maps::XskMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1241. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::perf::AsyncPerfEventArray<&'a mut aya::maps::MapData>
  1242. pub type aya::maps::perf::AsyncPerfEventArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1243. pub fn aya::maps::perf::AsyncPerfEventArray<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1244. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData>
  1245. pub type aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1246. pub fn aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1247. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::ring_buf::RingBuf<&'a mut aya::maps::MapData>
  1248. pub type aya::maps::ring_buf::RingBuf<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1249. pub fn aya::maps::ring_buf::RingBuf<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1250. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData>
  1251. pub type aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1252. pub fn aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1253. impl<K: aya::Pod, V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::hash_map::HashMap<aya::maps::MapData, K, V>
  1254. pub type aya::maps::hash_map::HashMap<aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1255. pub fn aya::maps::hash_map::HashMap<aya::maps::MapData, K, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1256. impl<K: aya::Pod, V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::hash_map::PerCpuHashMap<aya::maps::MapData, K, V>
  1257. pub type aya::maps::hash_map::PerCpuHashMap<aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1258. pub fn aya::maps::hash_map::PerCpuHashMap<aya::maps::MapData, K, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1259. impl<K: aya::Pod, V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::lpm_trie::LpmTrie<aya::maps::MapData, K, V>
  1260. pub type aya::maps::lpm_trie::LpmTrie<aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1261. pub fn aya::maps::lpm_trie::LpmTrie<aya::maps::MapData, K, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1262. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::PerCpuArray<aya::maps::MapData, V>
  1263. pub type aya::maps::PerCpuArray<aya::maps::MapData, V>::Error = aya::maps::MapError
  1264. pub fn aya::maps::PerCpuArray<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1265. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::SockHash<aya::maps::MapData, V>
  1266. pub type aya::maps::SockHash<aya::maps::MapData, V>::Error = aya::maps::MapError
  1267. pub fn aya::maps::SockHash<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1268. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::array::Array<aya::maps::MapData, V>
  1269. pub type aya::maps::array::Array<aya::maps::MapData, V>::Error = aya::maps::MapError
  1270. pub fn aya::maps::array::Array<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1271. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::bloom_filter::BloomFilter<aya::maps::MapData, V>
  1272. pub type aya::maps::bloom_filter::BloomFilter<aya::maps::MapData, V>::Error = aya::maps::MapError
  1273. pub fn aya::maps::bloom_filter::BloomFilter<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1274. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::queue::Queue<aya::maps::MapData, V>
  1275. pub type aya::maps::queue::Queue<aya::maps::MapData, V>::Error = aya::maps::MapError
  1276. pub fn aya::maps::queue::Queue<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1277. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::stack::Stack<aya::maps::MapData, V>
  1278. pub type aya::maps::stack::Stack<aya::maps::MapData, V>::Error = aya::maps::MapError
  1279. pub fn aya::maps::stack::Stack<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1280. impl core::marker::Send for aya::maps::Map
  1281. impl core::marker::Sync for aya::maps::Map
  1282. impl core::marker::Unpin for aya::maps::Map
  1283. impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::Map
  1284. impl core::panic::unwind_safe::UnwindSafe for aya::maps::Map
  1285. impl<T, U> core::convert::Into<U> for aya::maps::Map where U: core::convert::From<T>
  1286. pub fn aya::maps::Map::into(self) -> U
  1287. impl<T, U> core::convert::TryFrom<U> for aya::maps::Map where U: core::convert::Into<T>
  1288. pub type aya::maps::Map::Error = core::convert::Infallible
  1289. pub fn aya::maps::Map::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1290. impl<T, U> core::convert::TryInto<U> for aya::maps::Map where U: core::convert::TryFrom<T>
  1291. pub type aya::maps::Map::Error = <U as core::convert::TryFrom<T>>::Error
  1292. pub fn aya::maps::Map::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1293. impl<T> core::any::Any for aya::maps::Map where T: 'static + core::marker::Sized
  1294. pub fn aya::maps::Map::type_id(&self) -> core::any::TypeId
  1295. impl<T> core::borrow::Borrow<T> for aya::maps::Map where T: core::marker::Sized
  1296. pub fn aya::maps::Map::borrow(&self) -> &T
  1297. impl<T> core::borrow::BorrowMut<T> for aya::maps::Map where T: core::marker::Sized
  1298. pub fn aya::maps::Map::borrow_mut(&mut self) -> &mut T
  1299. impl<T> core::convert::From<T> for aya::maps::Map
  1300. pub fn aya::maps::Map::from(t: T) -> T
  1301. pub enum aya::maps::MapError
  1302. pub aya::maps::MapError::CreateError
  1303. pub aya::maps::MapError::CreateError::code: core::ffi::c_long
  1304. pub aya::maps::MapError::CreateError::io_error: std::io::error::Error
  1305. pub aya::maps::MapError::CreateError::name: alloc::string::String
  1306. pub aya::maps::MapError::ElementNotFound
  1307. pub aya::maps::MapError::InvalidKeySize
  1308. pub aya::maps::MapError::InvalidKeySize::expected: usize
  1309. pub aya::maps::MapError::InvalidKeySize::size: usize
  1310. pub aya::maps::MapError::InvalidMapType
  1311. pub aya::maps::MapError::InvalidMapType::map_type: u32
  1312. pub aya::maps::MapError::InvalidName
  1313. pub aya::maps::MapError::InvalidName::name: alloc::string::String
  1314. pub aya::maps::MapError::InvalidValueSize
  1315. pub aya::maps::MapError::InvalidValueSize::expected: usize
  1316. pub aya::maps::MapError::InvalidValueSize::size: usize
  1317. pub aya::maps::MapError::KeyNotFound
  1318. pub aya::maps::MapError::OutOfBounds
  1319. pub aya::maps::MapError::OutOfBounds::index: u32
  1320. pub aya::maps::MapError::OutOfBounds::max_entries: u32
  1321. pub aya::maps::MapError::PinError
  1322. pub aya::maps::MapError::PinError::error: aya::pin::PinError
  1323. pub aya::maps::MapError::PinError::name: core::option::Option<alloc::string::String>
  1324. pub aya::maps::MapError::ProgIdNotSupported
  1325. pub aya::maps::MapError::ProgramNotLoaded
  1326. pub aya::maps::MapError::SyscallError(crate::sys::SyscallError)
  1327. pub aya::maps::MapError::Unsupported
  1328. pub aya::maps::MapError::Unsupported::map_type: u32
  1329. impl core::convert::From<aya::maps::MapError> for aya::BpfError
  1330. pub fn aya::BpfError::from(source: aya::maps::MapError) -> Self
  1331. impl core::convert::From<aya::maps::MapError> for aya::maps::xdp::XdpMapError
  1332. pub fn aya::maps::xdp::XdpMapError::from(source: aya::maps::MapError) -> Self
  1333. impl core::convert::From<aya::maps::MapError> for aya::programs::ProgramError
  1334. pub fn aya::programs::ProgramError::from(source: aya::maps::MapError) -> Self
  1335. impl core::convert::From<aya_obj::maps::InvalidMapTypeError> for aya::maps::MapError
  1336. pub fn aya::maps::MapError::from(e: aya_obj::maps::InvalidMapTypeError) -> Self
  1337. impl core::error::Error for aya::maps::MapError
  1338. pub fn aya::maps::MapError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  1339. impl core::fmt::Debug for aya::maps::MapError
  1340. pub fn aya::maps::MapError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1341. impl core::fmt::Display for aya::maps::MapError
  1342. pub fn aya::maps::MapError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1343. impl core::marker::Send for aya::maps::MapError
  1344. impl core::marker::Sync for aya::maps::MapError
  1345. impl core::marker::Unpin for aya::maps::MapError
  1346. impl !core::panic::unwind_safe::RefUnwindSafe for aya::maps::MapError
  1347. impl !core::panic::unwind_safe::UnwindSafe for aya::maps::MapError
  1348. impl<T, U> core::convert::Into<U> for aya::maps::MapError where U: core::convert::From<T>
  1349. pub fn aya::maps::MapError::into(self) -> U
  1350. impl<T, U> core::convert::TryFrom<U> for aya::maps::MapError where U: core::convert::Into<T>
  1351. pub type aya::maps::MapError::Error = core::convert::Infallible
  1352. pub fn aya::maps::MapError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1353. impl<T, U> core::convert::TryInto<U> for aya::maps::MapError where U: core::convert::TryFrom<T>
  1354. pub type aya::maps::MapError::Error = <U as core::convert::TryFrom<T>>::Error
  1355. pub fn aya::maps::MapError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1356. impl<T> alloc::string::ToString for aya::maps::MapError where T: core::fmt::Display + core::marker::Sized
  1357. pub fn aya::maps::MapError::to_string(&self) -> alloc::string::String
  1358. impl<T> core::any::Any for aya::maps::MapError where T: 'static + core::marker::Sized
  1359. pub fn aya::maps::MapError::type_id(&self) -> core::any::TypeId
  1360. impl<T> core::borrow::Borrow<T> for aya::maps::MapError where T: core::marker::Sized
  1361. pub fn aya::maps::MapError::borrow(&self) -> &T
  1362. impl<T> core::borrow::BorrowMut<T> for aya::maps::MapError where T: core::marker::Sized
  1363. pub fn aya::maps::MapError::borrow_mut(&mut self) -> &mut T
  1364. impl<T> core::convert::From<T> for aya::maps::MapError
  1365. pub fn aya::maps::MapError::from(t: T) -> T
  1366. pub struct aya::maps::Array<T, V: aya::Pod>
  1367. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::array::Array<T, V>
  1368. pub fn aya::maps::array::Array<T, V>::get(&self, index: &u32, flags: u64) -> core::result::Result<V, aya::maps::MapError>
  1369. pub fn aya::maps::array::Array<T, V>::iter(&self) -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<V, aya::maps::MapError>> + '_
  1370. pub fn aya::maps::array::Array<T, V>::len(&self) -> u32
  1371. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::array::Array<T, V>
  1372. pub fn aya::maps::array::Array<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1373. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::array::Array<T, V>
  1374. pub fn aya::maps::array::Array<T, V>::set(&mut self, index: u32, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  1375. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::array::Array<&'a aya::maps::MapData, V>
  1376. pub type aya::maps::array::Array<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  1377. pub fn aya::maps::array::Array<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1378. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::array::Array<&'a mut aya::maps::MapData, V>
  1379. pub type aya::maps::array::Array<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  1380. pub fn aya::maps::array::Array<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1381. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::IterableMap<u32, V> for aya::maps::array::Array<T, V>
  1382. pub fn aya::maps::array::Array<T, V>::get(&self, index: &u32) -> core::result::Result<V, aya::maps::MapError>
  1383. pub fn aya::maps::array::Array<T, V>::map(&self) -> &aya::maps::MapData
  1384. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::array::Array<aya::maps::MapData, V>
  1385. pub type aya::maps::array::Array<aya::maps::MapData, V>::Error = aya::maps::MapError
  1386. pub fn aya::maps::array::Array<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1387. impl<T, V> core::marker::Send for aya::maps::array::Array<T, V> where T: core::marker::Send, V: core::marker::Send
  1388. impl<T, V> core::marker::Sync for aya::maps::array::Array<T, V> where T: core::marker::Sync, V: core::marker::Sync
  1389. impl<T, V> core::marker::Unpin for aya::maps::array::Array<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  1390. impl<T, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::array::Array<T, V> where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  1391. impl<T, V> core::panic::unwind_safe::UnwindSafe for aya::maps::array::Array<T, V> where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  1392. impl<T, U> core::convert::Into<U> for aya::maps::array::Array<T, V> where U: core::convert::From<T>
  1393. pub fn aya::maps::array::Array<T, V>::into(self) -> U
  1394. impl<T, U> core::convert::TryFrom<U> for aya::maps::array::Array<T, V> where U: core::convert::Into<T>
  1395. pub type aya::maps::array::Array<T, V>::Error = core::convert::Infallible
  1396. pub fn aya::maps::array::Array<T, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1397. impl<T, U> core::convert::TryInto<U> for aya::maps::array::Array<T, V> where U: core::convert::TryFrom<T>
  1398. pub type aya::maps::array::Array<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  1399. pub fn aya::maps::array::Array<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1400. impl<T> core::any::Any for aya::maps::array::Array<T, V> where T: 'static + core::marker::Sized
  1401. pub fn aya::maps::array::Array<T, V>::type_id(&self) -> core::any::TypeId
  1402. impl<T> core::borrow::Borrow<T> for aya::maps::array::Array<T, V> where T: core::marker::Sized
  1403. pub fn aya::maps::array::Array<T, V>::borrow(&self) -> &T
  1404. impl<T> core::borrow::BorrowMut<T> for aya::maps::array::Array<T, V> where T: core::marker::Sized
  1405. pub fn aya::maps::array::Array<T, V>::borrow_mut(&mut self) -> &mut T
  1406. impl<T> core::convert::From<T> for aya::maps::array::Array<T, V>
  1407. pub fn aya::maps::array::Array<T, V>::from(t: T) -> T
  1408. pub struct aya::maps::AsyncPerfEventArray<T>
  1409. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::perf::AsyncPerfEventArray<T>
  1410. pub fn aya::maps::perf::AsyncPerfEventArray<T>::open(&mut self, index: u32, page_count: core::option::Option<usize>) -> core::result::Result<aya::maps::perf::AsyncPerfEventArrayBuffer<T>, aya::maps::perf::PerfBufferError>
  1411. pub fn aya::maps::perf::AsyncPerfEventArray<T>::pin<P: core::convert::AsRef<std::path::Path>>(&self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1412. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::perf::AsyncPerfEventArray<aya::maps::MapData>
  1413. pub type aya::maps::perf::AsyncPerfEventArray<aya::maps::MapData>::Error = aya::maps::MapError
  1414. pub fn aya::maps::perf::AsyncPerfEventArray<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1415. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::perf::AsyncPerfEventArray<&'a aya::maps::MapData>
  1416. pub type aya::maps::perf::AsyncPerfEventArray<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1417. pub fn aya::maps::perf::AsyncPerfEventArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1418. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::perf::AsyncPerfEventArray<&'a mut aya::maps::MapData>
  1419. pub type aya::maps::perf::AsyncPerfEventArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1420. pub fn aya::maps::perf::AsyncPerfEventArray<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1421. impl<T> core::marker::Send for aya::maps::perf::AsyncPerfEventArray<T> where T: core::marker::Sync + core::marker::Send
  1422. impl<T> core::marker::Sync for aya::maps::perf::AsyncPerfEventArray<T> where T: core::marker::Sync + core::marker::Send
  1423. impl<T> core::marker::Unpin for aya::maps::perf::AsyncPerfEventArray<T>
  1424. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::perf::AsyncPerfEventArray<T> where T: core::panic::unwind_safe::RefUnwindSafe
  1425. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::perf::AsyncPerfEventArray<T> where T: core::panic::unwind_safe::RefUnwindSafe
  1426. impl<T, U> core::convert::Into<U> for aya::maps::perf::AsyncPerfEventArray<T> where U: core::convert::From<T>
  1427. pub fn aya::maps::perf::AsyncPerfEventArray<T>::into(self) -> U
  1428. impl<T, U> core::convert::TryFrom<U> for aya::maps::perf::AsyncPerfEventArray<T> where U: core::convert::Into<T>
  1429. pub type aya::maps::perf::AsyncPerfEventArray<T>::Error = core::convert::Infallible
  1430. pub fn aya::maps::perf::AsyncPerfEventArray<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1431. impl<T, U> core::convert::TryInto<U> for aya::maps::perf::AsyncPerfEventArray<T> where U: core::convert::TryFrom<T>
  1432. pub type aya::maps::perf::AsyncPerfEventArray<T>::Error = <U as core::convert::TryFrom<T>>::Error
  1433. pub fn aya::maps::perf::AsyncPerfEventArray<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1434. impl<T> core::any::Any for aya::maps::perf::AsyncPerfEventArray<T> where T: 'static + core::marker::Sized
  1435. pub fn aya::maps::perf::AsyncPerfEventArray<T>::type_id(&self) -> core::any::TypeId
  1436. impl<T> core::borrow::Borrow<T> for aya::maps::perf::AsyncPerfEventArray<T> where T: core::marker::Sized
  1437. pub fn aya::maps::perf::AsyncPerfEventArray<T>::borrow(&self) -> &T
  1438. impl<T> core::borrow::BorrowMut<T> for aya::maps::perf::AsyncPerfEventArray<T> where T: core::marker::Sized
  1439. pub fn aya::maps::perf::AsyncPerfEventArray<T>::borrow_mut(&mut self) -> &mut T
  1440. impl<T> core::convert::From<T> for aya::maps::perf::AsyncPerfEventArray<T>
  1441. pub fn aya::maps::perf::AsyncPerfEventArray<T>::from(t: T) -> T
  1442. pub struct aya::maps::BloomFilter<T, V: aya::Pod>
  1443. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::bloom_filter::BloomFilter<T, V>
  1444. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::contains(&self, value: &V, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  1445. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::bloom_filter::BloomFilter<T, V>
  1446. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1447. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::bloom_filter::BloomFilter<T, V>
  1448. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::insert(&mut self, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  1449. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V>
  1450. pub type aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  1451. pub fn aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1452. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::bloom_filter::BloomFilter<&'a mut aya::maps::MapData, V>
  1453. pub type aya::maps::bloom_filter::BloomFilter<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  1454. pub fn aya::maps::bloom_filter::BloomFilter<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1455. impl<T: core::fmt::Debug, V: core::fmt::Debug + aya::Pod> core::fmt::Debug for aya::maps::bloom_filter::BloomFilter<T, V>
  1456. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1457. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::bloom_filter::BloomFilter<aya::maps::MapData, V>
  1458. pub type aya::maps::bloom_filter::BloomFilter<aya::maps::MapData, V>::Error = aya::maps::MapError
  1459. pub fn aya::maps::bloom_filter::BloomFilter<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1460. impl<T, V> core::marker::Send for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::marker::Send, V: core::marker::Send
  1461. impl<T, V> core::marker::Sync for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::marker::Sync, V: core::marker::Sync
  1462. impl<T, V> core::marker::Unpin for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  1463. impl<T, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  1464. impl<T, V> core::panic::unwind_safe::UnwindSafe for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  1465. impl<T, U> core::convert::Into<U> for aya::maps::bloom_filter::BloomFilter<T, V> where U: core::convert::From<T>
  1466. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::into(self) -> U
  1467. impl<T, U> core::convert::TryFrom<U> for aya::maps::bloom_filter::BloomFilter<T, V> where U: core::convert::Into<T>
  1468. pub type aya::maps::bloom_filter::BloomFilter<T, V>::Error = core::convert::Infallible
  1469. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1470. impl<T, U> core::convert::TryInto<U> for aya::maps::bloom_filter::BloomFilter<T, V> where U: core::convert::TryFrom<T>
  1471. pub type aya::maps::bloom_filter::BloomFilter<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  1472. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1473. impl<T> core::any::Any for aya::maps::bloom_filter::BloomFilter<T, V> where T: 'static + core::marker::Sized
  1474. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::type_id(&self) -> core::any::TypeId
  1475. impl<T> core::borrow::Borrow<T> for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::marker::Sized
  1476. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::borrow(&self) -> &T
  1477. impl<T> core::borrow::BorrowMut<T> for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::marker::Sized
  1478. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::borrow_mut(&mut self) -> &mut T
  1479. impl<T> core::convert::From<T> for aya::maps::bloom_filter::BloomFilter<T, V>
  1480. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::from(t: T) -> T
  1481. pub struct aya::maps::CpuMap<T>
  1482. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::CpuMap<T>
  1483. pub fn aya::maps::CpuMap<T>::get(&self, cpu_index: u32, flags: u64) -> core::result::Result<CpuMapValue, aya::maps::MapError>
  1484. pub fn aya::maps::CpuMap<T>::iter(&self) -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<CpuMapValue, aya::maps::MapError>> + '_
  1485. pub fn aya::maps::CpuMap<T>::len(&self) -> u32
  1486. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::CpuMap<T>
  1487. pub fn aya::maps::CpuMap<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1488. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::CpuMap<T>
  1489. pub fn aya::maps::CpuMap<T>::set(&mut self, cpu_index: u32, queue_size: u32, program: core::option::Option<&aya::programs::ProgramFd>, flags: u64) -> core::result::Result<(), aya::maps::xdp::XdpMapError>
  1490. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::CpuMap<aya::maps::MapData>
  1491. pub type aya::maps::CpuMap<aya::maps::MapData>::Error = aya::maps::MapError
  1492. pub fn aya::maps::CpuMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1493. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::CpuMap<&'a aya::maps::MapData>
  1494. pub type aya::maps::CpuMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1495. pub fn aya::maps::CpuMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1496. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::CpuMap<&'a mut aya::maps::MapData>
  1497. pub type aya::maps::CpuMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1498. pub fn aya::maps::CpuMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1499. impl<T> core::marker::Send for aya::maps::CpuMap<T> where T: core::marker::Send
  1500. impl<T> core::marker::Sync for aya::maps::CpuMap<T> where T: core::marker::Sync
  1501. impl<T> core::marker::Unpin for aya::maps::CpuMap<T> where T: core::marker::Unpin
  1502. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::CpuMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  1503. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::CpuMap<T> where T: core::panic::unwind_safe::UnwindSafe
  1504. impl<T, U> core::convert::Into<U> for aya::maps::CpuMap<T> where U: core::convert::From<T>
  1505. pub fn aya::maps::CpuMap<T>::into(self) -> U
  1506. impl<T, U> core::convert::TryFrom<U> for aya::maps::CpuMap<T> where U: core::convert::Into<T>
  1507. pub type aya::maps::CpuMap<T>::Error = core::convert::Infallible
  1508. pub fn aya::maps::CpuMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1509. impl<T, U> core::convert::TryInto<U> for aya::maps::CpuMap<T> where U: core::convert::TryFrom<T>
  1510. pub type aya::maps::CpuMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  1511. pub fn aya::maps::CpuMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1512. impl<T> core::any::Any for aya::maps::CpuMap<T> where T: 'static + core::marker::Sized
  1513. pub fn aya::maps::CpuMap<T>::type_id(&self) -> core::any::TypeId
  1514. impl<T> core::borrow::Borrow<T> for aya::maps::CpuMap<T> where T: core::marker::Sized
  1515. pub fn aya::maps::CpuMap<T>::borrow(&self) -> &T
  1516. impl<T> core::borrow::BorrowMut<T> for aya::maps::CpuMap<T> where T: core::marker::Sized
  1517. pub fn aya::maps::CpuMap<T>::borrow_mut(&mut self) -> &mut T
  1518. impl<T> core::convert::From<T> for aya::maps::CpuMap<T>
  1519. pub fn aya::maps::CpuMap<T>::from(t: T) -> T
  1520. pub struct aya::maps::DevMap<T>
  1521. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::DevMap<T>
  1522. pub fn aya::maps::DevMap<T>::get(&self, index: u32, flags: u64) -> core::result::Result<DevMapValue, aya::maps::MapError>
  1523. pub fn aya::maps::DevMap<T>::iter(&self) -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<DevMapValue, aya::maps::MapError>> + '_
  1524. pub fn aya::maps::DevMap<T>::len(&self) -> u32
  1525. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::DevMap<T>
  1526. pub fn aya::maps::DevMap<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1527. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::DevMap<T>
  1528. pub fn aya::maps::DevMap<T>::set(&mut self, index: u32, target_if_index: u32, program: core::option::Option<&aya::programs::ProgramFd>, flags: u64) -> core::result::Result<(), aya::maps::xdp::XdpMapError>
  1529. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::DevMap<aya::maps::MapData>
  1530. pub type aya::maps::DevMap<aya::maps::MapData>::Error = aya::maps::MapError
  1531. pub fn aya::maps::DevMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1532. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::DevMap<&'a aya::maps::MapData>
  1533. pub type aya::maps::DevMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1534. pub fn aya::maps::DevMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1535. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::DevMap<&'a mut aya::maps::MapData>
  1536. pub type aya::maps::DevMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1537. pub fn aya::maps::DevMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1538. impl<T> core::marker::Send for aya::maps::DevMap<T> where T: core::marker::Send
  1539. impl<T> core::marker::Sync for aya::maps::DevMap<T> where T: core::marker::Sync
  1540. impl<T> core::marker::Unpin for aya::maps::DevMap<T> where T: core::marker::Unpin
  1541. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::DevMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  1542. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::DevMap<T> where T: core::panic::unwind_safe::UnwindSafe
  1543. impl<T, U> core::convert::Into<U> for aya::maps::DevMap<T> where U: core::convert::From<T>
  1544. pub fn aya::maps::DevMap<T>::into(self) -> U
  1545. impl<T, U> core::convert::TryFrom<U> for aya::maps::DevMap<T> where U: core::convert::Into<T>
  1546. pub type aya::maps::DevMap<T>::Error = core::convert::Infallible
  1547. pub fn aya::maps::DevMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1548. impl<T, U> core::convert::TryInto<U> for aya::maps::DevMap<T> where U: core::convert::TryFrom<T>
  1549. pub type aya::maps::DevMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  1550. pub fn aya::maps::DevMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1551. impl<T> core::any::Any for aya::maps::DevMap<T> where T: 'static + core::marker::Sized
  1552. pub fn aya::maps::DevMap<T>::type_id(&self) -> core::any::TypeId
  1553. impl<T> core::borrow::Borrow<T> for aya::maps::DevMap<T> where T: core::marker::Sized
  1554. pub fn aya::maps::DevMap<T>::borrow(&self) -> &T
  1555. impl<T> core::borrow::BorrowMut<T> for aya::maps::DevMap<T> where T: core::marker::Sized
  1556. pub fn aya::maps::DevMap<T>::borrow_mut(&mut self) -> &mut T
  1557. impl<T> core::convert::From<T> for aya::maps::DevMap<T>
  1558. pub fn aya::maps::DevMap<T>::from(t: T) -> T
  1559. pub struct aya::maps::DevMapHash<T>
  1560. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::DevMapHash<T>
  1561. pub fn aya::maps::DevMapHash<T>::get(&self, key: u32, flags: u64) -> core::result::Result<DevMapValue, aya::maps::MapError>
  1562. pub fn aya::maps::DevMapHash<T>::iter(&self) -> aya::maps::MapIter<'_, u32, DevMapValue, Self>
  1563. pub fn aya::maps::DevMapHash<T>::keys(&self) -> aya::maps::MapKeys<'_, u32>
  1564. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::DevMapHash<T>
  1565. pub fn aya::maps::DevMapHash<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1566. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::DevMapHash<T>
  1567. pub fn aya::maps::DevMapHash<T>::insert(&mut self, key: u32, target_if_index: u32, program: core::option::Option<&aya::programs::ProgramFd>, flags: u64) -> core::result::Result<(), aya::maps::xdp::XdpMapError>
  1568. pub fn aya::maps::DevMapHash<T>::remove(&mut self, key: u32) -> core::result::Result<(), aya::maps::MapError>
  1569. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::DevMapHash<aya::maps::MapData>
  1570. pub type aya::maps::DevMapHash<aya::maps::MapData>::Error = aya::maps::MapError
  1571. pub fn aya::maps::DevMapHash<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1572. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::DevMapHash<&'a aya::maps::MapData>
  1573. pub type aya::maps::DevMapHash<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1574. pub fn aya::maps::DevMapHash<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1575. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::DevMapHash<&'a mut aya::maps::MapData>
  1576. pub type aya::maps::DevMapHash<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1577. pub fn aya::maps::DevMapHash<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1578. impl<T> core::marker::Send for aya::maps::DevMapHash<T> where T: core::marker::Send
  1579. impl<T> core::marker::Sync for aya::maps::DevMapHash<T> where T: core::marker::Sync
  1580. impl<T> core::marker::Unpin for aya::maps::DevMapHash<T> where T: core::marker::Unpin
  1581. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::DevMapHash<T> where T: core::panic::unwind_safe::RefUnwindSafe
  1582. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::DevMapHash<T> where T: core::panic::unwind_safe::UnwindSafe
  1583. impl<T, U> core::convert::Into<U> for aya::maps::DevMapHash<T> where U: core::convert::From<T>
  1584. pub fn aya::maps::DevMapHash<T>::into(self) -> U
  1585. impl<T, U> core::convert::TryFrom<U> for aya::maps::DevMapHash<T> where U: core::convert::Into<T>
  1586. pub type aya::maps::DevMapHash<T>::Error = core::convert::Infallible
  1587. pub fn aya::maps::DevMapHash<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1588. impl<T, U> core::convert::TryInto<U> for aya::maps::DevMapHash<T> where U: core::convert::TryFrom<T>
  1589. pub type aya::maps::DevMapHash<T>::Error = <U as core::convert::TryFrom<T>>::Error
  1590. pub fn aya::maps::DevMapHash<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1591. impl<T> core::any::Any for aya::maps::DevMapHash<T> where T: 'static + core::marker::Sized
  1592. pub fn aya::maps::DevMapHash<T>::type_id(&self) -> core::any::TypeId
  1593. impl<T> core::borrow::Borrow<T> for aya::maps::DevMapHash<T> where T: core::marker::Sized
  1594. pub fn aya::maps::DevMapHash<T>::borrow(&self) -> &T
  1595. impl<T> core::borrow::BorrowMut<T> for aya::maps::DevMapHash<T> where T: core::marker::Sized
  1596. pub fn aya::maps::DevMapHash<T>::borrow_mut(&mut self) -> &mut T
  1597. impl<T> core::convert::From<T> for aya::maps::DevMapHash<T>
  1598. pub fn aya::maps::DevMapHash<T>::from(t: T) -> T
  1599. pub struct aya::maps::HashMap<T, K, V>
  1600. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::HashMap<T, K, V>
  1601. pub fn aya::maps::hash_map::HashMap<T, K, V>::get(&self, key: &K, flags: u64) -> core::result::Result<V, aya::maps::MapError>
  1602. pub fn aya::maps::hash_map::HashMap<T, K, V>::iter(&self) -> aya::maps::MapIter<'_, K, V, Self>
  1603. pub fn aya::maps::hash_map::HashMap<T, K, V>::keys(&self) -> aya::maps::MapKeys<'_, K>
  1604. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::HashMap<T, K, V>
  1605. pub fn aya::maps::hash_map::HashMap<T, K, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1606. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::HashMap<T, K, V>
  1607. pub fn aya::maps::hash_map::HashMap<T, K, V>::insert(&mut self, key: impl core::borrow::Borrow<K>, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  1608. pub fn aya::maps::hash_map::HashMap<T, K, V>::remove(&mut self, key: &K) -> core::result::Result<(), aya::maps::MapError>
  1609. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::hash_map::HashMap<&'a aya::maps::MapData, K, V>
  1610. pub type aya::maps::hash_map::HashMap<&'a aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1611. pub fn aya::maps::hash_map::HashMap<&'a aya::maps::MapData, K, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1612. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::hash_map::HashMap<&'a mut aya::maps::MapData, K, V>
  1613. pub type aya::maps::hash_map::HashMap<&'a mut aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1614. pub fn aya::maps::hash_map::HashMap<&'a mut aya::maps::MapData, K, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1615. impl<K: aya::Pod, V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::hash_map::HashMap<aya::maps::MapData, K, V>
  1616. pub type aya::maps::hash_map::HashMap<aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1617. pub fn aya::maps::hash_map::HashMap<aya::maps::MapData, K, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1618. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap<K, V> for aya::maps::hash_map::HashMap<T, K, V>
  1619. pub fn aya::maps::hash_map::HashMap<T, K, V>::get(&self, key: &K) -> core::result::Result<V, aya::maps::MapError>
  1620. pub fn aya::maps::hash_map::HashMap<T, K, V>::map(&self) -> &aya::maps::MapData
  1621. impl<T: core::fmt::Debug, K: core::fmt::Debug, V: core::fmt::Debug> core::fmt::Debug for aya::maps::hash_map::HashMap<T, K, V>
  1622. pub fn aya::maps::hash_map::HashMap<T, K, V>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1623. impl<T, K, V> core::marker::Send for aya::maps::hash_map::HashMap<T, K, V> where K: core::marker::Send, T: core::marker::Send, V: core::marker::Send
  1624. impl<T, K, V> core::marker::Sync for aya::maps::hash_map::HashMap<T, K, V> where K: core::marker::Sync, T: core::marker::Sync, V: core::marker::Sync
  1625. impl<T, K, V> core::marker::Unpin for aya::maps::hash_map::HashMap<T, K, V> where K: core::marker::Unpin, T: core::marker::Unpin, V: core::marker::Unpin
  1626. impl<T, K, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::hash_map::HashMap<T, K, V> where K: core::panic::unwind_safe::RefUnwindSafe, T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  1627. impl<T, K, V> core::panic::unwind_safe::UnwindSafe for aya::maps::hash_map::HashMap<T, K, V> where K: core::panic::unwind_safe::UnwindSafe, T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  1628. impl<T, U> core::convert::Into<U> for aya::maps::hash_map::HashMap<T, K, V> where U: core::convert::From<T>
  1629. pub fn aya::maps::hash_map::HashMap<T, K, V>::into(self) -> U
  1630. impl<T, U> core::convert::TryFrom<U> for aya::maps::hash_map::HashMap<T, K, V> where U: core::convert::Into<T>
  1631. pub type aya::maps::hash_map::HashMap<T, K, V>::Error = core::convert::Infallible
  1632. pub fn aya::maps::hash_map::HashMap<T, K, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1633. impl<T, U> core::convert::TryInto<U> for aya::maps::hash_map::HashMap<T, K, V> where U: core::convert::TryFrom<T>
  1634. pub type aya::maps::hash_map::HashMap<T, K, V>::Error = <U as core::convert::TryFrom<T>>::Error
  1635. pub fn aya::maps::hash_map::HashMap<T, K, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1636. impl<T> core::any::Any for aya::maps::hash_map::HashMap<T, K, V> where T: 'static + core::marker::Sized
  1637. pub fn aya::maps::hash_map::HashMap<T, K, V>::type_id(&self) -> core::any::TypeId
  1638. impl<T> core::borrow::Borrow<T> for aya::maps::hash_map::HashMap<T, K, V> where T: core::marker::Sized
  1639. pub fn aya::maps::hash_map::HashMap<T, K, V>::borrow(&self) -> &T
  1640. impl<T> core::borrow::BorrowMut<T> for aya::maps::hash_map::HashMap<T, K, V> where T: core::marker::Sized
  1641. pub fn aya::maps::hash_map::HashMap<T, K, V>::borrow_mut(&mut self) -> &mut T
  1642. impl<T> core::convert::From<T> for aya::maps::hash_map::HashMap<T, K, V>
  1643. pub fn aya::maps::hash_map::HashMap<T, K, V>::from(t: T) -> T
  1644. pub struct aya::maps::LpmTrie<T, K, V>
  1645. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::lpm_trie::LpmTrie<T, K, V>
  1646. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::get(&self, key: &aya::maps::lpm_trie::Key<K>, flags: u64) -> core::result::Result<V, aya::maps::MapError>
  1647. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::iter(&self) -> aya::maps::MapIter<'_, aya::maps::lpm_trie::Key<K>, V, Self>
  1648. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::keys(&self) -> aya::maps::MapKeys<'_, aya::maps::lpm_trie::Key<K>>
  1649. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::lpm_trie::LpmTrie<T, K, V>
  1650. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1651. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::lpm_trie::LpmTrie<T, K, V>
  1652. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::insert(&mut self, key: &aya::maps::lpm_trie::Key<K>, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  1653. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::remove(&mut self, key: &aya::maps::lpm_trie::Key<K>) -> core::result::Result<(), aya::maps::MapError>
  1654. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::lpm_trie::LpmTrie<&'a aya::maps::MapData, K, V>
  1655. pub type aya::maps::lpm_trie::LpmTrie<&'a aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1656. pub fn aya::maps::lpm_trie::LpmTrie<&'a aya::maps::MapData, K, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1657. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::lpm_trie::LpmTrie<&'a mut aya::maps::MapData, K, V>
  1658. pub type aya::maps::lpm_trie::LpmTrie<&'a mut aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1659. pub fn aya::maps::lpm_trie::LpmTrie<&'a mut aya::maps::MapData, K, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1660. impl<K: aya::Pod, V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::lpm_trie::LpmTrie<aya::maps::MapData, K, V>
  1661. pub type aya::maps::lpm_trie::LpmTrie<aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1662. pub fn aya::maps::lpm_trie::LpmTrie<aya::maps::MapData, K, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1663. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap<aya::maps::lpm_trie::Key<K>, V> for aya::maps::lpm_trie::LpmTrie<T, K, V>
  1664. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::get(&self, key: &aya::maps::lpm_trie::Key<K>) -> core::result::Result<V, aya::maps::MapError>
  1665. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::map(&self) -> &aya::maps::MapData
  1666. impl<T: core::fmt::Debug, K: core::fmt::Debug, V: core::fmt::Debug> core::fmt::Debug for aya::maps::lpm_trie::LpmTrie<T, K, V>
  1667. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1668. impl<T, K, V> core::marker::Send for aya::maps::lpm_trie::LpmTrie<T, K, V> where K: core::marker::Send, T: core::marker::Send, V: core::marker::Send
  1669. impl<T, K, V> core::marker::Sync for aya::maps::lpm_trie::LpmTrie<T, K, V> where K: core::marker::Sync, T: core::marker::Sync, V: core::marker::Sync
  1670. impl<T, K, V> core::marker::Unpin for aya::maps::lpm_trie::LpmTrie<T, K, V> where K: core::marker::Unpin, T: core::marker::Unpin, V: core::marker::Unpin
  1671. impl<T, K, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::lpm_trie::LpmTrie<T, K, V> where K: core::panic::unwind_safe::RefUnwindSafe, T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  1672. impl<T, K, V> core::panic::unwind_safe::UnwindSafe for aya::maps::lpm_trie::LpmTrie<T, K, V> where K: core::panic::unwind_safe::UnwindSafe, T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  1673. impl<T, U> core::convert::Into<U> for aya::maps::lpm_trie::LpmTrie<T, K, V> where U: core::convert::From<T>
  1674. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::into(self) -> U
  1675. impl<T, U> core::convert::TryFrom<U> for aya::maps::lpm_trie::LpmTrie<T, K, V> where U: core::convert::Into<T>
  1676. pub type aya::maps::lpm_trie::LpmTrie<T, K, V>::Error = core::convert::Infallible
  1677. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1678. impl<T, U> core::convert::TryInto<U> for aya::maps::lpm_trie::LpmTrie<T, K, V> where U: core::convert::TryFrom<T>
  1679. pub type aya::maps::lpm_trie::LpmTrie<T, K, V>::Error = <U as core::convert::TryFrom<T>>::Error
  1680. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1681. impl<T> core::any::Any for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: 'static + core::marker::Sized
  1682. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::type_id(&self) -> core::any::TypeId
  1683. impl<T> core::borrow::Borrow<T> for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: core::marker::Sized
  1684. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::borrow(&self) -> &T
  1685. impl<T> core::borrow::BorrowMut<T> for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: core::marker::Sized
  1686. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::borrow_mut(&mut self) -> &mut T
  1687. impl<T> core::convert::From<T> for aya::maps::lpm_trie::LpmTrie<T, K, V>
  1688. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::from(t: T) -> T
  1689. pub struct aya::maps::MapData
  1690. impl aya::maps::MapData
  1691. pub fn aya::maps::MapData::create(obj: aya_obj::maps::Map, name: &str, btf_fd: core::option::Option<std::os::fd::owned::BorrowedFd<'_>>) -> core::result::Result<Self, aya::maps::MapError>
  1692. pub fn aya::maps::MapData::fd(&self) -> &aya::maps::MapFd
  1693. pub fn aya::maps::MapData::from_fd(fd: std::os::fd::owned::OwnedFd) -> core::result::Result<Self, aya::maps::MapError>
  1694. pub fn aya::maps::MapData::from_id(id: u32) -> core::result::Result<Self, aya::maps::MapError>
  1695. pub fn aya::maps::MapData::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::maps::MapError>
  1696. pub fn aya::maps::MapData::info(&self) -> core::result::Result<aya::maps::MapInfo, aya::maps::MapError>
  1697. pub fn aya::maps::MapData::pin<P: core::convert::AsRef<std::path::Path>>(&self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1698. impl core::fmt::Debug for aya::maps::MapData
  1699. pub fn aya::maps::MapData::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1700. impl core::marker::Send for aya::maps::MapData
  1701. impl core::marker::Sync for aya::maps::MapData
  1702. impl core::marker::Unpin for aya::maps::MapData
  1703. impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::MapData
  1704. impl core::panic::unwind_safe::UnwindSafe for aya::maps::MapData
  1705. impl<T, U> core::convert::Into<U> for aya::maps::MapData where U: core::convert::From<T>
  1706. pub fn aya::maps::MapData::into(self) -> U
  1707. impl<T, U> core::convert::TryFrom<U> for aya::maps::MapData where U: core::convert::Into<T>
  1708. pub type aya::maps::MapData::Error = core::convert::Infallible
  1709. pub fn aya::maps::MapData::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1710. impl<T, U> core::convert::TryInto<U> for aya::maps::MapData where U: core::convert::TryFrom<T>
  1711. pub type aya::maps::MapData::Error = <U as core::convert::TryFrom<T>>::Error
  1712. pub fn aya::maps::MapData::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1713. impl<T> core::any::Any for aya::maps::MapData where T: 'static + core::marker::Sized
  1714. pub fn aya::maps::MapData::type_id(&self) -> core::any::TypeId
  1715. impl<T> core::borrow::Borrow<T> for aya::maps::MapData where T: core::marker::Sized
  1716. pub fn aya::maps::MapData::borrow(&self) -> &T
  1717. impl<T> core::borrow::BorrowMut<T> for aya::maps::MapData where T: core::marker::Sized
  1718. pub fn aya::maps::MapData::borrow_mut(&mut self) -> &mut T
  1719. impl<T> core::convert::From<T> for aya::maps::MapData
  1720. pub fn aya::maps::MapData::from(t: T) -> T
  1721. pub struct aya::maps::MapFd(_)
  1722. impl core::fmt::Debug for aya::maps::MapFd
  1723. pub fn aya::maps::MapFd::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1724. impl std::os::fd::owned::AsFd for aya::maps::MapFd
  1725. pub fn aya::maps::MapFd::as_fd(&self) -> std::os::fd::owned::BorrowedFd<'_>
  1726. impl core::marker::Send for aya::maps::MapFd
  1727. impl core::marker::Sync for aya::maps::MapFd
  1728. impl core::marker::Unpin for aya::maps::MapFd
  1729. impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::MapFd
  1730. impl core::panic::unwind_safe::UnwindSafe for aya::maps::MapFd
  1731. impl<T, U> core::convert::Into<U> for aya::maps::MapFd where U: core::convert::From<T>
  1732. pub fn aya::maps::MapFd::into(self) -> U
  1733. impl<T, U> core::convert::TryFrom<U> for aya::maps::MapFd where U: core::convert::Into<T>
  1734. pub type aya::maps::MapFd::Error = core::convert::Infallible
  1735. pub fn aya::maps::MapFd::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1736. impl<T, U> core::convert::TryInto<U> for aya::maps::MapFd where U: core::convert::TryFrom<T>
  1737. pub type aya::maps::MapFd::Error = <U as core::convert::TryFrom<T>>::Error
  1738. pub fn aya::maps::MapFd::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1739. impl<T> core::any::Any for aya::maps::MapFd where T: 'static + core::marker::Sized
  1740. pub fn aya::maps::MapFd::type_id(&self) -> core::any::TypeId
  1741. impl<T> core::borrow::Borrow<T> for aya::maps::MapFd where T: core::marker::Sized
  1742. pub fn aya::maps::MapFd::borrow(&self) -> &T
  1743. impl<T> core::borrow::BorrowMut<T> for aya::maps::MapFd where T: core::marker::Sized
  1744. pub fn aya::maps::MapFd::borrow_mut(&mut self) -> &mut T
  1745. impl<T> core::convert::From<T> for aya::maps::MapFd
  1746. pub fn aya::maps::MapFd::from(t: T) -> T
  1747. pub struct aya::maps::MapInfo(_)
  1748. impl aya::maps::MapInfo
  1749. pub fn aya::maps::MapInfo::fd(&self) -> core::result::Result<aya::maps::MapFd, aya::maps::MapError>
  1750. pub fn aya::maps::MapInfo::from_id(id: u32) -> core::result::Result<Self, aya::maps::MapError>
  1751. pub fn aya::maps::MapInfo::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::maps::MapError>
  1752. pub fn aya::maps::MapInfo::id(&self) -> u32
  1753. pub fn aya::maps::MapInfo::key_size(&self) -> u32
  1754. pub fn aya::maps::MapInfo::map_flags(&self) -> u32
  1755. pub fn aya::maps::MapInfo::map_type(&self) -> u32
  1756. pub fn aya::maps::MapInfo::max_entries(&self) -> u32
  1757. pub fn aya::maps::MapInfo::name(&self) -> &[u8]
  1758. pub fn aya::maps::MapInfo::name_as_str(&self) -> core::option::Option<&str>
  1759. pub fn aya::maps::MapInfo::value_size(&self) -> u32
  1760. impl core::fmt::Debug for aya::maps::MapInfo
  1761. pub fn aya::maps::MapInfo::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1762. impl core::marker::Send for aya::maps::MapInfo
  1763. impl core::marker::Sync for aya::maps::MapInfo
  1764. impl core::marker::Unpin for aya::maps::MapInfo
  1765. impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::MapInfo
  1766. impl core::panic::unwind_safe::UnwindSafe for aya::maps::MapInfo
  1767. impl<T, U> core::convert::Into<U> for aya::maps::MapInfo where U: core::convert::From<T>
  1768. pub fn aya::maps::MapInfo::into(self) -> U
  1769. impl<T, U> core::convert::TryFrom<U> for aya::maps::MapInfo where U: core::convert::Into<T>
  1770. pub type aya::maps::MapInfo::Error = core::convert::Infallible
  1771. pub fn aya::maps::MapInfo::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1772. impl<T, U> core::convert::TryInto<U> for aya::maps::MapInfo where U: core::convert::TryFrom<T>
  1773. pub type aya::maps::MapInfo::Error = <U as core::convert::TryFrom<T>>::Error
  1774. pub fn aya::maps::MapInfo::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1775. impl<T> core::any::Any for aya::maps::MapInfo where T: 'static + core::marker::Sized
  1776. pub fn aya::maps::MapInfo::type_id(&self) -> core::any::TypeId
  1777. impl<T> core::borrow::Borrow<T> for aya::maps::MapInfo where T: core::marker::Sized
  1778. pub fn aya::maps::MapInfo::borrow(&self) -> &T
  1779. impl<T> core::borrow::BorrowMut<T> for aya::maps::MapInfo where T: core::marker::Sized
  1780. pub fn aya::maps::MapInfo::borrow_mut(&mut self) -> &mut T
  1781. impl<T> core::convert::From<T> for aya::maps::MapInfo
  1782. pub fn aya::maps::MapInfo::from(t: T) -> T
  1783. pub struct aya::maps::MapIter<'coll, K: aya::Pod, V, I: aya::maps::IterableMap<K, V>>
  1784. impl<K: aya::Pod, V, I: aya::maps::IterableMap<K, V>> core::iter::traits::iterator::Iterator for aya::maps::MapIter<'_, K, V, I>
  1785. pub type aya::maps::MapIter<'_, K, V, I>::Item = core::result::Result<(K, V), aya::maps::MapError>
  1786. pub fn aya::maps::MapIter<'_, K, V, I>::next(&mut self) -> core::option::Option<Self::Item>
  1787. impl<'coll, K, V, I> core::marker::Send for aya::maps::MapIter<'coll, K, V, I> where I: core::marker::Sync, K: core::marker::Send, V: core::marker::Send
  1788. impl<'coll, K, V, I> core::marker::Sync for aya::maps::MapIter<'coll, K, V, I> where I: core::marker::Sync, K: core::marker::Sync, V: core::marker::Sync
  1789. impl<'coll, K, V, I> core::marker::Unpin for aya::maps::MapIter<'coll, K, V, I> where K: core::marker::Unpin, V: core::marker::Unpin
  1790. impl<'coll, K, V, I> core::panic::unwind_safe::RefUnwindSafe for aya::maps::MapIter<'coll, K, V, I> where I: core::panic::unwind_safe::RefUnwindSafe, K: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  1791. impl<'coll, K, V, I> core::panic::unwind_safe::UnwindSafe for aya::maps::MapIter<'coll, K, V, I> where I: core::panic::unwind_safe::RefUnwindSafe, K: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  1792. impl<I> core::iter::traits::collect::IntoIterator for aya::maps::MapIter<'coll, K, V, I> where I: core::iter::traits::iterator::Iterator
  1793. pub type aya::maps::MapIter<'coll, K, V, I>::IntoIter = I
  1794. pub type aya::maps::MapIter<'coll, K, V, I>::Item = <I as core::iter::traits::iterator::Iterator>::Item
  1795. pub fn aya::maps::MapIter<'coll, K, V, I>::into_iter(self) -> I
  1796. impl<T, U> core::convert::Into<U> for aya::maps::MapIter<'coll, K, V, I> where U: core::convert::From<T>
  1797. pub fn aya::maps::MapIter<'coll, K, V, I>::into(self) -> U
  1798. impl<T, U> core::convert::TryFrom<U> for aya::maps::MapIter<'coll, K, V, I> where U: core::convert::Into<T>
  1799. pub type aya::maps::MapIter<'coll, K, V, I>::Error = core::convert::Infallible
  1800. pub fn aya::maps::MapIter<'coll, K, V, I>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1801. impl<T, U> core::convert::TryInto<U> for aya::maps::MapIter<'coll, K, V, I> where U: core::convert::TryFrom<T>
  1802. pub type aya::maps::MapIter<'coll, K, V, I>::Error = <U as core::convert::TryFrom<T>>::Error
  1803. pub fn aya::maps::MapIter<'coll, K, V, I>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1804. impl<T> core::any::Any for aya::maps::MapIter<'coll, K, V, I> where T: 'static + core::marker::Sized
  1805. pub fn aya::maps::MapIter<'coll, K, V, I>::type_id(&self) -> core::any::TypeId
  1806. impl<T> core::borrow::Borrow<T> for aya::maps::MapIter<'coll, K, V, I> where T: core::marker::Sized
  1807. pub fn aya::maps::MapIter<'coll, K, V, I>::borrow(&self) -> &T
  1808. impl<T> core::borrow::BorrowMut<T> for aya::maps::MapIter<'coll, K, V, I> where T: core::marker::Sized
  1809. pub fn aya::maps::MapIter<'coll, K, V, I>::borrow_mut(&mut self) -> &mut T
  1810. impl<T> core::convert::From<T> for aya::maps::MapIter<'coll, K, V, I>
  1811. pub fn aya::maps::MapIter<'coll, K, V, I>::from(t: T) -> T
  1812. pub struct aya::maps::MapKeys<'coll, K: aya::Pod>
  1813. impl<K: aya::Pod> core::iter::traits::iterator::Iterator for aya::maps::MapKeys<'_, K>
  1814. pub type aya::maps::MapKeys<'_, K>::Item = core::result::Result<K, aya::maps::MapError>
  1815. pub fn aya::maps::MapKeys<'_, K>::next(&mut self) -> core::option::Option<core::result::Result<K, aya::maps::MapError>>
  1816. impl<'coll, K> core::marker::Send for aya::maps::MapKeys<'coll, K> where K: core::marker::Send
  1817. impl<'coll, K> core::marker::Sync for aya::maps::MapKeys<'coll, K> where K: core::marker::Sync
  1818. impl<'coll, K> core::marker::Unpin for aya::maps::MapKeys<'coll, K> where K: core::marker::Unpin
  1819. impl<'coll, K> core::panic::unwind_safe::RefUnwindSafe for aya::maps::MapKeys<'coll, K> where K: core::panic::unwind_safe::RefUnwindSafe
  1820. impl<'coll, K> core::panic::unwind_safe::UnwindSafe for aya::maps::MapKeys<'coll, K> where K: core::panic::unwind_safe::UnwindSafe
  1821. impl<I> core::iter::traits::collect::IntoIterator for aya::maps::MapKeys<'coll, K> where I: core::iter::traits::iterator::Iterator
  1822. pub type aya::maps::MapKeys<'coll, K>::IntoIter = I
  1823. pub type aya::maps::MapKeys<'coll, K>::Item = <I as core::iter::traits::iterator::Iterator>::Item
  1824. pub fn aya::maps::MapKeys<'coll, K>::into_iter(self) -> I
  1825. impl<T, U> core::convert::Into<U> for aya::maps::MapKeys<'coll, K> where U: core::convert::From<T>
  1826. pub fn aya::maps::MapKeys<'coll, K>::into(self) -> U
  1827. impl<T, U> core::convert::TryFrom<U> for aya::maps::MapKeys<'coll, K> where U: core::convert::Into<T>
  1828. pub type aya::maps::MapKeys<'coll, K>::Error = core::convert::Infallible
  1829. pub fn aya::maps::MapKeys<'coll, K>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1830. impl<T, U> core::convert::TryInto<U> for aya::maps::MapKeys<'coll, K> where U: core::convert::TryFrom<T>
  1831. pub type aya::maps::MapKeys<'coll, K>::Error = <U as core::convert::TryFrom<T>>::Error
  1832. pub fn aya::maps::MapKeys<'coll, K>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1833. impl<T> core::any::Any for aya::maps::MapKeys<'coll, K> where T: 'static + core::marker::Sized
  1834. pub fn aya::maps::MapKeys<'coll, K>::type_id(&self) -> core::any::TypeId
  1835. impl<T> core::borrow::Borrow<T> for aya::maps::MapKeys<'coll, K> where T: core::marker::Sized
  1836. pub fn aya::maps::MapKeys<'coll, K>::borrow(&self) -> &T
  1837. impl<T> core::borrow::BorrowMut<T> for aya::maps::MapKeys<'coll, K> where T: core::marker::Sized
  1838. pub fn aya::maps::MapKeys<'coll, K>::borrow_mut(&mut self) -> &mut T
  1839. impl<T> core::convert::From<T> for aya::maps::MapKeys<'coll, K>
  1840. pub fn aya::maps::MapKeys<'coll, K>::from(t: T) -> T
  1841. pub struct aya::maps::PerCpuArray<T, V: aya::Pod>
  1842. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::PerCpuArray<T, V>
  1843. pub fn aya::maps::PerCpuArray<T, V>::get(&self, index: &u32, flags: u64) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  1844. pub fn aya::maps::PerCpuArray<T, V>::iter(&self) -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>> + '_
  1845. pub fn aya::maps::PerCpuArray<T, V>::len(&self) -> u32
  1846. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::PerCpuArray<T, V>
  1847. pub fn aya::maps::PerCpuArray<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1848. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::PerCpuArray<T, V>
  1849. pub fn aya::maps::PerCpuArray<T, V>::set(&mut self, index: u32, values: aya::maps::PerCpuValues<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  1850. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::PerCpuArray<&'a aya::maps::MapData, V>
  1851. pub type aya::maps::PerCpuArray<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  1852. pub fn aya::maps::PerCpuArray<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1853. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V>
  1854. pub type aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  1855. pub fn aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1856. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::IterableMap<u32, aya::maps::PerCpuValues<V>> for aya::maps::PerCpuArray<T, V>
  1857. pub fn aya::maps::PerCpuArray<T, V>::get(&self, index: &u32) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  1858. pub fn aya::maps::PerCpuArray<T, V>::map(&self) -> &aya::maps::MapData
  1859. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::PerCpuArray<aya::maps::MapData, V>
  1860. pub type aya::maps::PerCpuArray<aya::maps::MapData, V>::Error = aya::maps::MapError
  1861. pub fn aya::maps::PerCpuArray<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1862. impl<T, V> core::marker::Send for aya::maps::PerCpuArray<T, V> where T: core::marker::Send, V: core::marker::Send
  1863. impl<T, V> core::marker::Sync for aya::maps::PerCpuArray<T, V> where T: core::marker::Sync, V: core::marker::Sync
  1864. impl<T, V> core::marker::Unpin for aya::maps::PerCpuArray<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  1865. impl<T, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::PerCpuArray<T, V> where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  1866. impl<T, V> core::panic::unwind_safe::UnwindSafe for aya::maps::PerCpuArray<T, V> where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  1867. impl<T, U> core::convert::Into<U> for aya::maps::PerCpuArray<T, V> where U: core::convert::From<T>
  1868. pub fn aya::maps::PerCpuArray<T, V>::into(self) -> U
  1869. impl<T, U> core::convert::TryFrom<U> for aya::maps::PerCpuArray<T, V> where U: core::convert::Into<T>
  1870. pub type aya::maps::PerCpuArray<T, V>::Error = core::convert::Infallible
  1871. pub fn aya::maps::PerCpuArray<T, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1872. impl<T, U> core::convert::TryInto<U> for aya::maps::PerCpuArray<T, V> where U: core::convert::TryFrom<T>
  1873. pub type aya::maps::PerCpuArray<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  1874. pub fn aya::maps::PerCpuArray<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1875. impl<T> core::any::Any for aya::maps::PerCpuArray<T, V> where T: 'static + core::marker::Sized
  1876. pub fn aya::maps::PerCpuArray<T, V>::type_id(&self) -> core::any::TypeId
  1877. impl<T> core::borrow::Borrow<T> for aya::maps::PerCpuArray<T, V> where T: core::marker::Sized
  1878. pub fn aya::maps::PerCpuArray<T, V>::borrow(&self) -> &T
  1879. impl<T> core::borrow::BorrowMut<T> for aya::maps::PerCpuArray<T, V> where T: core::marker::Sized
  1880. pub fn aya::maps::PerCpuArray<T, V>::borrow_mut(&mut self) -> &mut T
  1881. impl<T> core::convert::From<T> for aya::maps::PerCpuArray<T, V>
  1882. pub fn aya::maps::PerCpuArray<T, V>::from(t: T) -> T
  1883. pub struct aya::maps::PerCpuHashMap<T, K: aya::Pod, V: aya::Pod>
  1884. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::PerCpuHashMap<T, K, V>
  1885. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::get(&self, key: &K, flags: u64) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  1886. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::iter(&self) -> aya::maps::MapIter<'_, K, aya::maps::PerCpuValues<V>, Self>
  1887. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::keys(&self) -> aya::maps::MapKeys<'_, K>
  1888. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::PerCpuHashMap<T, K, V>
  1889. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1890. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::PerCpuHashMap<T, K, V>
  1891. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::insert(&mut self, key: impl core::borrow::Borrow<K>, values: aya::maps::PerCpuValues<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  1892. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::remove(&mut self, key: &K) -> core::result::Result<(), aya::maps::MapError>
  1893. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::hash_map::PerCpuHashMap<&'a aya::maps::MapData, K, V>
  1894. pub type aya::maps::hash_map::PerCpuHashMap<&'a aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1895. pub fn aya::maps::hash_map::PerCpuHashMap<&'a aya::maps::MapData, K, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1896. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::hash_map::PerCpuHashMap<&'a mut aya::maps::MapData, K, V>
  1897. pub type aya::maps::hash_map::PerCpuHashMap<&'a mut aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1898. pub fn aya::maps::hash_map::PerCpuHashMap<&'a mut aya::maps::MapData, K, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1899. impl<K: aya::Pod, V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::hash_map::PerCpuHashMap<aya::maps::MapData, K, V>
  1900. pub type aya::maps::hash_map::PerCpuHashMap<aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1901. pub fn aya::maps::hash_map::PerCpuHashMap<aya::maps::MapData, K, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1902. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap<K, aya::maps::PerCpuValues<V>> for aya::maps::hash_map::PerCpuHashMap<T, K, V>
  1903. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::get(&self, key: &K) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  1904. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::map(&self) -> &aya::maps::MapData
  1905. impl<T, K, V> core::marker::Send for aya::maps::hash_map::PerCpuHashMap<T, K, V> where K: core::marker::Send, T: core::marker::Send, V: core::marker::Send
  1906. impl<T, K, V> core::marker::Sync for aya::maps::hash_map::PerCpuHashMap<T, K, V> where K: core::marker::Sync, T: core::marker::Sync, V: core::marker::Sync
  1907. impl<T, K, V> core::marker::Unpin for aya::maps::hash_map::PerCpuHashMap<T, K, V> where K: core::marker::Unpin, T: core::marker::Unpin, V: core::marker::Unpin
  1908. impl<T, K, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::hash_map::PerCpuHashMap<T, K, V> where K: core::panic::unwind_safe::RefUnwindSafe, T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  1909. impl<T, K, V> core::panic::unwind_safe::UnwindSafe for aya::maps::hash_map::PerCpuHashMap<T, K, V> where K: core::panic::unwind_safe::UnwindSafe, T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  1910. impl<T, U> core::convert::Into<U> for aya::maps::hash_map::PerCpuHashMap<T, K, V> where U: core::convert::From<T>
  1911. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::into(self) -> U
  1912. impl<T, U> core::convert::TryFrom<U> for aya::maps::hash_map::PerCpuHashMap<T, K, V> where U: core::convert::Into<T>
  1913. pub type aya::maps::hash_map::PerCpuHashMap<T, K, V>::Error = core::convert::Infallible
  1914. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1915. impl<T, U> core::convert::TryInto<U> for aya::maps::hash_map::PerCpuHashMap<T, K, V> where U: core::convert::TryFrom<T>
  1916. pub type aya::maps::hash_map::PerCpuHashMap<T, K, V>::Error = <U as core::convert::TryFrom<T>>::Error
  1917. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1918. impl<T> core::any::Any for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: 'static + core::marker::Sized
  1919. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::type_id(&self) -> core::any::TypeId
  1920. impl<T> core::borrow::Borrow<T> for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: core::marker::Sized
  1921. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::borrow(&self) -> &T
  1922. impl<T> core::borrow::BorrowMut<T> for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: core::marker::Sized
  1923. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::borrow_mut(&mut self) -> &mut T
  1924. impl<T> core::convert::From<T> for aya::maps::hash_map::PerCpuHashMap<T, K, V>
  1925. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::from(t: T) -> T
  1926. pub struct aya::maps::PerCpuValues<T: aya::Pod>
  1927. impl<T: aya::Pod> core::convert::TryFrom<alloc::vec::Vec<T>> for aya::maps::PerCpuValues<T>
  1928. pub type aya::maps::PerCpuValues<T>::Error = std::io::error::Error
  1929. pub fn aya::maps::PerCpuValues<T>::try_from(values: alloc::vec::Vec<T>) -> core::result::Result<Self, Self::Error>
  1930. impl<T: aya::Pod> core::ops::deref::Deref for aya::maps::PerCpuValues<T>
  1931. pub type aya::maps::PerCpuValues<T>::Target = alloc::boxed::Box<[T]>
  1932. pub fn aya::maps::PerCpuValues<T>::deref(&self) -> &Self::Target
  1933. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap<K, aya::maps::PerCpuValues<V>> for aya::maps::hash_map::PerCpuHashMap<T, K, V>
  1934. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::get(&self, key: &K) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  1935. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::map(&self) -> &aya::maps::MapData
  1936. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::IterableMap<u32, aya::maps::PerCpuValues<V>> for aya::maps::PerCpuArray<T, V>
  1937. pub fn aya::maps::PerCpuArray<T, V>::get(&self, index: &u32) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  1938. pub fn aya::maps::PerCpuArray<T, V>::map(&self) -> &aya::maps::MapData
  1939. impl<T: core::fmt::Debug + aya::Pod> core::fmt::Debug for aya::maps::PerCpuValues<T>
  1940. pub fn aya::maps::PerCpuValues<T>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1941. impl<T> core::marker::Send for aya::maps::PerCpuValues<T> where T: core::marker::Send
  1942. impl<T> core::marker::Sync for aya::maps::PerCpuValues<T> where T: core::marker::Sync
  1943. impl<T> core::marker::Unpin for aya::maps::PerCpuValues<T>
  1944. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::PerCpuValues<T> where T: core::panic::unwind_safe::RefUnwindSafe
  1945. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::PerCpuValues<T> where T: core::panic::unwind_safe::UnwindSafe
  1946. impl<T, U> core::convert::Into<U> for aya::maps::PerCpuValues<T> where U: core::convert::From<T>
  1947. pub fn aya::maps::PerCpuValues<T>::into(self) -> U
  1948. impl<T, U> core::convert::TryFrom<U> for aya::maps::PerCpuValues<T> where U: core::convert::Into<T>
  1949. pub type aya::maps::PerCpuValues<T>::Error = core::convert::Infallible
  1950. pub fn aya::maps::PerCpuValues<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1951. impl<T, U> core::convert::TryInto<U> for aya::maps::PerCpuValues<T> where U: core::convert::TryFrom<T>
  1952. pub type aya::maps::PerCpuValues<T>::Error = <U as core::convert::TryFrom<T>>::Error
  1953. pub fn aya::maps::PerCpuValues<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1954. impl<T> core::any::Any for aya::maps::PerCpuValues<T> where T: 'static + core::marker::Sized
  1955. pub fn aya::maps::PerCpuValues<T>::type_id(&self) -> core::any::TypeId
  1956. impl<T> core::borrow::Borrow<T> for aya::maps::PerCpuValues<T> where T: core::marker::Sized
  1957. pub fn aya::maps::PerCpuValues<T>::borrow(&self) -> &T
  1958. impl<T> core::borrow::BorrowMut<T> for aya::maps::PerCpuValues<T> where T: core::marker::Sized
  1959. pub fn aya::maps::PerCpuValues<T>::borrow_mut(&mut self) -> &mut T
  1960. impl<T> core::convert::From<T> for aya::maps::PerCpuValues<T>
  1961. pub fn aya::maps::PerCpuValues<T>::from(t: T) -> T
  1962. pub struct aya::maps::PerfEventArray<T>
  1963. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::perf::PerfEventArray<T>
  1964. pub fn aya::maps::perf::PerfEventArray<T>::pin<P: core::convert::AsRef<std::path::Path>>(&self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1965. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::perf::PerfEventArray<T>
  1966. pub fn aya::maps::perf::PerfEventArray<T>::open(&mut self, index: u32, page_count: core::option::Option<usize>) -> core::result::Result<aya::maps::perf::PerfEventArrayBuffer<T>, aya::maps::perf::PerfBufferError>
  1967. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::perf::PerfEventArray<aya::maps::MapData>
  1968. pub type aya::maps::perf::PerfEventArray<aya::maps::MapData>::Error = aya::maps::MapError
  1969. pub fn aya::maps::perf::PerfEventArray<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1970. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>
  1971. pub type aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1972. pub fn aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1973. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData>
  1974. pub type aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1975. pub fn aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1976. impl<T> core::marker::Send for aya::maps::perf::PerfEventArray<T> where T: core::marker::Sync + core::marker::Send
  1977. impl<T> core::marker::Sync for aya::maps::perf::PerfEventArray<T> where T: core::marker::Sync + core::marker::Send
  1978. impl<T> core::marker::Unpin for aya::maps::perf::PerfEventArray<T>
  1979. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::perf::PerfEventArray<T> where T: core::panic::unwind_safe::RefUnwindSafe
  1980. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::perf::PerfEventArray<T> where T: core::panic::unwind_safe::RefUnwindSafe
  1981. impl<T, U> core::convert::Into<U> for aya::maps::perf::PerfEventArray<T> where U: core::convert::From<T>
  1982. pub fn aya::maps::perf::PerfEventArray<T>::into(self) -> U
  1983. impl<T, U> core::convert::TryFrom<U> for aya::maps::perf::PerfEventArray<T> where U: core::convert::Into<T>
  1984. pub type aya::maps::perf::PerfEventArray<T>::Error = core::convert::Infallible
  1985. pub fn aya::maps::perf::PerfEventArray<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1986. impl<T, U> core::convert::TryInto<U> for aya::maps::perf::PerfEventArray<T> where U: core::convert::TryFrom<T>
  1987. pub type aya::maps::perf::PerfEventArray<T>::Error = <U as core::convert::TryFrom<T>>::Error
  1988. pub fn aya::maps::perf::PerfEventArray<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1989. impl<T> core::any::Any for aya::maps::perf::PerfEventArray<T> where T: 'static + core::marker::Sized
  1990. pub fn aya::maps::perf::PerfEventArray<T>::type_id(&self) -> core::any::TypeId
  1991. impl<T> core::borrow::Borrow<T> for aya::maps::perf::PerfEventArray<T> where T: core::marker::Sized
  1992. pub fn aya::maps::perf::PerfEventArray<T>::borrow(&self) -> &T
  1993. impl<T> core::borrow::BorrowMut<T> for aya::maps::perf::PerfEventArray<T> where T: core::marker::Sized
  1994. pub fn aya::maps::perf::PerfEventArray<T>::borrow_mut(&mut self) -> &mut T
  1995. impl<T> core::convert::From<T> for aya::maps::perf::PerfEventArray<T>
  1996. pub fn aya::maps::perf::PerfEventArray<T>::from(t: T) -> T
  1997. pub struct aya::maps::ProgramArray<T>
  1998. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::ProgramArray<T>
  1999. pub fn aya::maps::ProgramArray<T>::indices(&self) -> aya::maps::MapKeys<'_, u32>
  2000. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::ProgramArray<T>
  2001. pub fn aya::maps::ProgramArray<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2002. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::ProgramArray<T>
  2003. pub fn aya::maps::ProgramArray<T>::clear_index(&mut self, index: &u32) -> core::result::Result<(), aya::maps::MapError>
  2004. pub fn aya::maps::ProgramArray<T>::set(&mut self, index: u32, program: &aya::programs::ProgramFd, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  2005. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::ProgramArray<aya::maps::MapData>
  2006. pub type aya::maps::ProgramArray<aya::maps::MapData>::Error = aya::maps::MapError
  2007. pub fn aya::maps::ProgramArray<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2008. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::ProgramArray<&'a aya::maps::MapData>
  2009. pub type aya::maps::ProgramArray<&'a aya::maps::MapData>::Error = aya::maps::MapError
  2010. pub fn aya::maps::ProgramArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2011. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::ProgramArray<&'a mut aya::maps::MapData>
  2012. pub type aya::maps::ProgramArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  2013. pub fn aya::maps::ProgramArray<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2014. impl<T> core::marker::Send for aya::maps::ProgramArray<T> where T: core::marker::Send
  2015. impl<T> core::marker::Sync for aya::maps::ProgramArray<T> where T: core::marker::Sync
  2016. impl<T> core::marker::Unpin for aya::maps::ProgramArray<T> where T: core::marker::Unpin
  2017. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::ProgramArray<T> where T: core::panic::unwind_safe::RefUnwindSafe
  2018. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::ProgramArray<T> where T: core::panic::unwind_safe::UnwindSafe
  2019. impl<T, U> core::convert::Into<U> for aya::maps::ProgramArray<T> where U: core::convert::From<T>
  2020. pub fn aya::maps::ProgramArray<T>::into(self) -> U
  2021. impl<T, U> core::convert::TryFrom<U> for aya::maps::ProgramArray<T> where U: core::convert::Into<T>
  2022. pub type aya::maps::ProgramArray<T>::Error = core::convert::Infallible
  2023. pub fn aya::maps::ProgramArray<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2024. impl<T, U> core::convert::TryInto<U> for aya::maps::ProgramArray<T> where U: core::convert::TryFrom<T>
  2025. pub type aya::maps::ProgramArray<T>::Error = <U as core::convert::TryFrom<T>>::Error
  2026. pub fn aya::maps::ProgramArray<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2027. impl<T> core::any::Any for aya::maps::ProgramArray<T> where T: 'static + core::marker::Sized
  2028. pub fn aya::maps::ProgramArray<T>::type_id(&self) -> core::any::TypeId
  2029. impl<T> core::borrow::Borrow<T> for aya::maps::ProgramArray<T> where T: core::marker::Sized
  2030. pub fn aya::maps::ProgramArray<T>::borrow(&self) -> &T
  2031. impl<T> core::borrow::BorrowMut<T> for aya::maps::ProgramArray<T> where T: core::marker::Sized
  2032. pub fn aya::maps::ProgramArray<T>::borrow_mut(&mut self) -> &mut T
  2033. impl<T> core::convert::From<T> for aya::maps::ProgramArray<T>
  2034. pub fn aya::maps::ProgramArray<T>::from(t: T) -> T
  2035. pub struct aya::maps::Queue<T, V: aya::Pod>
  2036. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::queue::Queue<T, V>
  2037. pub fn aya::maps::queue::Queue<T, V>::capacity(&self) -> u32
  2038. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::queue::Queue<T, V>
  2039. pub fn aya::maps::queue::Queue<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2040. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::queue::Queue<T, V>
  2041. pub fn aya::maps::queue::Queue<T, V>::pop(&mut self, flags: u64) -> core::result::Result<V, aya::maps::MapError>
  2042. pub fn aya::maps::queue::Queue<T, V>::push(&mut self, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  2043. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::queue::Queue<&'a aya::maps::MapData, V>
  2044. pub type aya::maps::queue::Queue<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  2045. pub fn aya::maps::queue::Queue<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2046. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::queue::Queue<&'a mut aya::maps::MapData, V>
  2047. pub type aya::maps::queue::Queue<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  2048. pub fn aya::maps::queue::Queue<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2049. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::queue::Queue<aya::maps::MapData, V>
  2050. pub type aya::maps::queue::Queue<aya::maps::MapData, V>::Error = aya::maps::MapError
  2051. pub fn aya::maps::queue::Queue<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2052. impl<T, V> core::marker::Send for aya::maps::queue::Queue<T, V> where T: core::marker::Send, V: core::marker::Send
  2053. impl<T, V> core::marker::Sync for aya::maps::queue::Queue<T, V> where T: core::marker::Sync, V: core::marker::Sync
  2054. impl<T, V> core::marker::Unpin for aya::maps::queue::Queue<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  2055. impl<T, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::queue::Queue<T, V> where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  2056. impl<T, V> core::panic::unwind_safe::UnwindSafe for aya::maps::queue::Queue<T, V> where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  2057. impl<T, U> core::convert::Into<U> for aya::maps::queue::Queue<T, V> where U: core::convert::From<T>
  2058. pub fn aya::maps::queue::Queue<T, V>::into(self) -> U
  2059. impl<T, U> core::convert::TryFrom<U> for aya::maps::queue::Queue<T, V> where U: core::convert::Into<T>
  2060. pub type aya::maps::queue::Queue<T, V>::Error = core::convert::Infallible
  2061. pub fn aya::maps::queue::Queue<T, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2062. impl<T, U> core::convert::TryInto<U> for aya::maps::queue::Queue<T, V> where U: core::convert::TryFrom<T>
  2063. pub type aya::maps::queue::Queue<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  2064. pub fn aya::maps::queue::Queue<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2065. impl<T> core::any::Any for aya::maps::queue::Queue<T, V> where T: 'static + core::marker::Sized
  2066. pub fn aya::maps::queue::Queue<T, V>::type_id(&self) -> core::any::TypeId
  2067. impl<T> core::borrow::Borrow<T> for aya::maps::queue::Queue<T, V> where T: core::marker::Sized
  2068. pub fn aya::maps::queue::Queue<T, V>::borrow(&self) -> &T
  2069. impl<T> core::borrow::BorrowMut<T> for aya::maps::queue::Queue<T, V> where T: core::marker::Sized
  2070. pub fn aya::maps::queue::Queue<T, V>::borrow_mut(&mut self) -> &mut T
  2071. impl<T> core::convert::From<T> for aya::maps::queue::Queue<T, V>
  2072. pub fn aya::maps::queue::Queue<T, V>::from(t: T) -> T
  2073. pub struct aya::maps::RingBuf<T>
  2074. impl<T> aya::maps::ring_buf::RingBuf<T>
  2075. pub fn aya::maps::ring_buf::RingBuf<T>::next(&mut self) -> core::option::Option<aya::maps::ring_buf::RingBufItem<'_>>
  2076. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::ring_buf::RingBuf<aya::maps::MapData>
  2077. pub type aya::maps::ring_buf::RingBuf<aya::maps::MapData>::Error = aya::maps::MapError
  2078. pub fn aya::maps::ring_buf::RingBuf<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2079. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::ring_buf::RingBuf<&'a aya::maps::MapData>
  2080. pub type aya::maps::ring_buf::RingBuf<&'a aya::maps::MapData>::Error = aya::maps::MapError
  2081. pub fn aya::maps::ring_buf::RingBuf<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2082. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::ring_buf::RingBuf<&'a mut aya::maps::MapData>
  2083. pub type aya::maps::ring_buf::RingBuf<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  2084. pub fn aya::maps::ring_buf::RingBuf<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2085. impl<T: core::borrow::Borrow<aya::maps::MapData>> std::os::fd::raw::AsRawFd for aya::maps::ring_buf::RingBuf<T>
  2086. pub fn aya::maps::ring_buf::RingBuf<T>::as_raw_fd(&self) -> std::os::fd::raw::RawFd
  2087. impl<T> core::marker::Send for aya::maps::ring_buf::RingBuf<T> where T: core::marker::Send
  2088. impl<T> core::marker::Sync for aya::maps::ring_buf::RingBuf<T> where T: core::marker::Sync
  2089. impl<T> core::marker::Unpin for aya::maps::ring_buf::RingBuf<T> where T: core::marker::Unpin
  2090. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::ring_buf::RingBuf<T> where T: core::panic::unwind_safe::RefUnwindSafe
  2091. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::ring_buf::RingBuf<T> where T: core::panic::unwind_safe::UnwindSafe
  2092. impl<T, U> core::convert::Into<U> for aya::maps::ring_buf::RingBuf<T> where U: core::convert::From<T>
  2093. pub fn aya::maps::ring_buf::RingBuf<T>::into(self) -> U
  2094. impl<T, U> core::convert::TryFrom<U> for aya::maps::ring_buf::RingBuf<T> where U: core::convert::Into<T>
  2095. pub type aya::maps::ring_buf::RingBuf<T>::Error = core::convert::Infallible
  2096. pub fn aya::maps::ring_buf::RingBuf<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2097. impl<T, U> core::convert::TryInto<U> for aya::maps::ring_buf::RingBuf<T> where U: core::convert::TryFrom<T>
  2098. pub type aya::maps::ring_buf::RingBuf<T>::Error = <U as core::convert::TryFrom<T>>::Error
  2099. pub fn aya::maps::ring_buf::RingBuf<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2100. impl<T> core::any::Any for aya::maps::ring_buf::RingBuf<T> where T: 'static + core::marker::Sized
  2101. pub fn aya::maps::ring_buf::RingBuf<T>::type_id(&self) -> core::any::TypeId
  2102. impl<T> core::borrow::Borrow<T> for aya::maps::ring_buf::RingBuf<T> where T: core::marker::Sized
  2103. pub fn aya::maps::ring_buf::RingBuf<T>::borrow(&self) -> &T
  2104. impl<T> core::borrow::BorrowMut<T> for aya::maps::ring_buf::RingBuf<T> where T: core::marker::Sized
  2105. pub fn aya::maps::ring_buf::RingBuf<T>::borrow_mut(&mut self) -> &mut T
  2106. impl<T> core::convert::From<T> for aya::maps::ring_buf::RingBuf<T>
  2107. pub fn aya::maps::ring_buf::RingBuf<T>::from(t: T) -> T
  2108. pub struct aya::maps::SockHash<T, K>
  2109. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod> aya::maps::SockHash<T, K>
  2110. pub fn aya::maps::SockHash<T, K>::fd(&self) -> &aya::maps::sock::SockMapFd
  2111. pub fn aya::maps::SockHash<T, K>::get(&self, key: &K, flags: u64) -> core::result::Result<std::os::fd::raw::RawFd, aya::maps::MapError>
  2112. pub fn aya::maps::SockHash<T, K>::iter(&self) -> aya::maps::MapIter<'_, K, std::os::fd::raw::RawFd, Self>
  2113. pub fn aya::maps::SockHash<T, K>::keys(&self) -> aya::maps::MapKeys<'_, K>
  2114. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::SockHash<T, V>
  2115. pub fn aya::maps::SockHash<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2116. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, K: aya::Pod> aya::maps::SockHash<T, K>
  2117. pub fn aya::maps::SockHash<T, K>::insert<I: std::os::fd::raw::AsRawFd>(&mut self, key: impl core::borrow::Borrow<K>, value: I, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  2118. pub fn aya::maps::SockHash<T, K>::remove(&mut self, key: &K) -> core::result::Result<(), aya::maps::MapError>
  2119. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::SockHash<&'a aya::maps::MapData, V>
  2120. pub type aya::maps::SockHash<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  2121. pub fn aya::maps::SockHash<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2122. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::SockHash<&'a mut aya::maps::MapData, V>
  2123. pub type aya::maps::SockHash<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  2124. pub fn aya::maps::SockHash<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2125. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod> aya::maps::IterableMap<K, i32> for aya::maps::SockHash<T, K>
  2126. pub fn aya::maps::SockHash<T, K>::get(&self, key: &K) -> core::result::Result<std::os::fd::raw::RawFd, aya::maps::MapError>
  2127. pub fn aya::maps::SockHash<T, K>::map(&self) -> &aya::maps::MapData
  2128. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::SockHash<aya::maps::MapData, V>
  2129. pub type aya::maps::SockHash<aya::maps::MapData, V>::Error = aya::maps::MapError
  2130. pub fn aya::maps::SockHash<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2131. impl<T, K> core::marker::Send for aya::maps::SockHash<T, K> where K: core::marker::Send, T: core::marker::Send
  2132. impl<T, K> core::marker::Sync for aya::maps::SockHash<T, K> where K: core::marker::Sync, T: core::marker::Sync
  2133. impl<T, K> core::marker::Unpin for aya::maps::SockHash<T, K> where K: core::marker::Unpin, T: core::marker::Unpin
  2134. impl<T, K> core::panic::unwind_safe::RefUnwindSafe for aya::maps::SockHash<T, K> where K: core::panic::unwind_safe::RefUnwindSafe, T: core::panic::unwind_safe::RefUnwindSafe
  2135. impl<T, K> core::panic::unwind_safe::UnwindSafe for aya::maps::SockHash<T, K> where K: core::panic::unwind_safe::UnwindSafe, T: core::panic::unwind_safe::UnwindSafe
  2136. impl<T, U> core::convert::Into<U> for aya::maps::SockHash<T, K> where U: core::convert::From<T>
  2137. pub fn aya::maps::SockHash<T, K>::into(self) -> U
  2138. impl<T, U> core::convert::TryFrom<U> for aya::maps::SockHash<T, K> where U: core::convert::Into<T>
  2139. pub type aya::maps::SockHash<T, K>::Error = core::convert::Infallible
  2140. pub fn aya::maps::SockHash<T, K>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2141. impl<T, U> core::convert::TryInto<U> for aya::maps::SockHash<T, K> where U: core::convert::TryFrom<T>
  2142. pub type aya::maps::SockHash<T, K>::Error = <U as core::convert::TryFrom<T>>::Error
  2143. pub fn aya::maps::SockHash<T, K>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2144. impl<T> core::any::Any for aya::maps::SockHash<T, K> where T: 'static + core::marker::Sized
  2145. pub fn aya::maps::SockHash<T, K>::type_id(&self) -> core::any::TypeId
  2146. impl<T> core::borrow::Borrow<T> for aya::maps::SockHash<T, K> where T: core::marker::Sized
  2147. pub fn aya::maps::SockHash<T, K>::borrow(&self) -> &T
  2148. impl<T> core::borrow::BorrowMut<T> for aya::maps::SockHash<T, K> where T: core::marker::Sized
  2149. pub fn aya::maps::SockHash<T, K>::borrow_mut(&mut self) -> &mut T
  2150. impl<T> core::convert::From<T> for aya::maps::SockHash<T, K>
  2151. pub fn aya::maps::SockHash<T, K>::from(t: T) -> T
  2152. pub struct aya::maps::SockMap<T>
  2153. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::SockMap<T>
  2154. pub fn aya::maps::SockMap<T>::fd(&self) -> &aya::maps::sock::SockMapFd
  2155. pub fn aya::maps::SockMap<T>::indices(&self) -> aya::maps::MapKeys<'_, u32>
  2156. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::SockMap<T>
  2157. pub fn aya::maps::SockMap<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2158. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::SockMap<T>
  2159. pub fn aya::maps::SockMap<T>::clear_index(&mut self, index: &u32) -> core::result::Result<(), aya::maps::MapError>
  2160. pub fn aya::maps::SockMap<T>::set<I: std::os::fd::raw::AsRawFd>(&mut self, index: u32, socket: &I, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  2161. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::SockMap<aya::maps::MapData>
  2162. pub type aya::maps::SockMap<aya::maps::MapData>::Error = aya::maps::MapError
  2163. pub fn aya::maps::SockMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2164. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::SockMap<&'a aya::maps::MapData>
  2165. pub type aya::maps::SockMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  2166. pub fn aya::maps::SockMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2167. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::SockMap<&'a mut aya::maps::MapData>
  2168. pub type aya::maps::SockMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  2169. pub fn aya::maps::SockMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2170. impl<T> core::marker::Send for aya::maps::SockMap<T> where T: core::marker::Send
  2171. impl<T> core::marker::Sync for aya::maps::SockMap<T> where T: core::marker::Sync
  2172. impl<T> core::marker::Unpin for aya::maps::SockMap<T> where T: core::marker::Unpin
  2173. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::SockMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  2174. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::SockMap<T> where T: core::panic::unwind_safe::UnwindSafe
  2175. impl<T, U> core::convert::Into<U> for aya::maps::SockMap<T> where U: core::convert::From<T>
  2176. pub fn aya::maps::SockMap<T>::into(self) -> U
  2177. impl<T, U> core::convert::TryFrom<U> for aya::maps::SockMap<T> where U: core::convert::Into<T>
  2178. pub type aya::maps::SockMap<T>::Error = core::convert::Infallible
  2179. pub fn aya::maps::SockMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2180. impl<T, U> core::convert::TryInto<U> for aya::maps::SockMap<T> where U: core::convert::TryFrom<T>
  2181. pub type aya::maps::SockMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  2182. pub fn aya::maps::SockMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2183. impl<T> core::any::Any for aya::maps::SockMap<T> where T: 'static + core::marker::Sized
  2184. pub fn aya::maps::SockMap<T>::type_id(&self) -> core::any::TypeId
  2185. impl<T> core::borrow::Borrow<T> for aya::maps::SockMap<T> where T: core::marker::Sized
  2186. pub fn aya::maps::SockMap<T>::borrow(&self) -> &T
  2187. impl<T> core::borrow::BorrowMut<T> for aya::maps::SockMap<T> where T: core::marker::Sized
  2188. pub fn aya::maps::SockMap<T>::borrow_mut(&mut self) -> &mut T
  2189. impl<T> core::convert::From<T> for aya::maps::SockMap<T>
  2190. pub fn aya::maps::SockMap<T>::from(t: T) -> T
  2191. pub struct aya::maps::Stack<T, V: aya::Pod>
  2192. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::stack::Stack<T, V>
  2193. pub fn aya::maps::stack::Stack<T, V>::capacity(&self) -> u32
  2194. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::stack::Stack<T, V>
  2195. pub fn aya::maps::stack::Stack<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2196. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::stack::Stack<T, V>
  2197. pub fn aya::maps::stack::Stack<T, V>::pop(&mut self, flags: u64) -> core::result::Result<V, aya::maps::MapError>
  2198. pub fn aya::maps::stack::Stack<T, V>::push(&mut self, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  2199. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::stack::Stack<&'a aya::maps::MapData, V>
  2200. pub type aya::maps::stack::Stack<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  2201. pub fn aya::maps::stack::Stack<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2202. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::stack::Stack<&'a mut aya::maps::MapData, V>
  2203. pub type aya::maps::stack::Stack<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  2204. pub fn aya::maps::stack::Stack<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2205. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::stack::Stack<aya::maps::MapData, V>
  2206. pub type aya::maps::stack::Stack<aya::maps::MapData, V>::Error = aya::maps::MapError
  2207. pub fn aya::maps::stack::Stack<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2208. impl<T, V> core::marker::Send for aya::maps::stack::Stack<T, V> where T: core::marker::Send, V: core::marker::Send
  2209. impl<T, V> core::marker::Sync for aya::maps::stack::Stack<T, V> where T: core::marker::Sync, V: core::marker::Sync
  2210. impl<T, V> core::marker::Unpin for aya::maps::stack::Stack<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  2211. impl<T, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::stack::Stack<T, V> where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  2212. impl<T, V> core::panic::unwind_safe::UnwindSafe for aya::maps::stack::Stack<T, V> where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  2213. impl<T, U> core::convert::Into<U> for aya::maps::stack::Stack<T, V> where U: core::convert::From<T>
  2214. pub fn aya::maps::stack::Stack<T, V>::into(self) -> U
  2215. impl<T, U> core::convert::TryFrom<U> for aya::maps::stack::Stack<T, V> where U: core::convert::Into<T>
  2216. pub type aya::maps::stack::Stack<T, V>::Error = core::convert::Infallible
  2217. pub fn aya::maps::stack::Stack<T, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2218. impl<T, U> core::convert::TryInto<U> for aya::maps::stack::Stack<T, V> where U: core::convert::TryFrom<T>
  2219. pub type aya::maps::stack::Stack<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  2220. pub fn aya::maps::stack::Stack<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2221. impl<T> core::any::Any for aya::maps::stack::Stack<T, V> where T: 'static + core::marker::Sized
  2222. pub fn aya::maps::stack::Stack<T, V>::type_id(&self) -> core::any::TypeId
  2223. impl<T> core::borrow::Borrow<T> for aya::maps::stack::Stack<T, V> where T: core::marker::Sized
  2224. pub fn aya::maps::stack::Stack<T, V>::borrow(&self) -> &T
  2225. impl<T> core::borrow::BorrowMut<T> for aya::maps::stack::Stack<T, V> where T: core::marker::Sized
  2226. pub fn aya::maps::stack::Stack<T, V>::borrow_mut(&mut self) -> &mut T
  2227. impl<T> core::convert::From<T> for aya::maps::stack::Stack<T, V>
  2228. pub fn aya::maps::stack::Stack<T, V>::from(t: T) -> T
  2229. pub struct aya::maps::StackTraceMap<T>
  2230. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::stack_trace::StackTraceMap<T>
  2231. pub fn aya::maps::stack_trace::StackTraceMap<T>::get(&self, stack_id: &u32, flags: u64) -> core::result::Result<aya::maps::stack_trace::StackTrace, aya::maps::MapError>
  2232. pub fn aya::maps::stack_trace::StackTraceMap<T>::iter(&self) -> aya::maps::MapIter<'_, u32, aya::maps::stack_trace::StackTrace, Self>
  2233. pub fn aya::maps::stack_trace::StackTraceMap<T>::stack_ids(&self) -> aya::maps::MapKeys<'_, u32>
  2234. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::stack_trace::StackTraceMap<T>
  2235. pub fn aya::maps::stack_trace::StackTraceMap<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2236. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::stack_trace::StackTraceMap<T>
  2237. pub fn aya::maps::stack_trace::StackTraceMap<T>::remove(&mut self, stack_id: &u32) -> core::result::Result<(), aya::maps::MapError>
  2238. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<aya::maps::MapData>
  2239. pub type aya::maps::stack_trace::StackTraceMap<aya::maps::MapData>::Error = aya::maps::MapError
  2240. pub fn aya::maps::stack_trace::StackTraceMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2241. impl<'a, T: core::borrow::Borrow<aya::maps::MapData>> core::iter::traits::collect::IntoIterator for &'a aya::maps::stack_trace::StackTraceMap<T>
  2242. pub type &'a aya::maps::stack_trace::StackTraceMap<T>::IntoIter = aya::maps::MapIter<'a, u32, aya::maps::stack_trace::StackTrace, aya::maps::stack_trace::StackTraceMap<T>>
  2243. pub type &'a aya::maps::stack_trace::StackTraceMap<T>::Item = core::result::Result<(u32, aya::maps::stack_trace::StackTrace), aya::maps::MapError>
  2244. pub fn &'a aya::maps::stack_trace::StackTraceMap<T>::into_iter(self) -> Self::IntoIter
  2245. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>
  2246. pub type aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  2247. pub fn aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2248. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData>
  2249. pub type aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  2250. pub fn aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2251. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::IterableMap<u32, aya::maps::stack_trace::StackTrace> for aya::maps::stack_trace::StackTraceMap<T>
  2252. pub fn aya::maps::stack_trace::StackTraceMap<T>::get(&self, index: &u32) -> core::result::Result<aya::maps::stack_trace::StackTrace, aya::maps::MapError>
  2253. pub fn aya::maps::stack_trace::StackTraceMap<T>::map(&self) -> &aya::maps::MapData
  2254. impl<T: core::fmt::Debug> core::fmt::Debug for aya::maps::stack_trace::StackTraceMap<T>
  2255. pub fn aya::maps::stack_trace::StackTraceMap<T>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2256. impl<T> core::marker::Send for aya::maps::stack_trace::StackTraceMap<T> where T: core::marker::Send
  2257. impl<T> core::marker::Sync for aya::maps::stack_trace::StackTraceMap<T> where T: core::marker::Sync
  2258. impl<T> core::marker::Unpin for aya::maps::stack_trace::StackTraceMap<T> where T: core::marker::Unpin
  2259. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::stack_trace::StackTraceMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  2260. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::stack_trace::StackTraceMap<T> where T: core::panic::unwind_safe::UnwindSafe
  2261. impl<T, U> core::convert::Into<U> for aya::maps::stack_trace::StackTraceMap<T> where U: core::convert::From<T>
  2262. pub fn aya::maps::stack_trace::StackTraceMap<T>::into(self) -> U
  2263. impl<T, U> core::convert::TryFrom<U> for aya::maps::stack_trace::StackTraceMap<T> where U: core::convert::Into<T>
  2264. pub type aya::maps::stack_trace::StackTraceMap<T>::Error = core::convert::Infallible
  2265. pub fn aya::maps::stack_trace::StackTraceMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2266. impl<T, U> core::convert::TryInto<U> for aya::maps::stack_trace::StackTraceMap<T> where U: core::convert::TryFrom<T>
  2267. pub type aya::maps::stack_trace::StackTraceMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  2268. pub fn aya::maps::stack_trace::StackTraceMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2269. impl<T> core::any::Any for aya::maps::stack_trace::StackTraceMap<T> where T: 'static + core::marker::Sized
  2270. pub fn aya::maps::stack_trace::StackTraceMap<T>::type_id(&self) -> core::any::TypeId
  2271. impl<T> core::borrow::Borrow<T> for aya::maps::stack_trace::StackTraceMap<T> where T: core::marker::Sized
  2272. pub fn aya::maps::stack_trace::StackTraceMap<T>::borrow(&self) -> &T
  2273. impl<T> core::borrow::BorrowMut<T> for aya::maps::stack_trace::StackTraceMap<T> where T: core::marker::Sized
  2274. pub fn aya::maps::stack_trace::StackTraceMap<T>::borrow_mut(&mut self) -> &mut T
  2275. impl<T> core::convert::From<T> for aya::maps::stack_trace::StackTraceMap<T>
  2276. pub fn aya::maps::stack_trace::StackTraceMap<T>::from(t: T) -> T
  2277. pub struct aya::maps::XskMap<T>
  2278. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::XskMap<T>
  2279. pub fn aya::maps::XskMap<T>::len(&self) -> u32
  2280. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::XskMap<T>
  2281. pub fn aya::maps::XskMap<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2282. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::XskMap<T>
  2283. pub fn aya::maps::XskMap<T>::set(&mut self, index: u32, socket_fd: impl std::os::fd::raw::AsRawFd, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  2284. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::XskMap<aya::maps::MapData>
  2285. pub type aya::maps::XskMap<aya::maps::MapData>::Error = aya::maps::MapError
  2286. pub fn aya::maps::XskMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2287. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::XskMap<&'a aya::maps::MapData>
  2288. pub type aya::maps::XskMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  2289. pub fn aya::maps::XskMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2290. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::XskMap<&'a mut aya::maps::MapData>
  2291. pub type aya::maps::XskMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  2292. pub fn aya::maps::XskMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2293. impl<T> core::marker::Send for aya::maps::XskMap<T> where T: core::marker::Send
  2294. impl<T> core::marker::Sync for aya::maps::XskMap<T> where T: core::marker::Sync
  2295. impl<T> core::marker::Unpin for aya::maps::XskMap<T> where T: core::marker::Unpin
  2296. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::XskMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  2297. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::XskMap<T> where T: core::panic::unwind_safe::UnwindSafe
  2298. impl<T, U> core::convert::Into<U> for aya::maps::XskMap<T> where U: core::convert::From<T>
  2299. pub fn aya::maps::XskMap<T>::into(self) -> U
  2300. impl<T, U> core::convert::TryFrom<U> for aya::maps::XskMap<T> where U: core::convert::Into<T>
  2301. pub type aya::maps::XskMap<T>::Error = core::convert::Infallible
  2302. pub fn aya::maps::XskMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2303. impl<T, U> core::convert::TryInto<U> for aya::maps::XskMap<T> where U: core::convert::TryFrom<T>
  2304. pub type aya::maps::XskMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  2305. pub fn aya::maps::XskMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2306. impl<T> core::any::Any for aya::maps::XskMap<T> where T: 'static + core::marker::Sized
  2307. pub fn aya::maps::XskMap<T>::type_id(&self) -> core::any::TypeId
  2308. impl<T> core::borrow::Borrow<T> for aya::maps::XskMap<T> where T: core::marker::Sized
  2309. pub fn aya::maps::XskMap<T>::borrow(&self) -> &T
  2310. impl<T> core::borrow::BorrowMut<T> for aya::maps::XskMap<T> where T: core::marker::Sized
  2311. pub fn aya::maps::XskMap<T>::borrow_mut(&mut self) -> &mut T
  2312. impl<T> core::convert::From<T> for aya::maps::XskMap<T>
  2313. pub fn aya::maps::XskMap<T>::from(t: T) -> T
  2314. pub trait aya::maps::IterableMap<K: aya::Pod, V>
  2315. pub fn aya::maps::IterableMap::get(&self, key: &K) -> core::result::Result<V, aya::maps::MapError>
  2316. pub fn aya::maps::IterableMap::map(&self) -> &aya::maps::MapData
  2317. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap<K, V> for aya::maps::hash_map::HashMap<T, K, V>
  2318. pub fn aya::maps::hash_map::HashMap<T, K, V>::get(&self, key: &K) -> core::result::Result<V, aya::maps::MapError>
  2319. pub fn aya::maps::hash_map::HashMap<T, K, V>::map(&self) -> &aya::maps::MapData
  2320. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap<K, aya::maps::PerCpuValues<V>> for aya::maps::hash_map::PerCpuHashMap<T, K, V>
  2321. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::get(&self, key: &K) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  2322. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::map(&self) -> &aya::maps::MapData
  2323. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap<aya::maps::lpm_trie::Key<K>, V> for aya::maps::lpm_trie::LpmTrie<T, K, V>
  2324. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::get(&self, key: &aya::maps::lpm_trie::Key<K>) -> core::result::Result<V, aya::maps::MapError>
  2325. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::map(&self) -> &aya::maps::MapData
  2326. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod> aya::maps::IterableMap<K, i32> for aya::maps::SockHash<T, K>
  2327. pub fn aya::maps::SockHash<T, K>::get(&self, key: &K) -> core::result::Result<std::os::fd::raw::RawFd, aya::maps::MapError>
  2328. pub fn aya::maps::SockHash<T, K>::map(&self) -> &aya::maps::MapData
  2329. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::IterableMap<u32, V> for aya::maps::array::Array<T, V>
  2330. pub fn aya::maps::array::Array<T, V>::get(&self, index: &u32) -> core::result::Result<V, aya::maps::MapError>
  2331. pub fn aya::maps::array::Array<T, V>::map(&self) -> &aya::maps::MapData
  2332. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::IterableMap<u32, aya::maps::PerCpuValues<V>> for aya::maps::PerCpuArray<T, V>
  2333. pub fn aya::maps::PerCpuArray<T, V>::get(&self, index: &u32) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  2334. pub fn aya::maps::PerCpuArray<T, V>::map(&self) -> &aya::maps::MapData
  2335. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::IterableMap<u32, aya::maps::stack_trace::StackTrace> for aya::maps::stack_trace::StackTraceMap<T>
  2336. pub fn aya::maps::stack_trace::StackTraceMap<T>::get(&self, index: &u32) -> core::result::Result<aya::maps::stack_trace::StackTrace, aya::maps::MapError>
  2337. pub fn aya::maps::stack_trace::StackTraceMap<T>::map(&self) -> &aya::maps::MapData
  2338. pub fn aya::maps::loaded_maps() -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<aya::maps::MapInfo, aya::maps::MapError>>
  2339. pub mod aya::pin
  2340. pub enum aya::pin::PinError
  2341. pub aya::pin::PinError::InvalidPinPath
  2342. pub aya::pin::PinError::InvalidPinPath::error: alloc::ffi::c_str::NulError
  2343. pub aya::pin::PinError::InvalidPinPath::path: std::path::PathBuf
  2344. pub aya::pin::PinError::NoFd
  2345. pub aya::pin::PinError::NoFd::name: alloc::string::String
  2346. pub aya::pin::PinError::SyscallError(crate::sys::SyscallError)
  2347. impl core::error::Error for aya::pin::PinError
  2348. pub fn aya::pin::PinError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  2349. impl core::fmt::Debug for aya::pin::PinError
  2350. pub fn aya::pin::PinError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2351. impl core::fmt::Display for aya::pin::PinError
  2352. pub fn aya::pin::PinError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2353. impl core::marker::Send for aya::pin::PinError
  2354. impl core::marker::Sync for aya::pin::PinError
  2355. impl core::marker::Unpin for aya::pin::PinError
  2356. impl !core::panic::unwind_safe::RefUnwindSafe for aya::pin::PinError
  2357. impl !core::panic::unwind_safe::UnwindSafe for aya::pin::PinError
  2358. impl<T, U> core::convert::Into<U> for aya::pin::PinError where U: core::convert::From<T>
  2359. pub fn aya::pin::PinError::into(self) -> U
  2360. impl<T, U> core::convert::TryFrom<U> for aya::pin::PinError where U: core::convert::Into<T>
  2361. pub type aya::pin::PinError::Error = core::convert::Infallible
  2362. pub fn aya::pin::PinError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2363. impl<T, U> core::convert::TryInto<U> for aya::pin::PinError where U: core::convert::TryFrom<T>
  2364. pub type aya::pin::PinError::Error = <U as core::convert::TryFrom<T>>::Error
  2365. pub fn aya::pin::PinError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2366. impl<T> alloc::string::ToString for aya::pin::PinError where T: core::fmt::Display + core::marker::Sized
  2367. pub fn aya::pin::PinError::to_string(&self) -> alloc::string::String
  2368. impl<T> core::any::Any for aya::pin::PinError where T: 'static + core::marker::Sized
  2369. pub fn aya::pin::PinError::type_id(&self) -> core::any::TypeId
  2370. impl<T> core::borrow::Borrow<T> for aya::pin::PinError where T: core::marker::Sized
  2371. pub fn aya::pin::PinError::borrow(&self) -> &T
  2372. impl<T> core::borrow::BorrowMut<T> for aya::pin::PinError where T: core::marker::Sized
  2373. pub fn aya::pin::PinError::borrow_mut(&mut self) -> &mut T
  2374. impl<T> core::convert::From<T> for aya::pin::PinError
  2375. pub fn aya::pin::PinError::from(t: T) -> T
  2376. pub mod aya::programs
  2377. pub use aya::programs::CgroupSockAddrAttachType
  2378. pub use aya::programs::CgroupSockAttachType
  2379. pub use aya::programs::CgroupSockoptAttachType
  2380. pub mod aya::programs::cgroup_device
  2381. pub struct aya::programs::cgroup_device::CgroupDevice
  2382. impl aya::programs::cgroup_device::CgroupDevice
  2383. pub fn aya::programs::cgroup_device::CgroupDevice::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T) -> core::result::Result<aya::programs::cgroup_device::CgroupDeviceLinkId, aya::programs::ProgramError>
  2384. pub fn aya::programs::cgroup_device::CgroupDevice::detach(&mut self, link_id: aya::programs::cgroup_device::CgroupDeviceLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  2385. pub fn aya::programs::cgroup_device::CgroupDevice::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  2386. pub fn aya::programs::cgroup_device::CgroupDevice::take_link(&mut self, link_id: aya::programs::cgroup_device::CgroupDeviceLinkId) -> core::result::Result<aya::programs::cgroup_device::CgroupDeviceLink, aya::programs::ProgramError>
  2387. impl aya::programs::cgroup_device::CgroupDevice
  2388. pub fn aya::programs::cgroup_device::CgroupDevice::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  2389. impl aya::programs::cgroup_device::CgroupDevice
  2390. pub fn aya::programs::cgroup_device::CgroupDevice::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  2391. impl aya::programs::cgroup_device::CgroupDevice
  2392. pub fn aya::programs::cgroup_device::CgroupDevice::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  2393. impl aya::programs::cgroup_device::CgroupDevice
  2394. pub fn aya::programs::cgroup_device::CgroupDevice::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2395. pub fn aya::programs::cgroup_device::CgroupDevice::unpin(self) -> core::result::Result<(), std::io::error::Error>
  2396. impl aya::programs::cgroup_device::CgroupDevice
  2397. pub fn aya::programs::cgroup_device::CgroupDevice::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  2398. impl core::fmt::Debug for aya::programs::cgroup_device::CgroupDevice
  2399. pub fn aya::programs::cgroup_device::CgroupDevice::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2400. impl core::ops::drop::Drop for aya::programs::cgroup_device::CgroupDevice
  2401. pub fn aya::programs::cgroup_device::CgroupDevice::drop(&mut self)
  2402. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_device::CgroupDevice
  2403. pub type &'a aya::programs::cgroup_device::CgroupDevice::Error = aya::programs::ProgramError
  2404. pub fn &'a aya::programs::cgroup_device::CgroupDevice::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_device::CgroupDevice, aya::programs::ProgramError>
  2405. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_device::CgroupDevice
  2406. pub type &'a mut aya::programs::cgroup_device::CgroupDevice::Error = aya::programs::ProgramError
  2407. pub fn &'a mut aya::programs::cgroup_device::CgroupDevice::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_device::CgroupDevice, aya::programs::ProgramError>
  2408. impl core::marker::Send for aya::programs::cgroup_device::CgroupDevice
  2409. impl core::marker::Sync for aya::programs::cgroup_device::CgroupDevice
  2410. impl core::marker::Unpin for aya::programs::cgroup_device::CgroupDevice
  2411. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_device::CgroupDevice
  2412. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_device::CgroupDevice
  2413. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_device::CgroupDevice where U: core::convert::From<T>
  2414. pub fn aya::programs::cgroup_device::CgroupDevice::into(self) -> U
  2415. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_device::CgroupDevice where U: core::convert::Into<T>
  2416. pub type aya::programs::cgroup_device::CgroupDevice::Error = core::convert::Infallible
  2417. pub fn aya::programs::cgroup_device::CgroupDevice::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2418. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_device::CgroupDevice where U: core::convert::TryFrom<T>
  2419. pub type aya::programs::cgroup_device::CgroupDevice::Error = <U as core::convert::TryFrom<T>>::Error
  2420. pub fn aya::programs::cgroup_device::CgroupDevice::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2421. impl<T> core::any::Any for aya::programs::cgroup_device::CgroupDevice where T: 'static + core::marker::Sized
  2422. pub fn aya::programs::cgroup_device::CgroupDevice::type_id(&self) -> core::any::TypeId
  2423. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_device::CgroupDevice where T: core::marker::Sized
  2424. pub fn aya::programs::cgroup_device::CgroupDevice::borrow(&self) -> &T
  2425. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_device::CgroupDevice where T: core::marker::Sized
  2426. pub fn aya::programs::cgroup_device::CgroupDevice::borrow_mut(&mut self) -> &mut T
  2427. impl<T> core::convert::From<T> for aya::programs::cgroup_device::CgroupDevice
  2428. pub fn aya::programs::cgroup_device::CgroupDevice::from(t: T) -> T
  2429. pub struct aya::programs::cgroup_device::CgroupDeviceLink(_)
  2430. impl aya::programs::links::Link for aya::programs::cgroup_device::CgroupDeviceLink
  2431. pub type aya::programs::cgroup_device::CgroupDeviceLink::Id = aya::programs::cgroup_device::CgroupDeviceLinkId
  2432. pub fn aya::programs::cgroup_device::CgroupDeviceLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  2433. pub fn aya::programs::cgroup_device::CgroupDeviceLink::id(&self) -> Self::Id
  2434. impl core::fmt::Debug for aya::programs::cgroup_device::CgroupDeviceLink
  2435. pub fn aya::programs::cgroup_device::CgroupDeviceLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2436. impl core::ops::drop::Drop for aya::programs::cgroup_device::CgroupDeviceLink
  2437. pub fn aya::programs::cgroup_device::CgroupDeviceLink::drop(&mut self)
  2438. impl core::marker::Send for aya::programs::cgroup_device::CgroupDeviceLink
  2439. impl core::marker::Sync for aya::programs::cgroup_device::CgroupDeviceLink
  2440. impl core::marker::Unpin for aya::programs::cgroup_device::CgroupDeviceLink
  2441. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_device::CgroupDeviceLink
  2442. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_device::CgroupDeviceLink
  2443. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_device::CgroupDeviceLink where U: core::convert::From<T>
  2444. pub fn aya::programs::cgroup_device::CgroupDeviceLink::into(self) -> U
  2445. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_device::CgroupDeviceLink where U: core::convert::Into<T>
  2446. pub type aya::programs::cgroup_device::CgroupDeviceLink::Error = core::convert::Infallible
  2447. pub fn aya::programs::cgroup_device::CgroupDeviceLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2448. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_device::CgroupDeviceLink where U: core::convert::TryFrom<T>
  2449. pub type aya::programs::cgroup_device::CgroupDeviceLink::Error = <U as core::convert::TryFrom<T>>::Error
  2450. pub fn aya::programs::cgroup_device::CgroupDeviceLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2451. impl<T> core::any::Any for aya::programs::cgroup_device::CgroupDeviceLink where T: 'static + core::marker::Sized
  2452. pub fn aya::programs::cgroup_device::CgroupDeviceLink::type_id(&self) -> core::any::TypeId
  2453. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_device::CgroupDeviceLink where T: core::marker::Sized
  2454. pub fn aya::programs::cgroup_device::CgroupDeviceLink::borrow(&self) -> &T
  2455. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_device::CgroupDeviceLink where T: core::marker::Sized
  2456. pub fn aya::programs::cgroup_device::CgroupDeviceLink::borrow_mut(&mut self) -> &mut T
  2457. impl<T> core::convert::From<T> for aya::programs::cgroup_device::CgroupDeviceLink
  2458. pub fn aya::programs::cgroup_device::CgroupDeviceLink::from(t: T) -> T
  2459. pub struct aya::programs::cgroup_device::CgroupDeviceLinkId(_)
  2460. impl core::cmp::Eq for aya::programs::cgroup_device::CgroupDeviceLinkId
  2461. impl core::cmp::PartialEq for aya::programs::cgroup_device::CgroupDeviceLinkId
  2462. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::eq(&self, other: &aya::programs::cgroup_device::CgroupDeviceLinkId) -> bool
  2463. impl core::fmt::Debug for aya::programs::cgroup_device::CgroupDeviceLinkId
  2464. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2465. impl core::hash::Hash for aya::programs::cgroup_device::CgroupDeviceLinkId
  2466. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  2467. impl core::marker::StructuralPartialEq for aya::programs::cgroup_device::CgroupDeviceLinkId
  2468. impl core::marker::Send for aya::programs::cgroup_device::CgroupDeviceLinkId
  2469. impl core::marker::Sync for aya::programs::cgroup_device::CgroupDeviceLinkId
  2470. impl core::marker::Unpin for aya::programs::cgroup_device::CgroupDeviceLinkId
  2471. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_device::CgroupDeviceLinkId
  2472. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_device::CgroupDeviceLinkId
  2473. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_device::CgroupDeviceLinkId where U: core::convert::From<T>
  2474. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::into(self) -> U
  2475. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_device::CgroupDeviceLinkId where U: core::convert::Into<T>
  2476. pub type aya::programs::cgroup_device::CgroupDeviceLinkId::Error = core::convert::Infallible
  2477. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2478. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_device::CgroupDeviceLinkId where U: core::convert::TryFrom<T>
  2479. pub type aya::programs::cgroup_device::CgroupDeviceLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  2480. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2481. impl<T> core::any::Any for aya::programs::cgroup_device::CgroupDeviceLinkId where T: 'static + core::marker::Sized
  2482. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::type_id(&self) -> core::any::TypeId
  2483. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_device::CgroupDeviceLinkId where T: core::marker::Sized
  2484. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::borrow(&self) -> &T
  2485. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_device::CgroupDeviceLinkId where T: core::marker::Sized
  2486. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::borrow_mut(&mut self) -> &mut T
  2487. impl<T> core::convert::From<T> for aya::programs::cgroup_device::CgroupDeviceLinkId
  2488. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::from(t: T) -> T
  2489. pub mod aya::programs::cgroup_skb
  2490. pub enum aya::programs::cgroup_skb::CgroupSkbAttachType
  2491. pub aya::programs::cgroup_skb::CgroupSkbAttachType::Egress
  2492. pub aya::programs::cgroup_skb::CgroupSkbAttachType::Ingress
  2493. impl core::clone::Clone for aya::programs::cgroup_skb::CgroupSkbAttachType
  2494. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::clone(&self) -> aya::programs::cgroup_skb::CgroupSkbAttachType
  2495. impl core::fmt::Debug for aya::programs::cgroup_skb::CgroupSkbAttachType
  2496. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2497. impl core::marker::Copy for aya::programs::cgroup_skb::CgroupSkbAttachType
  2498. impl core::marker::Send for aya::programs::cgroup_skb::CgroupSkbAttachType
  2499. impl core::marker::Sync for aya::programs::cgroup_skb::CgroupSkbAttachType
  2500. impl core::marker::Unpin for aya::programs::cgroup_skb::CgroupSkbAttachType
  2501. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_skb::CgroupSkbAttachType
  2502. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_skb::CgroupSkbAttachType
  2503. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_skb::CgroupSkbAttachType where U: core::convert::From<T>
  2504. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::into(self) -> U
  2505. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_skb::CgroupSkbAttachType where U: core::convert::Into<T>
  2506. pub type aya::programs::cgroup_skb::CgroupSkbAttachType::Error = core::convert::Infallible
  2507. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2508. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_skb::CgroupSkbAttachType where U: core::convert::TryFrom<T>
  2509. pub type aya::programs::cgroup_skb::CgroupSkbAttachType::Error = <U as core::convert::TryFrom<T>>::Error
  2510. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2511. impl<T> alloc::borrow::ToOwned for aya::programs::cgroup_skb::CgroupSkbAttachType where T: core::clone::Clone
  2512. pub type aya::programs::cgroup_skb::CgroupSkbAttachType::Owned = T
  2513. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::clone_into(&self, target: &mut T)
  2514. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::to_owned(&self) -> T
  2515. impl<T> core::any::Any for aya::programs::cgroup_skb::CgroupSkbAttachType where T: 'static + core::marker::Sized
  2516. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::type_id(&self) -> core::any::TypeId
  2517. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_skb::CgroupSkbAttachType where T: core::marker::Sized
  2518. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::borrow(&self) -> &T
  2519. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_skb::CgroupSkbAttachType where T: core::marker::Sized
  2520. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::borrow_mut(&mut self) -> &mut T
  2521. impl<T> core::convert::From<T> for aya::programs::cgroup_skb::CgroupSkbAttachType
  2522. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::from(t: T) -> T
  2523. pub struct aya::programs::cgroup_skb::CgroupSkb
  2524. impl aya::programs::cgroup_skb::CgroupSkb
  2525. pub fn aya::programs::cgroup_skb::CgroupSkb::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T, attach_type: aya::programs::cgroup_skb::CgroupSkbAttachType) -> core::result::Result<aya::programs::cgroup_skb::CgroupSkbLinkId, aya::programs::ProgramError>
  2526. pub fn aya::programs::cgroup_skb::CgroupSkb::detach(&mut self, link_id: aya::programs::cgroup_skb::CgroupSkbLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  2527. pub fn aya::programs::cgroup_skb::CgroupSkb::expected_attach_type(&self) -> &core::option::Option<aya::programs::cgroup_skb::CgroupSkbAttachType>
  2528. pub fn aya::programs::cgroup_skb::CgroupSkb::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, expected_attach_type: aya::programs::cgroup_skb::CgroupSkbAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  2529. pub fn aya::programs::cgroup_skb::CgroupSkb::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  2530. pub fn aya::programs::cgroup_skb::CgroupSkb::take_link(&mut self, link_id: aya::programs::cgroup_skb::CgroupSkbLinkId) -> core::result::Result<aya::programs::cgroup_skb::CgroupSkbLink, aya::programs::ProgramError>
  2531. impl aya::programs::cgroup_skb::CgroupSkb
  2532. pub fn aya::programs::cgroup_skb::CgroupSkb::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  2533. impl aya::programs::cgroup_skb::CgroupSkb
  2534. pub fn aya::programs::cgroup_skb::CgroupSkb::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  2535. impl aya::programs::cgroup_skb::CgroupSkb
  2536. pub fn aya::programs::cgroup_skb::CgroupSkb::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2537. pub fn aya::programs::cgroup_skb::CgroupSkb::unpin(self) -> core::result::Result<(), std::io::error::Error>
  2538. impl aya::programs::cgroup_skb::CgroupSkb
  2539. pub fn aya::programs::cgroup_skb::CgroupSkb::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  2540. impl core::fmt::Debug for aya::programs::cgroup_skb::CgroupSkb
  2541. pub fn aya::programs::cgroup_skb::CgroupSkb::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2542. impl core::ops::drop::Drop for aya::programs::cgroup_skb::CgroupSkb
  2543. pub fn aya::programs::cgroup_skb::CgroupSkb::drop(&mut self)
  2544. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_skb::CgroupSkb
  2545. pub type &'a aya::programs::cgroup_skb::CgroupSkb::Error = aya::programs::ProgramError
  2546. pub fn &'a aya::programs::cgroup_skb::CgroupSkb::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_skb::CgroupSkb, aya::programs::ProgramError>
  2547. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_skb::CgroupSkb
  2548. pub type &'a mut aya::programs::cgroup_skb::CgroupSkb::Error = aya::programs::ProgramError
  2549. pub fn &'a mut aya::programs::cgroup_skb::CgroupSkb::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_skb::CgroupSkb, aya::programs::ProgramError>
  2550. impl core::marker::Send for aya::programs::cgroup_skb::CgroupSkb
  2551. impl core::marker::Sync for aya::programs::cgroup_skb::CgroupSkb
  2552. impl core::marker::Unpin for aya::programs::cgroup_skb::CgroupSkb
  2553. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_skb::CgroupSkb
  2554. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_skb::CgroupSkb
  2555. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_skb::CgroupSkb where U: core::convert::From<T>
  2556. pub fn aya::programs::cgroup_skb::CgroupSkb::into(self) -> U
  2557. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_skb::CgroupSkb where U: core::convert::Into<T>
  2558. pub type aya::programs::cgroup_skb::CgroupSkb::Error = core::convert::Infallible
  2559. pub fn aya::programs::cgroup_skb::CgroupSkb::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2560. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_skb::CgroupSkb where U: core::convert::TryFrom<T>
  2561. pub type aya::programs::cgroup_skb::CgroupSkb::Error = <U as core::convert::TryFrom<T>>::Error
  2562. pub fn aya::programs::cgroup_skb::CgroupSkb::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2563. impl<T> core::any::Any for aya::programs::cgroup_skb::CgroupSkb where T: 'static + core::marker::Sized
  2564. pub fn aya::programs::cgroup_skb::CgroupSkb::type_id(&self) -> core::any::TypeId
  2565. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_skb::CgroupSkb where T: core::marker::Sized
  2566. pub fn aya::programs::cgroup_skb::CgroupSkb::borrow(&self) -> &T
  2567. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_skb::CgroupSkb where T: core::marker::Sized
  2568. pub fn aya::programs::cgroup_skb::CgroupSkb::borrow_mut(&mut self) -> &mut T
  2569. impl<T> core::convert::From<T> for aya::programs::cgroup_skb::CgroupSkb
  2570. pub fn aya::programs::cgroup_skb::CgroupSkb::from(t: T) -> T
  2571. pub struct aya::programs::cgroup_skb::CgroupSkbLink(_)
  2572. impl aya::programs::links::Link for aya::programs::cgroup_skb::CgroupSkbLink
  2573. pub type aya::programs::cgroup_skb::CgroupSkbLink::Id = aya::programs::cgroup_skb::CgroupSkbLinkId
  2574. pub fn aya::programs::cgroup_skb::CgroupSkbLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  2575. pub fn aya::programs::cgroup_skb::CgroupSkbLink::id(&self) -> Self::Id
  2576. impl core::fmt::Debug for aya::programs::cgroup_skb::CgroupSkbLink
  2577. pub fn aya::programs::cgroup_skb::CgroupSkbLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2578. impl core::ops::drop::Drop for aya::programs::cgroup_skb::CgroupSkbLink
  2579. pub fn aya::programs::cgroup_skb::CgroupSkbLink::drop(&mut self)
  2580. impl core::marker::Send for aya::programs::cgroup_skb::CgroupSkbLink
  2581. impl core::marker::Sync for aya::programs::cgroup_skb::CgroupSkbLink
  2582. impl core::marker::Unpin for aya::programs::cgroup_skb::CgroupSkbLink
  2583. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_skb::CgroupSkbLink
  2584. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_skb::CgroupSkbLink
  2585. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_skb::CgroupSkbLink where U: core::convert::From<T>
  2586. pub fn aya::programs::cgroup_skb::CgroupSkbLink::into(self) -> U
  2587. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_skb::CgroupSkbLink where U: core::convert::Into<T>
  2588. pub type aya::programs::cgroup_skb::CgroupSkbLink::Error = core::convert::Infallible
  2589. pub fn aya::programs::cgroup_skb::CgroupSkbLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2590. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_skb::CgroupSkbLink where U: core::convert::TryFrom<T>
  2591. pub type aya::programs::cgroup_skb::CgroupSkbLink::Error = <U as core::convert::TryFrom<T>>::Error
  2592. pub fn aya::programs::cgroup_skb::CgroupSkbLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2593. impl<T> core::any::Any for aya::programs::cgroup_skb::CgroupSkbLink where T: 'static + core::marker::Sized
  2594. pub fn aya::programs::cgroup_skb::CgroupSkbLink::type_id(&self) -> core::any::TypeId
  2595. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_skb::CgroupSkbLink where T: core::marker::Sized
  2596. pub fn aya::programs::cgroup_skb::CgroupSkbLink::borrow(&self) -> &T
  2597. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_skb::CgroupSkbLink where T: core::marker::Sized
  2598. pub fn aya::programs::cgroup_skb::CgroupSkbLink::borrow_mut(&mut self) -> &mut T
  2599. impl<T> core::convert::From<T> for aya::programs::cgroup_skb::CgroupSkbLink
  2600. pub fn aya::programs::cgroup_skb::CgroupSkbLink::from(t: T) -> T
  2601. pub struct aya::programs::cgroup_skb::CgroupSkbLinkId(_)
  2602. impl core::cmp::Eq for aya::programs::cgroup_skb::CgroupSkbLinkId
  2603. impl core::cmp::PartialEq for aya::programs::cgroup_skb::CgroupSkbLinkId
  2604. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::eq(&self, other: &aya::programs::cgroup_skb::CgroupSkbLinkId) -> bool
  2605. impl core::fmt::Debug for aya::programs::cgroup_skb::CgroupSkbLinkId
  2606. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2607. impl core::hash::Hash for aya::programs::cgroup_skb::CgroupSkbLinkId
  2608. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  2609. impl core::marker::StructuralPartialEq for aya::programs::cgroup_skb::CgroupSkbLinkId
  2610. impl core::marker::Send for aya::programs::cgroup_skb::CgroupSkbLinkId
  2611. impl core::marker::Sync for aya::programs::cgroup_skb::CgroupSkbLinkId
  2612. impl core::marker::Unpin for aya::programs::cgroup_skb::CgroupSkbLinkId
  2613. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_skb::CgroupSkbLinkId
  2614. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_skb::CgroupSkbLinkId
  2615. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_skb::CgroupSkbLinkId where U: core::convert::From<T>
  2616. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::into(self) -> U
  2617. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_skb::CgroupSkbLinkId where U: core::convert::Into<T>
  2618. pub type aya::programs::cgroup_skb::CgroupSkbLinkId::Error = core::convert::Infallible
  2619. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2620. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_skb::CgroupSkbLinkId where U: core::convert::TryFrom<T>
  2621. pub type aya::programs::cgroup_skb::CgroupSkbLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  2622. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2623. impl<T> core::any::Any for aya::programs::cgroup_skb::CgroupSkbLinkId where T: 'static + core::marker::Sized
  2624. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::type_id(&self) -> core::any::TypeId
  2625. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_skb::CgroupSkbLinkId where T: core::marker::Sized
  2626. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::borrow(&self) -> &T
  2627. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_skb::CgroupSkbLinkId where T: core::marker::Sized
  2628. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::borrow_mut(&mut self) -> &mut T
  2629. impl<T> core::convert::From<T> for aya::programs::cgroup_skb::CgroupSkbLinkId
  2630. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::from(t: T) -> T
  2631. pub mod aya::programs::cgroup_sock
  2632. pub use aya::programs::cgroup_sock::CgroupSockAttachType
  2633. pub struct aya::programs::cgroup_sock::CgroupSock
  2634. impl aya::programs::cgroup_sock::CgroupSock
  2635. pub fn aya::programs::cgroup_sock::CgroupSock::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T) -> core::result::Result<aya::programs::cgroup_sock::CgroupSockLinkId, aya::programs::ProgramError>
  2636. pub fn aya::programs::cgroup_sock::CgroupSock::detach(&mut self, link_id: aya::programs::cgroup_sock::CgroupSockLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  2637. pub fn aya::programs::cgroup_sock::CgroupSock::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, attach_type: aya_obj::programs::cgroup_sock::CgroupSockAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  2638. pub fn aya::programs::cgroup_sock::CgroupSock::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  2639. pub fn aya::programs::cgroup_sock::CgroupSock::take_link(&mut self, link_id: aya::programs::cgroup_sock::CgroupSockLinkId) -> core::result::Result<aya::programs::cgroup_sock::CgroupSockLink, aya::programs::ProgramError>
  2640. impl aya::programs::cgroup_sock::CgroupSock
  2641. pub fn aya::programs::cgroup_sock::CgroupSock::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  2642. impl aya::programs::cgroup_sock::CgroupSock
  2643. pub fn aya::programs::cgroup_sock::CgroupSock::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  2644. impl aya::programs::cgroup_sock::CgroupSock
  2645. pub fn aya::programs::cgroup_sock::CgroupSock::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2646. pub fn aya::programs::cgroup_sock::CgroupSock::unpin(self) -> core::result::Result<(), std::io::error::Error>
  2647. impl aya::programs::cgroup_sock::CgroupSock
  2648. pub fn aya::programs::cgroup_sock::CgroupSock::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  2649. impl core::fmt::Debug for aya::programs::cgroup_sock::CgroupSock
  2650. pub fn aya::programs::cgroup_sock::CgroupSock::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2651. impl core::ops::drop::Drop for aya::programs::cgroup_sock::CgroupSock
  2652. pub fn aya::programs::cgroup_sock::CgroupSock::drop(&mut self)
  2653. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sock::CgroupSock
  2654. pub type &'a aya::programs::cgroup_sock::CgroupSock::Error = aya::programs::ProgramError
  2655. pub fn &'a aya::programs::cgroup_sock::CgroupSock::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sock::CgroupSock, aya::programs::ProgramError>
  2656. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sock::CgroupSock
  2657. pub type &'a mut aya::programs::cgroup_sock::CgroupSock::Error = aya::programs::ProgramError
  2658. pub fn &'a mut aya::programs::cgroup_sock::CgroupSock::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sock::CgroupSock, aya::programs::ProgramError>
  2659. impl core::marker::Send for aya::programs::cgroup_sock::CgroupSock
  2660. impl core::marker::Sync for aya::programs::cgroup_sock::CgroupSock
  2661. impl core::marker::Unpin for aya::programs::cgroup_sock::CgroupSock
  2662. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sock::CgroupSock
  2663. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sock::CgroupSock
  2664. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sock::CgroupSock where U: core::convert::From<T>
  2665. pub fn aya::programs::cgroup_sock::CgroupSock::into(self) -> U
  2666. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sock::CgroupSock where U: core::convert::Into<T>
  2667. pub type aya::programs::cgroup_sock::CgroupSock::Error = core::convert::Infallible
  2668. pub fn aya::programs::cgroup_sock::CgroupSock::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2669. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sock::CgroupSock where U: core::convert::TryFrom<T>
  2670. pub type aya::programs::cgroup_sock::CgroupSock::Error = <U as core::convert::TryFrom<T>>::Error
  2671. pub fn aya::programs::cgroup_sock::CgroupSock::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2672. impl<T> core::any::Any for aya::programs::cgroup_sock::CgroupSock where T: 'static + core::marker::Sized
  2673. pub fn aya::programs::cgroup_sock::CgroupSock::type_id(&self) -> core::any::TypeId
  2674. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sock::CgroupSock where T: core::marker::Sized
  2675. pub fn aya::programs::cgroup_sock::CgroupSock::borrow(&self) -> &T
  2676. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sock::CgroupSock where T: core::marker::Sized
  2677. pub fn aya::programs::cgroup_sock::CgroupSock::borrow_mut(&mut self) -> &mut T
  2678. impl<T> core::convert::From<T> for aya::programs::cgroup_sock::CgroupSock
  2679. pub fn aya::programs::cgroup_sock::CgroupSock::from(t: T) -> T
  2680. pub struct aya::programs::cgroup_sock::CgroupSockLink(_)
  2681. impl aya::programs::links::Link for aya::programs::cgroup_sock::CgroupSockLink
  2682. pub type aya::programs::cgroup_sock::CgroupSockLink::Id = aya::programs::cgroup_sock::CgroupSockLinkId
  2683. pub fn aya::programs::cgroup_sock::CgroupSockLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  2684. pub fn aya::programs::cgroup_sock::CgroupSockLink::id(&self) -> Self::Id
  2685. impl core::fmt::Debug for aya::programs::cgroup_sock::CgroupSockLink
  2686. pub fn aya::programs::cgroup_sock::CgroupSockLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2687. impl core::ops::drop::Drop for aya::programs::cgroup_sock::CgroupSockLink
  2688. pub fn aya::programs::cgroup_sock::CgroupSockLink::drop(&mut self)
  2689. impl core::marker::Send for aya::programs::cgroup_sock::CgroupSockLink
  2690. impl core::marker::Sync for aya::programs::cgroup_sock::CgroupSockLink
  2691. impl core::marker::Unpin for aya::programs::cgroup_sock::CgroupSockLink
  2692. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sock::CgroupSockLink
  2693. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sock::CgroupSockLink
  2694. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sock::CgroupSockLink where U: core::convert::From<T>
  2695. pub fn aya::programs::cgroup_sock::CgroupSockLink::into(self) -> U
  2696. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sock::CgroupSockLink where U: core::convert::Into<T>
  2697. pub type aya::programs::cgroup_sock::CgroupSockLink::Error = core::convert::Infallible
  2698. pub fn aya::programs::cgroup_sock::CgroupSockLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2699. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sock::CgroupSockLink where U: core::convert::TryFrom<T>
  2700. pub type aya::programs::cgroup_sock::CgroupSockLink::Error = <U as core::convert::TryFrom<T>>::Error
  2701. pub fn aya::programs::cgroup_sock::CgroupSockLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2702. impl<T> core::any::Any for aya::programs::cgroup_sock::CgroupSockLink where T: 'static + core::marker::Sized
  2703. pub fn aya::programs::cgroup_sock::CgroupSockLink::type_id(&self) -> core::any::TypeId
  2704. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sock::CgroupSockLink where T: core::marker::Sized
  2705. pub fn aya::programs::cgroup_sock::CgroupSockLink::borrow(&self) -> &T
  2706. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sock::CgroupSockLink where T: core::marker::Sized
  2707. pub fn aya::programs::cgroup_sock::CgroupSockLink::borrow_mut(&mut self) -> &mut T
  2708. impl<T> core::convert::From<T> for aya::programs::cgroup_sock::CgroupSockLink
  2709. pub fn aya::programs::cgroup_sock::CgroupSockLink::from(t: T) -> T
  2710. pub struct aya::programs::cgroup_sock::CgroupSockLinkId(_)
  2711. impl core::cmp::Eq for aya::programs::cgroup_sock::CgroupSockLinkId
  2712. impl core::cmp::PartialEq for aya::programs::cgroup_sock::CgroupSockLinkId
  2713. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::eq(&self, other: &aya::programs::cgroup_sock::CgroupSockLinkId) -> bool
  2714. impl core::fmt::Debug for aya::programs::cgroup_sock::CgroupSockLinkId
  2715. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2716. impl core::hash::Hash for aya::programs::cgroup_sock::CgroupSockLinkId
  2717. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  2718. impl core::marker::StructuralPartialEq for aya::programs::cgroup_sock::CgroupSockLinkId
  2719. impl core::marker::Send for aya::programs::cgroup_sock::CgroupSockLinkId
  2720. impl core::marker::Sync for aya::programs::cgroup_sock::CgroupSockLinkId
  2721. impl core::marker::Unpin for aya::programs::cgroup_sock::CgroupSockLinkId
  2722. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sock::CgroupSockLinkId
  2723. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sock::CgroupSockLinkId
  2724. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sock::CgroupSockLinkId where U: core::convert::From<T>
  2725. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::into(self) -> U
  2726. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sock::CgroupSockLinkId where U: core::convert::Into<T>
  2727. pub type aya::programs::cgroup_sock::CgroupSockLinkId::Error = core::convert::Infallible
  2728. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2729. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sock::CgroupSockLinkId where U: core::convert::TryFrom<T>
  2730. pub type aya::programs::cgroup_sock::CgroupSockLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  2731. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2732. impl<T> core::any::Any for aya::programs::cgroup_sock::CgroupSockLinkId where T: 'static + core::marker::Sized
  2733. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::type_id(&self) -> core::any::TypeId
  2734. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sock::CgroupSockLinkId where T: core::marker::Sized
  2735. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::borrow(&self) -> &T
  2736. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sock::CgroupSockLinkId where T: core::marker::Sized
  2737. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::borrow_mut(&mut self) -> &mut T
  2738. impl<T> core::convert::From<T> for aya::programs::cgroup_sock::CgroupSockLinkId
  2739. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::from(t: T) -> T
  2740. pub mod aya::programs::cgroup_sock_addr
  2741. pub use aya::programs::cgroup_sock_addr::CgroupSockAddrAttachType
  2742. pub struct aya::programs::cgroup_sock_addr::CgroupSockAddr
  2743. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  2744. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T) -> core::result::Result<aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId, aya::programs::ProgramError>
  2745. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::detach(&mut self, link_id: aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  2746. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, attach_type: aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  2747. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  2748. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::take_link(&mut self, link_id: aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId) -> core::result::Result<aya::programs::cgroup_sock_addr::CgroupSockAddrLink, aya::programs::ProgramError>
  2749. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  2750. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  2751. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  2752. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  2753. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  2754. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2755. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::unpin(self) -> core::result::Result<(), std::io::error::Error>
  2756. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  2757. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  2758. impl core::fmt::Debug for aya::programs::cgroup_sock_addr::CgroupSockAddr
  2759. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2760. impl core::ops::drop::Drop for aya::programs::cgroup_sock_addr::CgroupSockAddr
  2761. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::drop(&mut self)
  2762. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sock_addr::CgroupSockAddr
  2763. pub type &'a aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = aya::programs::ProgramError
  2764. pub fn &'a aya::programs::cgroup_sock_addr::CgroupSockAddr::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sock_addr::CgroupSockAddr, aya::programs::ProgramError>
  2765. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr
  2766. pub type &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = aya::programs::ProgramError
  2767. pub fn &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr, aya::programs::ProgramError>
  2768. impl core::marker::Send for aya::programs::cgroup_sock_addr::CgroupSockAddr
  2769. impl core::marker::Sync for aya::programs::cgroup_sock_addr::CgroupSockAddr
  2770. impl core::marker::Unpin for aya::programs::cgroup_sock_addr::CgroupSockAddr
  2771. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sock_addr::CgroupSockAddr
  2772. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sock_addr::CgroupSockAddr
  2773. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sock_addr::CgroupSockAddr where U: core::convert::From<T>
  2774. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::into(self) -> U
  2775. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sock_addr::CgroupSockAddr where U: core::convert::Into<T>
  2776. pub type aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = core::convert::Infallible
  2777. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2778. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sock_addr::CgroupSockAddr where U: core::convert::TryFrom<T>
  2779. pub type aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = <U as core::convert::TryFrom<T>>::Error
  2780. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2781. impl<T> core::any::Any for aya::programs::cgroup_sock_addr::CgroupSockAddr where T: 'static + core::marker::Sized
  2782. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::type_id(&self) -> core::any::TypeId
  2783. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sock_addr::CgroupSockAddr where T: core::marker::Sized
  2784. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::borrow(&self) -> &T
  2785. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sock_addr::CgroupSockAddr where T: core::marker::Sized
  2786. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::borrow_mut(&mut self) -> &mut T
  2787. impl<T> core::convert::From<T> for aya::programs::cgroup_sock_addr::CgroupSockAddr
  2788. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::from(t: T) -> T
  2789. pub struct aya::programs::cgroup_sock_addr::CgroupSockAddrLink(_)
  2790. impl aya::programs::links::Link for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  2791. pub type aya::programs::cgroup_sock_addr::CgroupSockAddrLink::Id = aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  2792. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  2793. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::id(&self) -> Self::Id
  2794. impl core::fmt::Debug for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  2795. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2796. impl core::ops::drop::Drop for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  2797. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::drop(&mut self)
  2798. impl core::marker::Send for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  2799. impl core::marker::Sync for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  2800. impl core::marker::Unpin for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  2801. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  2802. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  2803. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sock_addr::CgroupSockAddrLink where U: core::convert::From<T>
  2804. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::into(self) -> U
  2805. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sock_addr::CgroupSockAddrLink where U: core::convert::Into<T>
  2806. pub type aya::programs::cgroup_sock_addr::CgroupSockAddrLink::Error = core::convert::Infallible
  2807. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2808. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sock_addr::CgroupSockAddrLink where U: core::convert::TryFrom<T>
  2809. pub type aya::programs::cgroup_sock_addr::CgroupSockAddrLink::Error = <U as core::convert::TryFrom<T>>::Error
  2810. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2811. impl<T> core::any::Any for aya::programs::cgroup_sock_addr::CgroupSockAddrLink where T: 'static + core::marker::Sized
  2812. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::type_id(&self) -> core::any::TypeId
  2813. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sock_addr::CgroupSockAddrLink where T: core::marker::Sized
  2814. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::borrow(&self) -> &T
  2815. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sock_addr::CgroupSockAddrLink where T: core::marker::Sized
  2816. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::borrow_mut(&mut self) -> &mut T
  2817. impl<T> core::convert::From<T> for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  2818. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::from(t: T) -> T
  2819. pub struct aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId(_)
  2820. impl core::cmp::Eq for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  2821. impl core::cmp::PartialEq for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  2822. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::eq(&self, other: &aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId) -> bool
  2823. impl core::fmt::Debug for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  2824. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2825. impl core::hash::Hash for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  2826. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  2827. impl core::marker::StructuralPartialEq for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  2828. impl core::marker::Send for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  2829. impl core::marker::Sync for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  2830. impl core::marker::Unpin for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  2831. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  2832. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  2833. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId where U: core::convert::From<T>
  2834. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::into(self) -> U
  2835. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId where U: core::convert::Into<T>
  2836. pub type aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::Error = core::convert::Infallible
  2837. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2838. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId where U: core::convert::TryFrom<T>
  2839. pub type aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  2840. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2841. impl<T> core::any::Any for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId where T: 'static + core::marker::Sized
  2842. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::type_id(&self) -> core::any::TypeId
  2843. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId where T: core::marker::Sized
  2844. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::borrow(&self) -> &T
  2845. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId where T: core::marker::Sized
  2846. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::borrow_mut(&mut self) -> &mut T
  2847. impl<T> core::convert::From<T> for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  2848. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::from(t: T) -> T
  2849. pub mod aya::programs::cgroup_sockopt
  2850. pub use aya::programs::cgroup_sockopt::CgroupSockoptAttachType
  2851. pub struct aya::programs::cgroup_sockopt::CgroupSockopt
  2852. impl aya::programs::cgroup_sockopt::CgroupSockopt
  2853. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T) -> core::result::Result<aya::programs::cgroup_sockopt::CgroupSockoptLinkId, aya::programs::ProgramError>
  2854. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::detach(&mut self, link_id: aya::programs::cgroup_sockopt::CgroupSockoptLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  2855. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, attach_type: aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  2856. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  2857. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::take_link(&mut self, link_id: aya::programs::cgroup_sockopt::CgroupSockoptLinkId) -> core::result::Result<aya::programs::cgroup_sockopt::CgroupSockoptLink, aya::programs::ProgramError>
  2858. impl aya::programs::cgroup_sockopt::CgroupSockopt
  2859. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  2860. impl aya::programs::cgroup_sockopt::CgroupSockopt
  2861. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  2862. impl aya::programs::cgroup_sockopt::CgroupSockopt
  2863. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2864. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::unpin(self) -> core::result::Result<(), std::io::error::Error>
  2865. impl aya::programs::cgroup_sockopt::CgroupSockopt
  2866. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  2867. impl core::fmt::Debug for aya::programs::cgroup_sockopt::CgroupSockopt
  2868. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2869. impl core::ops::drop::Drop for aya::programs::cgroup_sockopt::CgroupSockopt
  2870. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::drop(&mut self)
  2871. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sockopt::CgroupSockopt
  2872. pub type &'a aya::programs::cgroup_sockopt::CgroupSockopt::Error = aya::programs::ProgramError
  2873. pub fn &'a aya::programs::cgroup_sockopt::CgroupSockopt::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sockopt::CgroupSockopt, aya::programs::ProgramError>
  2874. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sockopt::CgroupSockopt
  2875. pub type &'a mut aya::programs::cgroup_sockopt::CgroupSockopt::Error = aya::programs::ProgramError
  2876. pub fn &'a mut aya::programs::cgroup_sockopt::CgroupSockopt::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sockopt::CgroupSockopt, aya::programs::ProgramError>
  2877. impl core::marker::Send for aya::programs::cgroup_sockopt::CgroupSockopt
  2878. impl core::marker::Sync for aya::programs::cgroup_sockopt::CgroupSockopt
  2879. impl core::marker::Unpin for aya::programs::cgroup_sockopt::CgroupSockopt
  2880. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sockopt::CgroupSockopt
  2881. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sockopt::CgroupSockopt
  2882. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sockopt::CgroupSockopt where U: core::convert::From<T>
  2883. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::into(self) -> U
  2884. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sockopt::CgroupSockopt where U: core::convert::Into<T>
  2885. pub type aya::programs::cgroup_sockopt::CgroupSockopt::Error = core::convert::Infallible
  2886. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2887. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sockopt::CgroupSockopt where U: core::convert::TryFrom<T>
  2888. pub type aya::programs::cgroup_sockopt::CgroupSockopt::Error = <U as core::convert::TryFrom<T>>::Error
  2889. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2890. impl<T> core::any::Any for aya::programs::cgroup_sockopt::CgroupSockopt where T: 'static + core::marker::Sized
  2891. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::type_id(&self) -> core::any::TypeId
  2892. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sockopt::CgroupSockopt where T: core::marker::Sized
  2893. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::borrow(&self) -> &T
  2894. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sockopt::CgroupSockopt where T: core::marker::Sized
  2895. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::borrow_mut(&mut self) -> &mut T
  2896. impl<T> core::convert::From<T> for aya::programs::cgroup_sockopt::CgroupSockopt
  2897. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::from(t: T) -> T
  2898. pub struct aya::programs::cgroup_sockopt::CgroupSockoptLink(_)
  2899. impl aya::programs::links::Link for aya::programs::cgroup_sockopt::CgroupSockoptLink
  2900. pub type aya::programs::cgroup_sockopt::CgroupSockoptLink::Id = aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  2901. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  2902. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::id(&self) -> Self::Id
  2903. impl core::fmt::Debug for aya::programs::cgroup_sockopt::CgroupSockoptLink
  2904. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2905. impl core::ops::drop::Drop for aya::programs::cgroup_sockopt::CgroupSockoptLink
  2906. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::drop(&mut self)
  2907. impl core::marker::Send for aya::programs::cgroup_sockopt::CgroupSockoptLink
  2908. impl core::marker::Sync for aya::programs::cgroup_sockopt::CgroupSockoptLink
  2909. impl core::marker::Unpin for aya::programs::cgroup_sockopt::CgroupSockoptLink
  2910. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sockopt::CgroupSockoptLink
  2911. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sockopt::CgroupSockoptLink
  2912. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sockopt::CgroupSockoptLink where U: core::convert::From<T>
  2913. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::into(self) -> U
  2914. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sockopt::CgroupSockoptLink where U: core::convert::Into<T>
  2915. pub type aya::programs::cgroup_sockopt::CgroupSockoptLink::Error = core::convert::Infallible
  2916. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2917. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sockopt::CgroupSockoptLink where U: core::convert::TryFrom<T>
  2918. pub type aya::programs::cgroup_sockopt::CgroupSockoptLink::Error = <U as core::convert::TryFrom<T>>::Error
  2919. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2920. impl<T> core::any::Any for aya::programs::cgroup_sockopt::CgroupSockoptLink where T: 'static + core::marker::Sized
  2921. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::type_id(&self) -> core::any::TypeId
  2922. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sockopt::CgroupSockoptLink where T: core::marker::Sized
  2923. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::borrow(&self) -> &T
  2924. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sockopt::CgroupSockoptLink where T: core::marker::Sized
  2925. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::borrow_mut(&mut self) -> &mut T
  2926. impl<T> core::convert::From<T> for aya::programs::cgroup_sockopt::CgroupSockoptLink
  2927. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::from(t: T) -> T
  2928. pub struct aya::programs::cgroup_sockopt::CgroupSockoptLinkId(_)
  2929. impl core::cmp::Eq for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  2930. impl core::cmp::PartialEq for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  2931. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::eq(&self, other: &aya::programs::cgroup_sockopt::CgroupSockoptLinkId) -> bool
  2932. impl core::fmt::Debug for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  2933. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2934. impl core::hash::Hash for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  2935. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  2936. impl core::marker::StructuralPartialEq for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  2937. impl core::marker::Send for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  2938. impl core::marker::Sync for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  2939. impl core::marker::Unpin for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  2940. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  2941. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  2942. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sockopt::CgroupSockoptLinkId where U: core::convert::From<T>
  2943. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::into(self) -> U
  2944. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sockopt::CgroupSockoptLinkId where U: core::convert::Into<T>
  2945. pub type aya::programs::cgroup_sockopt::CgroupSockoptLinkId::Error = core::convert::Infallible
  2946. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2947. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sockopt::CgroupSockoptLinkId where U: core::convert::TryFrom<T>
  2948. pub type aya::programs::cgroup_sockopt::CgroupSockoptLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  2949. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2950. impl<T> core::any::Any for aya::programs::cgroup_sockopt::CgroupSockoptLinkId where T: 'static + core::marker::Sized
  2951. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::type_id(&self) -> core::any::TypeId
  2952. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sockopt::CgroupSockoptLinkId where T: core::marker::Sized
  2953. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::borrow(&self) -> &T
  2954. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sockopt::CgroupSockoptLinkId where T: core::marker::Sized
  2955. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::borrow_mut(&mut self) -> &mut T
  2956. impl<T> core::convert::From<T> for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  2957. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::from(t: T) -> T
  2958. pub mod aya::programs::cgroup_sysctl
  2959. pub struct aya::programs::cgroup_sysctl::CgroupSysctl
  2960. impl aya::programs::cgroup_sysctl::CgroupSysctl
  2961. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T) -> core::result::Result<aya::programs::cgroup_sysctl::CgroupSysctlLinkId, aya::programs::ProgramError>
  2962. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::detach(&mut self, link_id: aya::programs::cgroup_sysctl::CgroupSysctlLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  2963. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  2964. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::take_link(&mut self, link_id: aya::programs::cgroup_sysctl::CgroupSysctlLinkId) -> core::result::Result<aya::programs::cgroup_sysctl::CgroupSysctlLink, aya::programs::ProgramError>
  2965. impl aya::programs::cgroup_sysctl::CgroupSysctl
  2966. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  2967. impl aya::programs::cgroup_sysctl::CgroupSysctl
  2968. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  2969. impl aya::programs::cgroup_sysctl::CgroupSysctl
  2970. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  2971. impl aya::programs::cgroup_sysctl::CgroupSysctl
  2972. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2973. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::unpin(self) -> core::result::Result<(), std::io::error::Error>
  2974. impl aya::programs::cgroup_sysctl::CgroupSysctl
  2975. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  2976. impl core::fmt::Debug for aya::programs::cgroup_sysctl::CgroupSysctl
  2977. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2978. impl core::ops::drop::Drop for aya::programs::cgroup_sysctl::CgroupSysctl
  2979. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::drop(&mut self)
  2980. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sysctl::CgroupSysctl
  2981. pub type &'a aya::programs::cgroup_sysctl::CgroupSysctl::Error = aya::programs::ProgramError
  2982. pub fn &'a aya::programs::cgroup_sysctl::CgroupSysctl::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sysctl::CgroupSysctl, aya::programs::ProgramError>
  2983. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sysctl::CgroupSysctl
  2984. pub type &'a mut aya::programs::cgroup_sysctl::CgroupSysctl::Error = aya::programs::ProgramError
  2985. pub fn &'a mut aya::programs::cgroup_sysctl::CgroupSysctl::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sysctl::CgroupSysctl, aya::programs::ProgramError>
  2986. impl core::marker::Send for aya::programs::cgroup_sysctl::CgroupSysctl
  2987. impl core::marker::Sync for aya::programs::cgroup_sysctl::CgroupSysctl
  2988. impl core::marker::Unpin for aya::programs::cgroup_sysctl::CgroupSysctl
  2989. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sysctl::CgroupSysctl
  2990. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sysctl::CgroupSysctl
  2991. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sysctl::CgroupSysctl where U: core::convert::From<T>
  2992. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::into(self) -> U
  2993. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sysctl::CgroupSysctl where U: core::convert::Into<T>
  2994. pub type aya::programs::cgroup_sysctl::CgroupSysctl::Error = core::convert::Infallible
  2995. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2996. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sysctl::CgroupSysctl where U: core::convert::TryFrom<T>
  2997. pub type aya::programs::cgroup_sysctl::CgroupSysctl::Error = <U as core::convert::TryFrom<T>>::Error
  2998. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2999. impl<T> core::any::Any for aya::programs::cgroup_sysctl::CgroupSysctl where T: 'static + core::marker::Sized
  3000. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::type_id(&self) -> core::any::TypeId
  3001. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sysctl::CgroupSysctl where T: core::marker::Sized
  3002. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::borrow(&self) -> &T
  3003. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sysctl::CgroupSysctl where T: core::marker::Sized
  3004. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::borrow_mut(&mut self) -> &mut T
  3005. impl<T> core::convert::From<T> for aya::programs::cgroup_sysctl::CgroupSysctl
  3006. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::from(t: T) -> T
  3007. pub struct aya::programs::cgroup_sysctl::CgroupSysctlLink(_)
  3008. impl aya::programs::links::Link for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3009. pub type aya::programs::cgroup_sysctl::CgroupSysctlLink::Id = aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3010. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3011. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::id(&self) -> Self::Id
  3012. impl core::fmt::Debug for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3013. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3014. impl core::ops::drop::Drop for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3015. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::drop(&mut self)
  3016. impl core::marker::Send for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3017. impl core::marker::Sync for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3018. impl core::marker::Unpin for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3019. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3020. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3021. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sysctl::CgroupSysctlLink where U: core::convert::From<T>
  3022. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::into(self) -> U
  3023. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sysctl::CgroupSysctlLink where U: core::convert::Into<T>
  3024. pub type aya::programs::cgroup_sysctl::CgroupSysctlLink::Error = core::convert::Infallible
  3025. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3026. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sysctl::CgroupSysctlLink where U: core::convert::TryFrom<T>
  3027. pub type aya::programs::cgroup_sysctl::CgroupSysctlLink::Error = <U as core::convert::TryFrom<T>>::Error
  3028. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3029. impl<T> core::any::Any for aya::programs::cgroup_sysctl::CgroupSysctlLink where T: 'static + core::marker::Sized
  3030. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::type_id(&self) -> core::any::TypeId
  3031. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sysctl::CgroupSysctlLink where T: core::marker::Sized
  3032. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::borrow(&self) -> &T
  3033. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sysctl::CgroupSysctlLink where T: core::marker::Sized
  3034. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::borrow_mut(&mut self) -> &mut T
  3035. impl<T> core::convert::From<T> for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3036. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::from(t: T) -> T
  3037. pub struct aya::programs::cgroup_sysctl::CgroupSysctlLinkId(_)
  3038. impl core::cmp::Eq for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3039. impl core::cmp::PartialEq for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3040. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::eq(&self, other: &aya::programs::cgroup_sysctl::CgroupSysctlLinkId) -> bool
  3041. impl core::fmt::Debug for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3042. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3043. impl core::hash::Hash for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3044. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  3045. impl core::marker::StructuralPartialEq for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3046. impl core::marker::Send for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3047. impl core::marker::Sync for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3048. impl core::marker::Unpin for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3049. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3050. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3051. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sysctl::CgroupSysctlLinkId where U: core::convert::From<T>
  3052. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::into(self) -> U
  3053. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sysctl::CgroupSysctlLinkId where U: core::convert::Into<T>
  3054. pub type aya::programs::cgroup_sysctl::CgroupSysctlLinkId::Error = core::convert::Infallible
  3055. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3056. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sysctl::CgroupSysctlLinkId where U: core::convert::TryFrom<T>
  3057. pub type aya::programs::cgroup_sysctl::CgroupSysctlLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  3058. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3059. impl<T> core::any::Any for aya::programs::cgroup_sysctl::CgroupSysctlLinkId where T: 'static + core::marker::Sized
  3060. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::type_id(&self) -> core::any::TypeId
  3061. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sysctl::CgroupSysctlLinkId where T: core::marker::Sized
  3062. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::borrow(&self) -> &T
  3063. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sysctl::CgroupSysctlLinkId where T: core::marker::Sized
  3064. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::borrow_mut(&mut self) -> &mut T
  3065. impl<T> core::convert::From<T> for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3066. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::from(t: T) -> T
  3067. pub mod aya::programs::extension
  3068. pub enum aya::programs::extension::ExtensionError
  3069. pub aya::programs::extension::ExtensionError::NoBTF
  3070. impl core::convert::From<aya::programs::extension::ExtensionError> for aya::programs::ProgramError
  3071. pub fn aya::programs::ProgramError::from(source: aya::programs::extension::ExtensionError) -> Self
  3072. impl core::error::Error for aya::programs::extension::ExtensionError
  3073. impl core::fmt::Debug for aya::programs::extension::ExtensionError
  3074. pub fn aya::programs::extension::ExtensionError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3075. impl core::fmt::Display for aya::programs::extension::ExtensionError
  3076. pub fn aya::programs::extension::ExtensionError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3077. impl core::marker::Send for aya::programs::extension::ExtensionError
  3078. impl core::marker::Sync for aya::programs::extension::ExtensionError
  3079. impl core::marker::Unpin for aya::programs::extension::ExtensionError
  3080. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::extension::ExtensionError
  3081. impl core::panic::unwind_safe::UnwindSafe for aya::programs::extension::ExtensionError
  3082. impl<T, U> core::convert::Into<U> for aya::programs::extension::ExtensionError where U: core::convert::From<T>
  3083. pub fn aya::programs::extension::ExtensionError::into(self) -> U
  3084. impl<T, U> core::convert::TryFrom<U> for aya::programs::extension::ExtensionError where U: core::convert::Into<T>
  3085. pub type aya::programs::extension::ExtensionError::Error = core::convert::Infallible
  3086. pub fn aya::programs::extension::ExtensionError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3087. impl<T, U> core::convert::TryInto<U> for aya::programs::extension::ExtensionError where U: core::convert::TryFrom<T>
  3088. pub type aya::programs::extension::ExtensionError::Error = <U as core::convert::TryFrom<T>>::Error
  3089. pub fn aya::programs::extension::ExtensionError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3090. impl<T> alloc::string::ToString for aya::programs::extension::ExtensionError where T: core::fmt::Display + core::marker::Sized
  3091. pub fn aya::programs::extension::ExtensionError::to_string(&self) -> alloc::string::String
  3092. impl<T> core::any::Any for aya::programs::extension::ExtensionError where T: 'static + core::marker::Sized
  3093. pub fn aya::programs::extension::ExtensionError::type_id(&self) -> core::any::TypeId
  3094. impl<T> core::borrow::Borrow<T> for aya::programs::extension::ExtensionError where T: core::marker::Sized
  3095. pub fn aya::programs::extension::ExtensionError::borrow(&self) -> &T
  3096. impl<T> core::borrow::BorrowMut<T> for aya::programs::extension::ExtensionError where T: core::marker::Sized
  3097. pub fn aya::programs::extension::ExtensionError::borrow_mut(&mut self) -> &mut T
  3098. impl<T> core::convert::From<T> for aya::programs::extension::ExtensionError
  3099. pub fn aya::programs::extension::ExtensionError::from(t: T) -> T
  3100. pub struct aya::programs::extension::Extension
  3101. impl aya::programs::extension::Extension
  3102. pub fn aya::programs::extension::Extension::attach(&mut self) -> core::result::Result<aya::programs::extension::ExtensionLinkId, aya::programs::ProgramError>
  3103. pub fn aya::programs::extension::Extension::attach_to_program(&mut self, program: &aya::programs::ProgramFd, func_name: &str) -> core::result::Result<aya::programs::extension::ExtensionLinkId, aya::programs::ProgramError>
  3104. pub fn aya::programs::extension::Extension::detach(&mut self, link_id: aya::programs::extension::ExtensionLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  3105. pub fn aya::programs::extension::Extension::load(&mut self, program: aya::programs::ProgramFd, func_name: &str) -> core::result::Result<(), aya::programs::ProgramError>
  3106. pub fn aya::programs::extension::Extension::take_link(&mut self, link_id: aya::programs::extension::ExtensionLinkId) -> core::result::Result<aya::programs::extension::ExtensionLink, aya::programs::ProgramError>
  3107. impl aya::programs::extension::Extension
  3108. pub fn aya::programs::extension::Extension::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  3109. impl aya::programs::extension::Extension
  3110. pub fn aya::programs::extension::Extension::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  3111. impl aya::programs::extension::Extension
  3112. pub fn aya::programs::extension::Extension::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  3113. impl aya::programs::extension::Extension
  3114. pub fn aya::programs::extension::Extension::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  3115. pub fn aya::programs::extension::Extension::unpin(self) -> core::result::Result<(), std::io::error::Error>
  3116. impl aya::programs::extension::Extension
  3117. pub fn aya::programs::extension::Extension::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  3118. impl core::fmt::Debug for aya::programs::extension::Extension
  3119. pub fn aya::programs::extension::Extension::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3120. impl core::ops::drop::Drop for aya::programs::extension::Extension
  3121. pub fn aya::programs::extension::Extension::drop(&mut self)
  3122. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::extension::Extension
  3123. pub type &'a aya::programs::extension::Extension::Error = aya::programs::ProgramError
  3124. pub fn &'a aya::programs::extension::Extension::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::extension::Extension, aya::programs::ProgramError>
  3125. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::extension::Extension
  3126. pub type &'a mut aya::programs::extension::Extension::Error = aya::programs::ProgramError
  3127. pub fn &'a mut aya::programs::extension::Extension::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::extension::Extension, aya::programs::ProgramError>
  3128. impl core::marker::Send for aya::programs::extension::Extension
  3129. impl core::marker::Sync for aya::programs::extension::Extension
  3130. impl core::marker::Unpin for aya::programs::extension::Extension
  3131. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::extension::Extension
  3132. impl core::panic::unwind_safe::UnwindSafe for aya::programs::extension::Extension
  3133. impl<T, U> core::convert::Into<U> for aya::programs::extension::Extension where U: core::convert::From<T>
  3134. pub fn aya::programs::extension::Extension::into(self) -> U
  3135. impl<T, U> core::convert::TryFrom<U> for aya::programs::extension::Extension where U: core::convert::Into<T>
  3136. pub type aya::programs::extension::Extension::Error = core::convert::Infallible
  3137. pub fn aya::programs::extension::Extension::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3138. impl<T, U> core::convert::TryInto<U> for aya::programs::extension::Extension where U: core::convert::TryFrom<T>
  3139. pub type aya::programs::extension::Extension::Error = <U as core::convert::TryFrom<T>>::Error
  3140. pub fn aya::programs::extension::Extension::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3141. impl<T> core::any::Any for aya::programs::extension::Extension where T: 'static + core::marker::Sized
  3142. pub fn aya::programs::extension::Extension::type_id(&self) -> core::any::TypeId
  3143. impl<T> core::borrow::Borrow<T> for aya::programs::extension::Extension where T: core::marker::Sized
  3144. pub fn aya::programs::extension::Extension::borrow(&self) -> &T
  3145. impl<T> core::borrow::BorrowMut<T> for aya::programs::extension::Extension where T: core::marker::Sized
  3146. pub fn aya::programs::extension::Extension::borrow_mut(&mut self) -> &mut T
  3147. impl<T> core::convert::From<T> for aya::programs::extension::Extension
  3148. pub fn aya::programs::extension::Extension::from(t: T) -> T
  3149. pub struct aya::programs::extension::ExtensionLink(_)
  3150. impl aya::programs::links::Link for aya::programs::extension::ExtensionLink
  3151. pub type aya::programs::extension::ExtensionLink::Id = aya::programs::extension::ExtensionLinkId
  3152. pub fn aya::programs::extension::ExtensionLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3153. pub fn aya::programs::extension::ExtensionLink::id(&self) -> Self::Id
  3154. impl core::convert::From<aya::programs::extension::ExtensionLink> for aya::programs::links::FdLink
  3155. pub fn aya::programs::links::FdLink::from(w: aya::programs::extension::ExtensionLink) -> aya::programs::links::FdLink
  3156. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::extension::ExtensionLink
  3157. pub fn aya::programs::extension::ExtensionLink::from(b: aya::programs::links::FdLink) -> aya::programs::extension::ExtensionLink
  3158. impl core::fmt::Debug for aya::programs::extension::ExtensionLink
  3159. pub fn aya::programs::extension::ExtensionLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3160. impl core::ops::drop::Drop for aya::programs::extension::ExtensionLink
  3161. pub fn aya::programs::extension::ExtensionLink::drop(&mut self)
  3162. impl core::marker::Send for aya::programs::extension::ExtensionLink
  3163. impl core::marker::Sync for aya::programs::extension::ExtensionLink
  3164. impl core::marker::Unpin for aya::programs::extension::ExtensionLink
  3165. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::extension::ExtensionLink
  3166. impl core::panic::unwind_safe::UnwindSafe for aya::programs::extension::ExtensionLink
  3167. impl<T, U> core::convert::Into<U> for aya::programs::extension::ExtensionLink where U: core::convert::From<T>
  3168. pub fn aya::programs::extension::ExtensionLink::into(self) -> U
  3169. impl<T, U> core::convert::TryFrom<U> for aya::programs::extension::ExtensionLink where U: core::convert::Into<T>
  3170. pub type aya::programs::extension::ExtensionLink::Error = core::convert::Infallible
  3171. pub fn aya::programs::extension::ExtensionLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3172. impl<T, U> core::convert::TryInto<U> for aya::programs::extension::ExtensionLink where U: core::convert::TryFrom<T>
  3173. pub type aya::programs::extension::ExtensionLink::Error = <U as core::convert::TryFrom<T>>::Error
  3174. pub fn aya::programs::extension::ExtensionLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3175. impl<T> core::any::Any for aya::programs::extension::ExtensionLink where T: 'static + core::marker::Sized
  3176. pub fn aya::programs::extension::ExtensionLink::type_id(&self) -> core::any::TypeId
  3177. impl<T> core::borrow::Borrow<T> for aya::programs::extension::ExtensionLink where T: core::marker::Sized
  3178. pub fn aya::programs::extension::ExtensionLink::borrow(&self) -> &T
  3179. impl<T> core::borrow::BorrowMut<T> for aya::programs::extension::ExtensionLink where T: core::marker::Sized
  3180. pub fn aya::programs::extension::ExtensionLink::borrow_mut(&mut self) -> &mut T
  3181. impl<T> core::convert::From<T> for aya::programs::extension::ExtensionLink
  3182. pub fn aya::programs::extension::ExtensionLink::from(t: T) -> T
  3183. pub struct aya::programs::extension::ExtensionLinkId(_)
  3184. impl core::cmp::Eq for aya::programs::extension::ExtensionLinkId
  3185. impl core::cmp::PartialEq for aya::programs::extension::ExtensionLinkId
  3186. pub fn aya::programs::extension::ExtensionLinkId::eq(&self, other: &aya::programs::extension::ExtensionLinkId) -> bool
  3187. impl core::fmt::Debug for aya::programs::extension::ExtensionLinkId
  3188. pub fn aya::programs::extension::ExtensionLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3189. impl core::hash::Hash for aya::programs::extension::ExtensionLinkId
  3190. pub fn aya::programs::extension::ExtensionLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  3191. impl core::marker::StructuralPartialEq for aya::programs::extension::ExtensionLinkId
  3192. impl core::marker::Send for aya::programs::extension::ExtensionLinkId
  3193. impl core::marker::Sync for aya::programs::extension::ExtensionLinkId
  3194. impl core::marker::Unpin for aya::programs::extension::ExtensionLinkId
  3195. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::extension::ExtensionLinkId
  3196. impl core::panic::unwind_safe::UnwindSafe for aya::programs::extension::ExtensionLinkId
  3197. impl<T, U> core::convert::Into<U> for aya::programs::extension::ExtensionLinkId where U: core::convert::From<T>
  3198. pub fn aya::programs::extension::ExtensionLinkId::into(self) -> U
  3199. impl<T, U> core::convert::TryFrom<U> for aya::programs::extension::ExtensionLinkId where U: core::convert::Into<T>
  3200. pub type aya::programs::extension::ExtensionLinkId::Error = core::convert::Infallible
  3201. pub fn aya::programs::extension::ExtensionLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3202. impl<T, U> core::convert::TryInto<U> for aya::programs::extension::ExtensionLinkId where U: core::convert::TryFrom<T>
  3203. pub type aya::programs::extension::ExtensionLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  3204. pub fn aya::programs::extension::ExtensionLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3205. impl<T> core::any::Any for aya::programs::extension::ExtensionLinkId where T: 'static + core::marker::Sized
  3206. pub fn aya::programs::extension::ExtensionLinkId::type_id(&self) -> core::any::TypeId
  3207. impl<T> core::borrow::Borrow<T> for aya::programs::extension::ExtensionLinkId where T: core::marker::Sized
  3208. pub fn aya::programs::extension::ExtensionLinkId::borrow(&self) -> &T
  3209. impl<T> core::borrow::BorrowMut<T> for aya::programs::extension::ExtensionLinkId where T: core::marker::Sized
  3210. pub fn aya::programs::extension::ExtensionLinkId::borrow_mut(&mut self) -> &mut T
  3211. impl<T> core::convert::From<T> for aya::programs::extension::ExtensionLinkId
  3212. pub fn aya::programs::extension::ExtensionLinkId::from(t: T) -> T
  3213. pub mod aya::programs::fentry
  3214. pub struct aya::programs::fentry::FEntry
  3215. impl aya::programs::fentry::FEntry
  3216. pub fn aya::programs::fentry::FEntry::attach(&mut self) -> core::result::Result<aya::programs::fentry::FEntryLinkId, aya::programs::ProgramError>
  3217. pub fn aya::programs::fentry::FEntry::detach(&mut self, link_id: aya::programs::fentry::FEntryLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  3218. pub fn aya::programs::fentry::FEntry::load(&mut self, fn_name: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError>
  3219. pub fn aya::programs::fentry::FEntry::take_link(&mut self, link_id: aya::programs::fentry::FEntryLinkId) -> core::result::Result<aya::programs::fentry::FEntryLink, aya::programs::ProgramError>
  3220. impl aya::programs::fentry::FEntry
  3221. pub fn aya::programs::fentry::FEntry::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  3222. impl aya::programs::fentry::FEntry
  3223. pub fn aya::programs::fentry::FEntry::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  3224. impl aya::programs::fentry::FEntry
  3225. pub fn aya::programs::fentry::FEntry::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  3226. impl aya::programs::fentry::FEntry
  3227. pub fn aya::programs::fentry::FEntry::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  3228. pub fn aya::programs::fentry::FEntry::unpin(self) -> core::result::Result<(), std::io::error::Error>
  3229. impl aya::programs::fentry::FEntry
  3230. pub fn aya::programs::fentry::FEntry::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  3231. impl core::fmt::Debug for aya::programs::fentry::FEntry
  3232. pub fn aya::programs::fentry::FEntry::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3233. impl core::ops::drop::Drop for aya::programs::fentry::FEntry
  3234. pub fn aya::programs::fentry::FEntry::drop(&mut self)
  3235. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::fentry::FEntry
  3236. pub type &'a aya::programs::fentry::FEntry::Error = aya::programs::ProgramError
  3237. pub fn &'a aya::programs::fentry::FEntry::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::fentry::FEntry, aya::programs::ProgramError>
  3238. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::fentry::FEntry
  3239. pub type &'a mut aya::programs::fentry::FEntry::Error = aya::programs::ProgramError
  3240. pub fn &'a mut aya::programs::fentry::FEntry::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::fentry::FEntry, aya::programs::ProgramError>
  3241. impl core::marker::Send for aya::programs::fentry::FEntry
  3242. impl core::marker::Sync for aya::programs::fentry::FEntry
  3243. impl core::marker::Unpin for aya::programs::fentry::FEntry
  3244. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::fentry::FEntry
  3245. impl core::panic::unwind_safe::UnwindSafe for aya::programs::fentry::FEntry
  3246. impl<T, U> core::convert::Into<U> for aya::programs::fentry::FEntry where U: core::convert::From<T>
  3247. pub fn aya::programs::fentry::FEntry::into(self) -> U
  3248. impl<T, U> core::convert::TryFrom<U> for aya::programs::fentry::FEntry where U: core::convert::Into<T>
  3249. pub type aya::programs::fentry::FEntry::Error = core::convert::Infallible
  3250. pub fn aya::programs::fentry::FEntry::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3251. impl<T, U> core::convert::TryInto<U> for aya::programs::fentry::FEntry where U: core::convert::TryFrom<T>
  3252. pub type aya::programs::fentry::FEntry::Error = <U as core::convert::TryFrom<T>>::Error
  3253. pub fn aya::programs::fentry::FEntry::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3254. impl<T> core::any::Any for aya::programs::fentry::FEntry where T: 'static + core::marker::Sized
  3255. pub fn aya::programs::fentry::FEntry::type_id(&self) -> core::any::TypeId
  3256. impl<T> core::borrow::Borrow<T> for aya::programs::fentry::FEntry where T: core::marker::Sized
  3257. pub fn aya::programs::fentry::FEntry::borrow(&self) -> &T
  3258. impl<T> core::borrow::BorrowMut<T> for aya::programs::fentry::FEntry where T: core::marker::Sized
  3259. pub fn aya::programs::fentry::FEntry::borrow_mut(&mut self) -> &mut T
  3260. impl<T> core::convert::From<T> for aya::programs::fentry::FEntry
  3261. pub fn aya::programs::fentry::FEntry::from(t: T) -> T
  3262. pub struct aya::programs::fentry::FEntryLink(_)
  3263. impl aya::programs::links::Link for aya::programs::fentry::FEntryLink
  3264. pub type aya::programs::fentry::FEntryLink::Id = aya::programs::fentry::FEntryLinkId
  3265. pub fn aya::programs::fentry::FEntryLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3266. pub fn aya::programs::fentry::FEntryLink::id(&self) -> Self::Id
  3267. impl core::convert::From<aya::programs::fentry::FEntryLink> for aya::programs::links::FdLink
  3268. pub fn aya::programs::links::FdLink::from(w: aya::programs::fentry::FEntryLink) -> aya::programs::links::FdLink
  3269. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::fentry::FEntryLink
  3270. pub fn aya::programs::fentry::FEntryLink::from(b: aya::programs::links::FdLink) -> aya::programs::fentry::FEntryLink
  3271. impl core::fmt::Debug for aya::programs::fentry::FEntryLink
  3272. pub fn aya::programs::fentry::FEntryLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3273. impl core::ops::drop::Drop for aya::programs::fentry::FEntryLink
  3274. pub fn aya::programs::fentry::FEntryLink::drop(&mut self)
  3275. impl core::marker::Send for aya::programs::fentry::FEntryLink
  3276. impl core::marker::Sync for aya::programs::fentry::FEntryLink
  3277. impl core::marker::Unpin for aya::programs::fentry::FEntryLink
  3278. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::fentry::FEntryLink
  3279. impl core::panic::unwind_safe::UnwindSafe for aya::programs::fentry::FEntryLink
  3280. impl<T, U> core::convert::Into<U> for aya::programs::fentry::FEntryLink where U: core::convert::From<T>
  3281. pub fn aya::programs::fentry::FEntryLink::into(self) -> U
  3282. impl<T, U> core::convert::TryFrom<U> for aya::programs::fentry::FEntryLink where U: core::convert::Into<T>
  3283. pub type aya::programs::fentry::FEntryLink::Error = core::convert::Infallible
  3284. pub fn aya::programs::fentry::FEntryLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3285. impl<T, U> core::convert::TryInto<U> for aya::programs::fentry::FEntryLink where U: core::convert::TryFrom<T>
  3286. pub type aya::programs::fentry::FEntryLink::Error = <U as core::convert::TryFrom<T>>::Error
  3287. pub fn aya::programs::fentry::FEntryLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3288. impl<T> core::any::Any for aya::programs::fentry::FEntryLink where T: 'static + core::marker::Sized
  3289. pub fn aya::programs::fentry::FEntryLink::type_id(&self) -> core::any::TypeId
  3290. impl<T> core::borrow::Borrow<T> for aya::programs::fentry::FEntryLink where T: core::marker::Sized
  3291. pub fn aya::programs::fentry::FEntryLink::borrow(&self) -> &T
  3292. impl<T> core::borrow::BorrowMut<T> for aya::programs::fentry::FEntryLink where T: core::marker::Sized
  3293. pub fn aya::programs::fentry::FEntryLink::borrow_mut(&mut self) -> &mut T
  3294. impl<T> core::convert::From<T> for aya::programs::fentry::FEntryLink
  3295. pub fn aya::programs::fentry::FEntryLink::from(t: T) -> T
  3296. pub struct aya::programs::fentry::FEntryLinkId(_)
  3297. impl core::cmp::Eq for aya::programs::fentry::FEntryLinkId
  3298. impl core::cmp::PartialEq for aya::programs::fentry::FEntryLinkId
  3299. pub fn aya::programs::fentry::FEntryLinkId::eq(&self, other: &aya::programs::fentry::FEntryLinkId) -> bool
  3300. impl core::fmt::Debug for aya::programs::fentry::FEntryLinkId
  3301. pub fn aya::programs::fentry::FEntryLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3302. impl core::hash::Hash for aya::programs::fentry::FEntryLinkId
  3303. pub fn aya::programs::fentry::FEntryLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  3304. impl core::marker::StructuralPartialEq for aya::programs::fentry::FEntryLinkId
  3305. impl core::marker::Send for aya::programs::fentry::FEntryLinkId
  3306. impl core::marker::Sync for aya::programs::fentry::FEntryLinkId
  3307. impl core::marker::Unpin for aya::programs::fentry::FEntryLinkId
  3308. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::fentry::FEntryLinkId
  3309. impl core::panic::unwind_safe::UnwindSafe for aya::programs::fentry::FEntryLinkId
  3310. impl<T, U> core::convert::Into<U> for aya::programs::fentry::FEntryLinkId where U: core::convert::From<T>
  3311. pub fn aya::programs::fentry::FEntryLinkId::into(self) -> U
  3312. impl<T, U> core::convert::TryFrom<U> for aya::programs::fentry::FEntryLinkId where U: core::convert::Into<T>
  3313. pub type aya::programs::fentry::FEntryLinkId::Error = core::convert::Infallible
  3314. pub fn aya::programs::fentry::FEntryLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3315. impl<T, U> core::convert::TryInto<U> for aya::programs::fentry::FEntryLinkId where U: core::convert::TryFrom<T>
  3316. pub type aya::programs::fentry::FEntryLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  3317. pub fn aya::programs::fentry::FEntryLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3318. impl<T> core::any::Any for aya::programs::fentry::FEntryLinkId where T: 'static + core::marker::Sized
  3319. pub fn aya::programs::fentry::FEntryLinkId::type_id(&self) -> core::any::TypeId
  3320. impl<T> core::borrow::Borrow<T> for aya::programs::fentry::FEntryLinkId where T: core::marker::Sized
  3321. pub fn aya::programs::fentry::FEntryLinkId::borrow(&self) -> &T
  3322. impl<T> core::borrow::BorrowMut<T> for aya::programs::fentry::FEntryLinkId where T: core::marker::Sized
  3323. pub fn aya::programs::fentry::FEntryLinkId::borrow_mut(&mut self) -> &mut T
  3324. impl<T> core::convert::From<T> for aya::programs::fentry::FEntryLinkId
  3325. pub fn aya::programs::fentry::FEntryLinkId::from(t: T) -> T
  3326. pub mod aya::programs::fexit
  3327. pub struct aya::programs::fexit::FExit
  3328. impl aya::programs::fexit::FExit
  3329. pub fn aya::programs::fexit::FExit::attach(&mut self) -> core::result::Result<aya::programs::fexit::FExitLinkId, aya::programs::ProgramError>
  3330. pub fn aya::programs::fexit::FExit::detach(&mut self, link_id: aya::programs::fexit::FExitLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  3331. pub fn aya::programs::fexit::FExit::load(&mut self, fn_name: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError>
  3332. pub fn aya::programs::fexit::FExit::take_link(&mut self, link_id: aya::programs::fexit::FExitLinkId) -> core::result::Result<aya::programs::fexit::FExitLink, aya::programs::ProgramError>
  3333. impl aya::programs::fexit::FExit
  3334. pub fn aya::programs::fexit::FExit::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  3335. impl aya::programs::fexit::FExit
  3336. pub fn aya::programs::fexit::FExit::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  3337. impl aya::programs::fexit::FExit
  3338. pub fn aya::programs::fexit::FExit::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  3339. impl aya::programs::fexit::FExit
  3340. pub fn aya::programs::fexit::FExit::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  3341. pub fn aya::programs::fexit::FExit::unpin(self) -> core::result::Result<(), std::io::error::Error>
  3342. impl aya::programs::fexit::FExit
  3343. pub fn aya::programs::fexit::FExit::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  3344. impl core::fmt::Debug for aya::programs::fexit::FExit
  3345. pub fn aya::programs::fexit::FExit::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3346. impl core::ops::drop::Drop for aya::programs::fexit::FExit
  3347. pub fn aya::programs::fexit::FExit::drop(&mut self)
  3348. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::fexit::FExit
  3349. pub type &'a aya::programs::fexit::FExit::Error = aya::programs::ProgramError
  3350. pub fn &'a aya::programs::fexit::FExit::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::fexit::FExit, aya::programs::ProgramError>
  3351. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::fexit::FExit
  3352. pub type &'a mut aya::programs::fexit::FExit::Error = aya::programs::ProgramError
  3353. pub fn &'a mut aya::programs::fexit::FExit::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::fexit::FExit, aya::programs::ProgramError>
  3354. impl core::marker::Send for aya::programs::fexit::FExit
  3355. impl core::marker::Sync for aya::programs::fexit::FExit
  3356. impl core::marker::Unpin for aya::programs::fexit::FExit
  3357. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::fexit::FExit
  3358. impl core::panic::unwind_safe::UnwindSafe for aya::programs::fexit::FExit
  3359. impl<T, U> core::convert::Into<U> for aya::programs::fexit::FExit where U: core::convert::From<T>
  3360. pub fn aya::programs::fexit::FExit::into(self) -> U
  3361. impl<T, U> core::convert::TryFrom<U> for aya::programs::fexit::FExit where U: core::convert::Into<T>
  3362. pub type aya::programs::fexit::FExit::Error = core::convert::Infallible
  3363. pub fn aya::programs::fexit::FExit::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3364. impl<T, U> core::convert::TryInto<U> for aya::programs::fexit::FExit where U: core::convert::TryFrom<T>
  3365. pub type aya::programs::fexit::FExit::Error = <U as core::convert::TryFrom<T>>::Error
  3366. pub fn aya::programs::fexit::FExit::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3367. impl<T> core::any::Any for aya::programs::fexit::FExit where T: 'static + core::marker::Sized
  3368. pub fn aya::programs::fexit::FExit::type_id(&self) -> core::any::TypeId
  3369. impl<T> core::borrow::Borrow<T> for aya::programs::fexit::FExit where T: core::marker::Sized
  3370. pub fn aya::programs::fexit::FExit::borrow(&self) -> &T
  3371. impl<T> core::borrow::BorrowMut<T> for aya::programs::fexit::FExit where T: core::marker::Sized
  3372. pub fn aya::programs::fexit::FExit::borrow_mut(&mut self) -> &mut T
  3373. impl<T> core::convert::From<T> for aya::programs::fexit::FExit
  3374. pub fn aya::programs::fexit::FExit::from(t: T) -> T
  3375. pub struct aya::programs::fexit::FExitLink(_)
  3376. impl aya::programs::links::Link for aya::programs::fexit::FExitLink
  3377. pub type aya::programs::fexit::FExitLink::Id = aya::programs::fexit::FExitLinkId
  3378. pub fn aya::programs::fexit::FExitLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3379. pub fn aya::programs::fexit::FExitLink::id(&self) -> Self::Id
  3380. impl core::convert::From<aya::programs::fexit::FExitLink> for aya::programs::links::FdLink
  3381. pub fn aya::programs::links::FdLink::from(w: aya::programs::fexit::FExitLink) -> aya::programs::links::FdLink
  3382. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::fexit::FExitLink
  3383. pub fn aya::programs::fexit::FExitLink::from(b: aya::programs::links::FdLink) -> aya::programs::fexit::FExitLink
  3384. impl core::fmt::Debug for aya::programs::fexit::FExitLink
  3385. pub fn aya::programs::fexit::FExitLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3386. impl core::ops::drop::Drop for aya::programs::fexit::FExitLink
  3387. pub fn aya::programs::fexit::FExitLink::drop(&mut self)
  3388. impl core::marker::Send for aya::programs::fexit::FExitLink
  3389. impl core::marker::Sync for aya::programs::fexit::FExitLink
  3390. impl core::marker::Unpin for aya::programs::fexit::FExitLink
  3391. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::fexit::FExitLink
  3392. impl core::panic::unwind_safe::UnwindSafe for aya::programs::fexit::FExitLink
  3393. impl<T, U> core::convert::Into<U> for aya::programs::fexit::FExitLink where U: core::convert::From<T>
  3394. pub fn aya::programs::fexit::FExitLink::into(self) -> U
  3395. impl<T, U> core::convert::TryFrom<U> for aya::programs::fexit::FExitLink where U: core::convert::Into<T>
  3396. pub type aya::programs::fexit::FExitLink::Error = core::convert::Infallible
  3397. pub fn aya::programs::fexit::FExitLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3398. impl<T, U> core::convert::TryInto<U> for aya::programs::fexit::FExitLink where U: core::convert::TryFrom<T>
  3399. pub type aya::programs::fexit::FExitLink::Error = <U as core::convert::TryFrom<T>>::Error
  3400. pub fn aya::programs::fexit::FExitLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3401. impl<T> core::any::Any for aya::programs::fexit::FExitLink where T: 'static + core::marker::Sized
  3402. pub fn aya::programs::fexit::FExitLink::type_id(&self) -> core::any::TypeId
  3403. impl<T> core::borrow::Borrow<T> for aya::programs::fexit::FExitLink where T: core::marker::Sized
  3404. pub fn aya::programs::fexit::FExitLink::borrow(&self) -> &T
  3405. impl<T> core::borrow::BorrowMut<T> for aya::programs::fexit::FExitLink where T: core::marker::Sized
  3406. pub fn aya::programs::fexit::FExitLink::borrow_mut(&mut self) -> &mut T
  3407. impl<T> core::convert::From<T> for aya::programs::fexit::FExitLink
  3408. pub fn aya::programs::fexit::FExitLink::from(t: T) -> T
  3409. pub struct aya::programs::fexit::FExitLinkId(_)
  3410. impl core::cmp::Eq for aya::programs::fexit::FExitLinkId
  3411. impl core::cmp::PartialEq for aya::programs::fexit::FExitLinkId
  3412. pub fn aya::programs::fexit::FExitLinkId::eq(&self, other: &aya::programs::fexit::FExitLinkId) -> bool
  3413. impl core::fmt::Debug for aya::programs::fexit::FExitLinkId
  3414. pub fn aya::programs::fexit::FExitLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3415. impl core::hash::Hash for aya::programs::fexit::FExitLinkId
  3416. pub fn aya::programs::fexit::FExitLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  3417. impl core::marker::StructuralPartialEq for aya::programs::fexit::FExitLinkId
  3418. impl core::marker::Send for aya::programs::fexit::FExitLinkId
  3419. impl core::marker::Sync for aya::programs::fexit::FExitLinkId
  3420. impl core::marker::Unpin for aya::programs::fexit::FExitLinkId
  3421. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::fexit::FExitLinkId
  3422. impl core::panic::unwind_safe::UnwindSafe for aya::programs::fexit::FExitLinkId
  3423. impl<T, U> core::convert::Into<U> for aya::programs::fexit::FExitLinkId where U: core::convert::From<T>
  3424. pub fn aya::programs::fexit::FExitLinkId::into(self) -> U
  3425. impl<T, U> core::convert::TryFrom<U> for aya::programs::fexit::FExitLinkId where U: core::convert::Into<T>
  3426. pub type aya::programs::fexit::FExitLinkId::Error = core::convert::Infallible
  3427. pub fn aya::programs::fexit::FExitLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3428. impl<T, U> core::convert::TryInto<U> for aya::programs::fexit::FExitLinkId where U: core::convert::TryFrom<T>
  3429. pub type aya::programs::fexit::FExitLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  3430. pub fn aya::programs::fexit::FExitLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3431. impl<T> core::any::Any for aya::programs::fexit::FExitLinkId where T: 'static + core::marker::Sized
  3432. pub fn aya::programs::fexit::FExitLinkId::type_id(&self) -> core::any::TypeId
  3433. impl<T> core::borrow::Borrow<T> for aya::programs::fexit::FExitLinkId where T: core::marker::Sized
  3434. pub fn aya::programs::fexit::FExitLinkId::borrow(&self) -> &T
  3435. impl<T> core::borrow::BorrowMut<T> for aya::programs::fexit::FExitLinkId where T: core::marker::Sized
  3436. pub fn aya::programs::fexit::FExitLinkId::borrow_mut(&mut self) -> &mut T
  3437. impl<T> core::convert::From<T> for aya::programs::fexit::FExitLinkId
  3438. pub fn aya::programs::fexit::FExitLinkId::from(t: T) -> T
  3439. pub mod aya::programs::kprobe
  3440. pub enum aya::programs::kprobe::KProbeError
  3441. pub aya::programs::kprobe::KProbeError::FileError
  3442. pub aya::programs::kprobe::KProbeError::FileError::filename: std::path::PathBuf
  3443. pub aya::programs::kprobe::KProbeError::FileError::io_error: std::io::error::Error
  3444. impl core::convert::From<aya::programs::kprobe::KProbeError> for aya::programs::ProgramError
  3445. pub fn aya::programs::ProgramError::from(source: aya::programs::kprobe::KProbeError) -> Self
  3446. impl core::error::Error for aya::programs::kprobe::KProbeError
  3447. pub fn aya::programs::kprobe::KProbeError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  3448. impl core::fmt::Debug for aya::programs::kprobe::KProbeError
  3449. pub fn aya::programs::kprobe::KProbeError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3450. impl core::fmt::Display for aya::programs::kprobe::KProbeError
  3451. pub fn aya::programs::kprobe::KProbeError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3452. impl core::marker::Send for aya::programs::kprobe::KProbeError
  3453. impl core::marker::Sync for aya::programs::kprobe::KProbeError
  3454. impl core::marker::Unpin for aya::programs::kprobe::KProbeError
  3455. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::kprobe::KProbeError
  3456. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::kprobe::KProbeError
  3457. impl<T, U> core::convert::Into<U> for aya::programs::kprobe::KProbeError where U: core::convert::From<T>
  3458. pub fn aya::programs::kprobe::KProbeError::into(self) -> U
  3459. impl<T, U> core::convert::TryFrom<U> for aya::programs::kprobe::KProbeError where U: core::convert::Into<T>
  3460. pub type aya::programs::kprobe::KProbeError::Error = core::convert::Infallible
  3461. pub fn aya::programs::kprobe::KProbeError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3462. impl<T, U> core::convert::TryInto<U> for aya::programs::kprobe::KProbeError where U: core::convert::TryFrom<T>
  3463. pub type aya::programs::kprobe::KProbeError::Error = <U as core::convert::TryFrom<T>>::Error
  3464. pub fn aya::programs::kprobe::KProbeError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3465. impl<T> alloc::string::ToString for aya::programs::kprobe::KProbeError where T: core::fmt::Display + core::marker::Sized
  3466. pub fn aya::programs::kprobe::KProbeError::to_string(&self) -> alloc::string::String
  3467. impl<T> core::any::Any for aya::programs::kprobe::KProbeError where T: 'static + core::marker::Sized
  3468. pub fn aya::programs::kprobe::KProbeError::type_id(&self) -> core::any::TypeId
  3469. impl<T> core::borrow::Borrow<T> for aya::programs::kprobe::KProbeError where T: core::marker::Sized
  3470. pub fn aya::programs::kprobe::KProbeError::borrow(&self) -> &T
  3471. impl<T> core::borrow::BorrowMut<T> for aya::programs::kprobe::KProbeError where T: core::marker::Sized
  3472. pub fn aya::programs::kprobe::KProbeError::borrow_mut(&mut self) -> &mut T
  3473. impl<T> core::convert::From<T> for aya::programs::kprobe::KProbeError
  3474. pub fn aya::programs::kprobe::KProbeError::from(t: T) -> T
  3475. pub struct aya::programs::kprobe::KProbe
  3476. impl aya::programs::kprobe::KProbe
  3477. pub fn aya::programs::kprobe::KProbe::attach<T: core::convert::AsRef<std::ffi::os_str::OsStr>>(&mut self, fn_name: T, offset: u64) -> core::result::Result<aya::programs::kprobe::KProbeLinkId, aya::programs::ProgramError>
  3478. pub fn aya::programs::kprobe::KProbe::detach(&mut self, link_id: aya::programs::kprobe::KProbeLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  3479. pub fn aya::programs::kprobe::KProbe::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, kind: aya::programs::ProbeKind) -> core::result::Result<Self, aya::programs::ProgramError>
  3480. pub fn aya::programs::kprobe::KProbe::kind(&self) -> aya::programs::ProbeKind
  3481. pub fn aya::programs::kprobe::KProbe::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  3482. pub fn aya::programs::kprobe::KProbe::take_link(&mut self, link_id: aya::programs::kprobe::KProbeLinkId) -> core::result::Result<aya::programs::kprobe::KProbeLink, aya::programs::ProgramError>
  3483. impl aya::programs::kprobe::KProbe
  3484. pub fn aya::programs::kprobe::KProbe::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  3485. impl aya::programs::kprobe::KProbe
  3486. pub fn aya::programs::kprobe::KProbe::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  3487. impl aya::programs::kprobe::KProbe
  3488. pub fn aya::programs::kprobe::KProbe::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  3489. pub fn aya::programs::kprobe::KProbe::unpin(self) -> core::result::Result<(), std::io::error::Error>
  3490. impl aya::programs::kprobe::KProbe
  3491. pub fn aya::programs::kprobe::KProbe::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  3492. impl core::fmt::Debug for aya::programs::kprobe::KProbe
  3493. pub fn aya::programs::kprobe::KProbe::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3494. impl core::ops::drop::Drop for aya::programs::kprobe::KProbe
  3495. pub fn aya::programs::kprobe::KProbe::drop(&mut self)
  3496. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::kprobe::KProbe
  3497. pub type &'a aya::programs::kprobe::KProbe::Error = aya::programs::ProgramError
  3498. pub fn &'a aya::programs::kprobe::KProbe::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::kprobe::KProbe, aya::programs::ProgramError>
  3499. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::kprobe::KProbe
  3500. pub type &'a mut aya::programs::kprobe::KProbe::Error = aya::programs::ProgramError
  3501. pub fn &'a mut aya::programs::kprobe::KProbe::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::kprobe::KProbe, aya::programs::ProgramError>
  3502. impl core::marker::Send for aya::programs::kprobe::KProbe
  3503. impl core::marker::Sync for aya::programs::kprobe::KProbe
  3504. impl core::marker::Unpin for aya::programs::kprobe::KProbe
  3505. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::kprobe::KProbe
  3506. impl core::panic::unwind_safe::UnwindSafe for aya::programs::kprobe::KProbe
  3507. impl<T, U> core::convert::Into<U> for aya::programs::kprobe::KProbe where U: core::convert::From<T>
  3508. pub fn aya::programs::kprobe::KProbe::into(self) -> U
  3509. impl<T, U> core::convert::TryFrom<U> for aya::programs::kprobe::KProbe where U: core::convert::Into<T>
  3510. pub type aya::programs::kprobe::KProbe::Error = core::convert::Infallible
  3511. pub fn aya::programs::kprobe::KProbe::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3512. impl<T, U> core::convert::TryInto<U> for aya::programs::kprobe::KProbe where U: core::convert::TryFrom<T>
  3513. pub type aya::programs::kprobe::KProbe::Error = <U as core::convert::TryFrom<T>>::Error
  3514. pub fn aya::programs::kprobe::KProbe::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3515. impl<T> core::any::Any for aya::programs::kprobe::KProbe where T: 'static + core::marker::Sized
  3516. pub fn aya::programs::kprobe::KProbe::type_id(&self) -> core::any::TypeId
  3517. impl<T> core::borrow::Borrow<T> for aya::programs::kprobe::KProbe where T: core::marker::Sized
  3518. pub fn aya::programs::kprobe::KProbe::borrow(&self) -> &T
  3519. impl<T> core::borrow::BorrowMut<T> for aya::programs::kprobe::KProbe where T: core::marker::Sized
  3520. pub fn aya::programs::kprobe::KProbe::borrow_mut(&mut self) -> &mut T
  3521. impl<T> core::convert::From<T> for aya::programs::kprobe::KProbe
  3522. pub fn aya::programs::kprobe::KProbe::from(t: T) -> T
  3523. pub struct aya::programs::kprobe::KProbeLink(_)
  3524. impl aya::programs::links::Link for aya::programs::kprobe::KProbeLink
  3525. pub type aya::programs::kprobe::KProbeLink::Id = aya::programs::kprobe::KProbeLinkId
  3526. pub fn aya::programs::kprobe::KProbeLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3527. pub fn aya::programs::kprobe::KProbeLink::id(&self) -> Self::Id
  3528. impl core::convert::TryFrom<aya::programs::kprobe::KProbeLink> for aya::programs::links::FdLink
  3529. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  3530. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::kprobe::KProbeLink) -> core::result::Result<Self, Self::Error>
  3531. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::kprobe::KProbeLink
  3532. pub type aya::programs::kprobe::KProbeLink::Error = aya::programs::links::LinkError
  3533. pub fn aya::programs::kprobe::KProbeLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  3534. impl core::fmt::Debug for aya::programs::kprobe::KProbeLink
  3535. pub fn aya::programs::kprobe::KProbeLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3536. impl core::ops::drop::Drop for aya::programs::kprobe::KProbeLink
  3537. pub fn aya::programs::kprobe::KProbeLink::drop(&mut self)
  3538. impl core::marker::Send for aya::programs::kprobe::KProbeLink
  3539. impl core::marker::Sync for aya::programs::kprobe::KProbeLink
  3540. impl core::marker::Unpin for aya::programs::kprobe::KProbeLink
  3541. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::kprobe::KProbeLink
  3542. impl core::panic::unwind_safe::UnwindSafe for aya::programs::kprobe::KProbeLink
  3543. impl<T, U> core::convert::Into<U> for aya::programs::kprobe::KProbeLink where U: core::convert::From<T>
  3544. pub fn aya::programs::kprobe::KProbeLink::into(self) -> U
  3545. impl<T, U> core::convert::TryFrom<U> for aya::programs::kprobe::KProbeLink where U: core::convert::Into<T>
  3546. pub type aya::programs::kprobe::KProbeLink::Error = core::convert::Infallible
  3547. pub fn aya::programs::kprobe::KProbeLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3548. impl<T, U> core::convert::TryInto<U> for aya::programs::kprobe::KProbeLink where U: core::convert::TryFrom<T>
  3549. pub type aya::programs::kprobe::KProbeLink::Error = <U as core::convert::TryFrom<T>>::Error
  3550. pub fn aya::programs::kprobe::KProbeLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3551. impl<T> core::any::Any for aya::programs::kprobe::KProbeLink where T: 'static + core::marker::Sized
  3552. pub fn aya::programs::kprobe::KProbeLink::type_id(&self) -> core::any::TypeId
  3553. impl<T> core::borrow::Borrow<T> for aya::programs::kprobe::KProbeLink where T: core::marker::Sized
  3554. pub fn aya::programs::kprobe::KProbeLink::borrow(&self) -> &T
  3555. impl<T> core::borrow::BorrowMut<T> for aya::programs::kprobe::KProbeLink where T: core::marker::Sized
  3556. pub fn aya::programs::kprobe::KProbeLink::borrow_mut(&mut self) -> &mut T
  3557. impl<T> core::convert::From<T> for aya::programs::kprobe::KProbeLink
  3558. pub fn aya::programs::kprobe::KProbeLink::from(t: T) -> T
  3559. pub struct aya::programs::kprobe::KProbeLinkId(_)
  3560. impl core::cmp::Eq for aya::programs::kprobe::KProbeLinkId
  3561. impl core::cmp::PartialEq for aya::programs::kprobe::KProbeLinkId
  3562. pub fn aya::programs::kprobe::KProbeLinkId::eq(&self, other: &aya::programs::kprobe::KProbeLinkId) -> bool
  3563. impl core::fmt::Debug for aya::programs::kprobe::KProbeLinkId
  3564. pub fn aya::programs::kprobe::KProbeLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3565. impl core::hash::Hash for aya::programs::kprobe::KProbeLinkId
  3566. pub fn aya::programs::kprobe::KProbeLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  3567. impl core::marker::StructuralPartialEq for aya::programs::kprobe::KProbeLinkId
  3568. impl core::marker::Send for aya::programs::kprobe::KProbeLinkId
  3569. impl core::marker::Sync for aya::programs::kprobe::KProbeLinkId
  3570. impl core::marker::Unpin for aya::programs::kprobe::KProbeLinkId
  3571. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::kprobe::KProbeLinkId
  3572. impl core::panic::unwind_safe::UnwindSafe for aya::programs::kprobe::KProbeLinkId
  3573. impl<T, U> core::convert::Into<U> for aya::programs::kprobe::KProbeLinkId where U: core::convert::From<T>
  3574. pub fn aya::programs::kprobe::KProbeLinkId::into(self) -> U
  3575. impl<T, U> core::convert::TryFrom<U> for aya::programs::kprobe::KProbeLinkId where U: core::convert::Into<T>
  3576. pub type aya::programs::kprobe::KProbeLinkId::Error = core::convert::Infallible
  3577. pub fn aya::programs::kprobe::KProbeLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3578. impl<T, U> core::convert::TryInto<U> for aya::programs::kprobe::KProbeLinkId where U: core::convert::TryFrom<T>
  3579. pub type aya::programs::kprobe::KProbeLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  3580. pub fn aya::programs::kprobe::KProbeLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3581. impl<T> core::any::Any for aya::programs::kprobe::KProbeLinkId where T: 'static + core::marker::Sized
  3582. pub fn aya::programs::kprobe::KProbeLinkId::type_id(&self) -> core::any::TypeId
  3583. impl<T> core::borrow::Borrow<T> for aya::programs::kprobe::KProbeLinkId where T: core::marker::Sized
  3584. pub fn aya::programs::kprobe::KProbeLinkId::borrow(&self) -> &T
  3585. impl<T> core::borrow::BorrowMut<T> for aya::programs::kprobe::KProbeLinkId where T: core::marker::Sized
  3586. pub fn aya::programs::kprobe::KProbeLinkId::borrow_mut(&mut self) -> &mut T
  3587. impl<T> core::convert::From<T> for aya::programs::kprobe::KProbeLinkId
  3588. pub fn aya::programs::kprobe::KProbeLinkId::from(t: T) -> T
  3589. pub mod aya::programs::links
  3590. pub enum aya::programs::links::LinkError
  3591. pub aya::programs::links::LinkError::InvalidLink
  3592. pub aya::programs::links::LinkError::SyscallError(crate::sys::SyscallError)
  3593. impl core::error::Error for aya::programs::links::LinkError
  3594. pub fn aya::programs::links::LinkError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  3595. impl core::fmt::Debug for aya::programs::links::LinkError
  3596. pub fn aya::programs::links::LinkError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3597. impl core::fmt::Display for aya::programs::links::LinkError
  3598. pub fn aya::programs::links::LinkError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3599. impl core::marker::Send for aya::programs::links::LinkError
  3600. impl core::marker::Sync for aya::programs::links::LinkError
  3601. impl core::marker::Unpin for aya::programs::links::LinkError
  3602. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::LinkError
  3603. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::links::LinkError
  3604. impl<T, U> core::convert::Into<U> for aya::programs::links::LinkError where U: core::convert::From<T>
  3605. pub fn aya::programs::links::LinkError::into(self) -> U
  3606. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::LinkError where U: core::convert::Into<T>
  3607. pub type aya::programs::links::LinkError::Error = core::convert::Infallible
  3608. pub fn aya::programs::links::LinkError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3609. impl<T, U> core::convert::TryInto<U> for aya::programs::links::LinkError where U: core::convert::TryFrom<T>
  3610. pub type aya::programs::links::LinkError::Error = <U as core::convert::TryFrom<T>>::Error
  3611. pub fn aya::programs::links::LinkError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3612. impl<T> alloc::string::ToString for aya::programs::links::LinkError where T: core::fmt::Display + core::marker::Sized
  3613. pub fn aya::programs::links::LinkError::to_string(&self) -> alloc::string::String
  3614. impl<T> core::any::Any for aya::programs::links::LinkError where T: 'static + core::marker::Sized
  3615. pub fn aya::programs::links::LinkError::type_id(&self) -> core::any::TypeId
  3616. impl<T> core::borrow::Borrow<T> for aya::programs::links::LinkError where T: core::marker::Sized
  3617. pub fn aya::programs::links::LinkError::borrow(&self) -> &T
  3618. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::LinkError where T: core::marker::Sized
  3619. pub fn aya::programs::links::LinkError::borrow_mut(&mut self) -> &mut T
  3620. impl<T> core::convert::From<T> for aya::programs::links::LinkError
  3621. pub fn aya::programs::links::LinkError::from(t: T) -> T
  3622. pub struct aya::programs::links::FdLink
  3623. impl aya::programs::links::FdLink
  3624. pub fn aya::programs::links::FdLink::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<aya::programs::links::PinnedLink, aya::pin::PinError>
  3625. impl aya::programs::links::Link for aya::programs::links::FdLink
  3626. pub type aya::programs::links::FdLink::Id = aya::programs::links::FdLinkId
  3627. pub fn aya::programs::links::FdLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3628. pub fn aya::programs::links::FdLink::id(&self) -> Self::Id
  3629. impl core::convert::From<aya::programs::extension::ExtensionLink> for aya::programs::links::FdLink
  3630. pub fn aya::programs::links::FdLink::from(w: aya::programs::extension::ExtensionLink) -> aya::programs::links::FdLink
  3631. impl core::convert::From<aya::programs::fentry::FEntryLink> for aya::programs::links::FdLink
  3632. pub fn aya::programs::links::FdLink::from(w: aya::programs::fentry::FEntryLink) -> aya::programs::links::FdLink
  3633. impl core::convert::From<aya::programs::fexit::FExitLink> for aya::programs::links::FdLink
  3634. pub fn aya::programs::links::FdLink::from(w: aya::programs::fexit::FExitLink) -> aya::programs::links::FdLink
  3635. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::extension::ExtensionLink
  3636. pub fn aya::programs::extension::ExtensionLink::from(b: aya::programs::links::FdLink) -> aya::programs::extension::ExtensionLink
  3637. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::fentry::FEntryLink
  3638. pub fn aya::programs::fentry::FEntryLink::from(b: aya::programs::links::FdLink) -> aya::programs::fentry::FEntryLink
  3639. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::fexit::FExitLink
  3640. pub fn aya::programs::fexit::FExitLink::from(b: aya::programs::links::FdLink) -> aya::programs::fexit::FExitLink
  3641. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::lsm::LsmLink
  3642. pub fn aya::programs::lsm::LsmLink::from(b: aya::programs::links::FdLink) -> aya::programs::lsm::LsmLink
  3643. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::tp_btf::BtfTracePointLink
  3644. pub fn aya::programs::tp_btf::BtfTracePointLink::from(b: aya::programs::links::FdLink) -> aya::programs::tp_btf::BtfTracePointLink
  3645. impl core::convert::From<aya::programs::links::PinnedLink> for aya::programs::links::FdLink
  3646. pub fn aya::programs::links::FdLink::from(p: aya::programs::links::PinnedLink) -> Self
  3647. impl core::convert::From<aya::programs::lsm::LsmLink> for aya::programs::links::FdLink
  3648. pub fn aya::programs::links::FdLink::from(w: aya::programs::lsm::LsmLink) -> aya::programs::links::FdLink
  3649. impl core::convert::From<aya::programs::tp_btf::BtfTracePointLink> for aya::programs::links::FdLink
  3650. pub fn aya::programs::links::FdLink::from(w: aya::programs::tp_btf::BtfTracePointLink) -> aya::programs::links::FdLink
  3651. impl core::convert::TryFrom<aya::programs::kprobe::KProbeLink> for aya::programs::links::FdLink
  3652. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  3653. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::kprobe::KProbeLink) -> core::result::Result<Self, Self::Error>
  3654. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::kprobe::KProbeLink
  3655. pub type aya::programs::kprobe::KProbeLink::Error = aya::programs::links::LinkError
  3656. pub fn aya::programs::kprobe::KProbeLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  3657. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::perf_event::PerfEventLink
  3658. pub type aya::programs::perf_event::PerfEventLink::Error = aya::programs::links::LinkError
  3659. pub fn aya::programs::perf_event::PerfEventLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  3660. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::trace_point::TracePointLink
  3661. pub type aya::programs::trace_point::TracePointLink::Error = aya::programs::links::LinkError
  3662. pub fn aya::programs::trace_point::TracePointLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  3663. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::uprobe::UProbeLink
  3664. pub type aya::programs::uprobe::UProbeLink::Error = aya::programs::links::LinkError
  3665. pub fn aya::programs::uprobe::UProbeLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  3666. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::xdp::XdpLink
  3667. pub type aya::programs::xdp::XdpLink::Error = aya::programs::links::LinkError
  3668. pub fn aya::programs::xdp::XdpLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  3669. impl core::convert::TryFrom<aya::programs::perf_event::PerfEventLink> for aya::programs::links::FdLink
  3670. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  3671. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::perf_event::PerfEventLink) -> core::result::Result<Self, Self::Error>
  3672. impl core::convert::TryFrom<aya::programs::trace_point::TracePointLink> for aya::programs::links::FdLink
  3673. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  3674. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::trace_point::TracePointLink) -> core::result::Result<Self, Self::Error>
  3675. impl core::convert::TryFrom<aya::programs::uprobe::UProbeLink> for aya::programs::links::FdLink
  3676. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  3677. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::uprobe::UProbeLink) -> core::result::Result<Self, Self::Error>
  3678. impl core::convert::TryFrom<aya::programs::xdp::XdpLink> for aya::programs::links::FdLink
  3679. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  3680. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::xdp::XdpLink) -> core::result::Result<Self, Self::Error>
  3681. impl core::fmt::Debug for aya::programs::links::FdLink
  3682. pub fn aya::programs::links::FdLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3683. impl core::marker::Send for aya::programs::links::FdLink
  3684. impl core::marker::Sync for aya::programs::links::FdLink
  3685. impl core::marker::Unpin for aya::programs::links::FdLink
  3686. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::FdLink
  3687. impl core::panic::unwind_safe::UnwindSafe for aya::programs::links::FdLink
  3688. impl<T, U> core::convert::Into<U> for aya::programs::links::FdLink where U: core::convert::From<T>
  3689. pub fn aya::programs::links::FdLink::into(self) -> U
  3690. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::FdLink where U: core::convert::Into<T>
  3691. pub type aya::programs::links::FdLink::Error = core::convert::Infallible
  3692. pub fn aya::programs::links::FdLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3693. impl<T, U> core::convert::TryInto<U> for aya::programs::links::FdLink where U: core::convert::TryFrom<T>
  3694. pub type aya::programs::links::FdLink::Error = <U as core::convert::TryFrom<T>>::Error
  3695. pub fn aya::programs::links::FdLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3696. impl<T> core::any::Any for aya::programs::links::FdLink where T: 'static + core::marker::Sized
  3697. pub fn aya::programs::links::FdLink::type_id(&self) -> core::any::TypeId
  3698. impl<T> core::borrow::Borrow<T> for aya::programs::links::FdLink where T: core::marker::Sized
  3699. pub fn aya::programs::links::FdLink::borrow(&self) -> &T
  3700. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::FdLink where T: core::marker::Sized
  3701. pub fn aya::programs::links::FdLink::borrow_mut(&mut self) -> &mut T
  3702. impl<T> core::convert::From<T> for aya::programs::links::FdLink
  3703. pub fn aya::programs::links::FdLink::from(t: T) -> T
  3704. pub struct aya::programs::links::FdLinkId(_)
  3705. impl core::cmp::Eq for aya::programs::links::FdLinkId
  3706. impl core::cmp::PartialEq for aya::programs::links::FdLinkId
  3707. pub fn aya::programs::links::FdLinkId::eq(&self, other: &aya::programs::links::FdLinkId) -> bool
  3708. impl core::fmt::Debug for aya::programs::links::FdLinkId
  3709. pub fn aya::programs::links::FdLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3710. impl core::hash::Hash for aya::programs::links::FdLinkId
  3711. pub fn aya::programs::links::FdLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  3712. impl core::marker::StructuralPartialEq for aya::programs::links::FdLinkId
  3713. impl core::marker::Send for aya::programs::links::FdLinkId
  3714. impl core::marker::Sync for aya::programs::links::FdLinkId
  3715. impl core::marker::Unpin for aya::programs::links::FdLinkId
  3716. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::FdLinkId
  3717. impl core::panic::unwind_safe::UnwindSafe for aya::programs::links::FdLinkId
  3718. impl<T, U> core::convert::Into<U> for aya::programs::links::FdLinkId where U: core::convert::From<T>
  3719. pub fn aya::programs::links::FdLinkId::into(self) -> U
  3720. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::FdLinkId where U: core::convert::Into<T>
  3721. pub type aya::programs::links::FdLinkId::Error = core::convert::Infallible
  3722. pub fn aya::programs::links::FdLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3723. impl<T, U> core::convert::TryInto<U> for aya::programs::links::FdLinkId where U: core::convert::TryFrom<T>
  3724. pub type aya::programs::links::FdLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  3725. pub fn aya::programs::links::FdLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3726. impl<T> core::any::Any for aya::programs::links::FdLinkId where T: 'static + core::marker::Sized
  3727. pub fn aya::programs::links::FdLinkId::type_id(&self) -> core::any::TypeId
  3728. impl<T> core::borrow::Borrow<T> for aya::programs::links::FdLinkId where T: core::marker::Sized
  3729. pub fn aya::programs::links::FdLinkId::borrow(&self) -> &T
  3730. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::FdLinkId where T: core::marker::Sized
  3731. pub fn aya::programs::links::FdLinkId::borrow_mut(&mut self) -> &mut T
  3732. impl<T> core::convert::From<T> for aya::programs::links::FdLinkId
  3733. pub fn aya::programs::links::FdLinkId::from(t: T) -> T
  3734. pub struct aya::programs::links::PinnedLink
  3735. impl aya::programs::links::PinnedLink
  3736. pub fn aya::programs::links::PinnedLink::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::links::LinkError>
  3737. pub fn aya::programs::links::PinnedLink::unpin(self) -> core::result::Result<aya::programs::links::FdLink, std::io::error::Error>
  3738. impl core::convert::From<aya::programs::links::PinnedLink> for aya::programs::links::FdLink
  3739. pub fn aya::programs::links::FdLink::from(p: aya::programs::links::PinnedLink) -> Self
  3740. impl core::fmt::Debug for aya::programs::links::PinnedLink
  3741. pub fn aya::programs::links::PinnedLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3742. impl core::marker::Send for aya::programs::links::PinnedLink
  3743. impl core::marker::Sync for aya::programs::links::PinnedLink
  3744. impl core::marker::Unpin for aya::programs::links::PinnedLink
  3745. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::PinnedLink
  3746. impl core::panic::unwind_safe::UnwindSafe for aya::programs::links::PinnedLink
  3747. impl<T, U> core::convert::Into<U> for aya::programs::links::PinnedLink where U: core::convert::From<T>
  3748. pub fn aya::programs::links::PinnedLink::into(self) -> U
  3749. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::PinnedLink where U: core::convert::Into<T>
  3750. pub type aya::programs::links::PinnedLink::Error = core::convert::Infallible
  3751. pub fn aya::programs::links::PinnedLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3752. impl<T, U> core::convert::TryInto<U> for aya::programs::links::PinnedLink where U: core::convert::TryFrom<T>
  3753. pub type aya::programs::links::PinnedLink::Error = <U as core::convert::TryFrom<T>>::Error
  3754. pub fn aya::programs::links::PinnedLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3755. impl<T> core::any::Any for aya::programs::links::PinnedLink where T: 'static + core::marker::Sized
  3756. pub fn aya::programs::links::PinnedLink::type_id(&self) -> core::any::TypeId
  3757. impl<T> core::borrow::Borrow<T> for aya::programs::links::PinnedLink where T: core::marker::Sized
  3758. pub fn aya::programs::links::PinnedLink::borrow(&self) -> &T
  3759. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::PinnedLink where T: core::marker::Sized
  3760. pub fn aya::programs::links::PinnedLink::borrow_mut(&mut self) -> &mut T
  3761. impl<T> core::convert::From<T> for aya::programs::links::PinnedLink
  3762. pub fn aya::programs::links::PinnedLink::from(t: T) -> T
  3763. pub struct aya::programs::links::ProgAttachLink
  3764. impl aya::programs::links::Link for aya::programs::links::ProgAttachLink
  3765. pub type aya::programs::links::ProgAttachLink::Id = aya::programs::links::ProgAttachLinkId
  3766. pub fn aya::programs::links::ProgAttachLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3767. pub fn aya::programs::links::ProgAttachLink::id(&self) -> Self::Id
  3768. impl core::fmt::Debug for aya::programs::links::ProgAttachLink
  3769. pub fn aya::programs::links::ProgAttachLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3770. impl core::marker::Send for aya::programs::links::ProgAttachLink
  3771. impl core::marker::Sync for aya::programs::links::ProgAttachLink
  3772. impl core::marker::Unpin for aya::programs::links::ProgAttachLink
  3773. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::ProgAttachLink
  3774. impl core::panic::unwind_safe::UnwindSafe for aya::programs::links::ProgAttachLink
  3775. impl<T, U> core::convert::Into<U> for aya::programs::links::ProgAttachLink where U: core::convert::From<T>
  3776. pub fn aya::programs::links::ProgAttachLink::into(self) -> U
  3777. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::ProgAttachLink where U: core::convert::Into<T>
  3778. pub type aya::programs::links::ProgAttachLink::Error = core::convert::Infallible
  3779. pub fn aya::programs::links::ProgAttachLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3780. impl<T, U> core::convert::TryInto<U> for aya::programs::links::ProgAttachLink where U: core::convert::TryFrom<T>
  3781. pub type aya::programs::links::ProgAttachLink::Error = <U as core::convert::TryFrom<T>>::Error
  3782. pub fn aya::programs::links::ProgAttachLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3783. impl<T> core::any::Any for aya::programs::links::ProgAttachLink where T: 'static + core::marker::Sized
  3784. pub fn aya::programs::links::ProgAttachLink::type_id(&self) -> core::any::TypeId
  3785. impl<T> core::borrow::Borrow<T> for aya::programs::links::ProgAttachLink where T: core::marker::Sized
  3786. pub fn aya::programs::links::ProgAttachLink::borrow(&self) -> &T
  3787. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::ProgAttachLink where T: core::marker::Sized
  3788. pub fn aya::programs::links::ProgAttachLink::borrow_mut(&mut self) -> &mut T
  3789. impl<T> core::convert::From<T> for aya::programs::links::ProgAttachLink
  3790. pub fn aya::programs::links::ProgAttachLink::from(t: T) -> T
  3791. pub struct aya::programs::links::ProgAttachLinkId(_, _, _)
  3792. impl core::cmp::Eq for aya::programs::links::ProgAttachLinkId
  3793. impl core::cmp::PartialEq for aya::programs::links::ProgAttachLinkId
  3794. pub fn aya::programs::links::ProgAttachLinkId::eq(&self, other: &aya::programs::links::ProgAttachLinkId) -> bool
  3795. impl core::fmt::Debug for aya::programs::links::ProgAttachLinkId
  3796. pub fn aya::programs::links::ProgAttachLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3797. impl core::hash::Hash for aya::programs::links::ProgAttachLinkId
  3798. pub fn aya::programs::links::ProgAttachLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  3799. impl core::marker::StructuralPartialEq for aya::programs::links::ProgAttachLinkId
  3800. impl core::marker::Send for aya::programs::links::ProgAttachLinkId
  3801. impl core::marker::Sync for aya::programs::links::ProgAttachLinkId
  3802. impl core::marker::Unpin for aya::programs::links::ProgAttachLinkId
  3803. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::ProgAttachLinkId
  3804. impl core::panic::unwind_safe::UnwindSafe for aya::programs::links::ProgAttachLinkId
  3805. impl<T, U> core::convert::Into<U> for aya::programs::links::ProgAttachLinkId where U: core::convert::From<T>
  3806. pub fn aya::programs::links::ProgAttachLinkId::into(self) -> U
  3807. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::ProgAttachLinkId where U: core::convert::Into<T>
  3808. pub type aya::programs::links::ProgAttachLinkId::Error = core::convert::Infallible
  3809. pub fn aya::programs::links::ProgAttachLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3810. impl<T, U> core::convert::TryInto<U> for aya::programs::links::ProgAttachLinkId where U: core::convert::TryFrom<T>
  3811. pub type aya::programs::links::ProgAttachLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  3812. pub fn aya::programs::links::ProgAttachLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3813. impl<T> core::any::Any for aya::programs::links::ProgAttachLinkId where T: 'static + core::marker::Sized
  3814. pub fn aya::programs::links::ProgAttachLinkId::type_id(&self) -> core::any::TypeId
  3815. impl<T> core::borrow::Borrow<T> for aya::programs::links::ProgAttachLinkId where T: core::marker::Sized
  3816. pub fn aya::programs::links::ProgAttachLinkId::borrow(&self) -> &T
  3817. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::ProgAttachLinkId where T: core::marker::Sized
  3818. pub fn aya::programs::links::ProgAttachLinkId::borrow_mut(&mut self) -> &mut T
  3819. impl<T> core::convert::From<T> for aya::programs::links::ProgAttachLinkId
  3820. pub fn aya::programs::links::ProgAttachLinkId::from(t: T) -> T
  3821. pub trait aya::programs::links::Link: core::fmt::Debug + 'static
  3822. pub type aya::programs::links::Link::Id: core::fmt::Debug + core::hash::Hash + core::cmp::Eq + core::cmp::PartialEq
  3823. pub fn aya::programs::links::Link::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3824. pub fn aya::programs::links::Link::id(&self) -> Self::Id
  3825. impl aya::programs::links::Link for aya::programs::cgroup_device::CgroupDeviceLink
  3826. pub type aya::programs::cgroup_device::CgroupDeviceLink::Id = aya::programs::cgroup_device::CgroupDeviceLinkId
  3827. pub fn aya::programs::cgroup_device::CgroupDeviceLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3828. pub fn aya::programs::cgroup_device::CgroupDeviceLink::id(&self) -> Self::Id
  3829. impl aya::programs::links::Link for aya::programs::cgroup_skb::CgroupSkbLink
  3830. pub type aya::programs::cgroup_skb::CgroupSkbLink::Id = aya::programs::cgroup_skb::CgroupSkbLinkId
  3831. pub fn aya::programs::cgroup_skb::CgroupSkbLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3832. pub fn aya::programs::cgroup_skb::CgroupSkbLink::id(&self) -> Self::Id
  3833. impl aya::programs::links::Link for aya::programs::cgroup_sock::CgroupSockLink
  3834. pub type aya::programs::cgroup_sock::CgroupSockLink::Id = aya::programs::cgroup_sock::CgroupSockLinkId
  3835. pub fn aya::programs::cgroup_sock::CgroupSockLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3836. pub fn aya::programs::cgroup_sock::CgroupSockLink::id(&self) -> Self::Id
  3837. impl aya::programs::links::Link for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  3838. pub type aya::programs::cgroup_sock_addr::CgroupSockAddrLink::Id = aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  3839. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3840. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::id(&self) -> Self::Id
  3841. impl aya::programs::links::Link for aya::programs::cgroup_sockopt::CgroupSockoptLink
  3842. pub type aya::programs::cgroup_sockopt::CgroupSockoptLink::Id = aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3843. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3844. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::id(&self) -> Self::Id
  3845. impl aya::programs::links::Link for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3846. pub type aya::programs::cgroup_sysctl::CgroupSysctlLink::Id = aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3847. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3848. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::id(&self) -> Self::Id
  3849. impl aya::programs::links::Link for aya::programs::extension::ExtensionLink
  3850. pub type aya::programs::extension::ExtensionLink::Id = aya::programs::extension::ExtensionLinkId
  3851. pub fn aya::programs::extension::ExtensionLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3852. pub fn aya::programs::extension::ExtensionLink::id(&self) -> Self::Id
  3853. impl aya::programs::links::Link for aya::programs::fentry::FEntryLink
  3854. pub type aya::programs::fentry::FEntryLink::Id = aya::programs::fentry::FEntryLinkId
  3855. pub fn aya::programs::fentry::FEntryLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3856. pub fn aya::programs::fentry::FEntryLink::id(&self) -> Self::Id
  3857. impl aya::programs::links::Link for aya::programs::fexit::FExitLink
  3858. pub type aya::programs::fexit::FExitLink::Id = aya::programs::fexit::FExitLinkId
  3859. pub fn aya::programs::fexit::FExitLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3860. pub fn aya::programs::fexit::FExitLink::id(&self) -> Self::Id
  3861. impl aya::programs::links::Link for aya::programs::kprobe::KProbeLink
  3862. pub type aya::programs::kprobe::KProbeLink::Id = aya::programs::kprobe::KProbeLinkId
  3863. pub fn aya::programs::kprobe::KProbeLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3864. pub fn aya::programs::kprobe::KProbeLink::id(&self) -> Self::Id
  3865. impl aya::programs::links::Link for aya::programs::links::FdLink
  3866. pub type aya::programs::links::FdLink::Id = aya::programs::links::FdLinkId
  3867. pub fn aya::programs::links::FdLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3868. pub fn aya::programs::links::FdLink::id(&self) -> Self::Id
  3869. impl aya::programs::links::Link for aya::programs::links::ProgAttachLink
  3870. pub type aya::programs::links::ProgAttachLink::Id = aya::programs::links::ProgAttachLinkId
  3871. pub fn aya::programs::links::ProgAttachLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3872. pub fn aya::programs::links::ProgAttachLink::id(&self) -> Self::Id
  3873. impl aya::programs::links::Link for aya::programs::lirc_mode2::LircLink
  3874. pub type aya::programs::lirc_mode2::LircLink::Id = aya::programs::lirc_mode2::LircLinkId
  3875. pub fn aya::programs::lirc_mode2::LircLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3876. pub fn aya::programs::lirc_mode2::LircLink::id(&self) -> Self::Id
  3877. impl aya::programs::links::Link for aya::programs::lsm::LsmLink
  3878. pub type aya::programs::lsm::LsmLink::Id = aya::programs::lsm::LsmLinkId
  3879. pub fn aya::programs::lsm::LsmLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3880. pub fn aya::programs::lsm::LsmLink::id(&self) -> Self::Id
  3881. impl aya::programs::links::Link for aya::programs::perf_attach::PerfLink
  3882. pub type aya::programs::perf_attach::PerfLink::Id = aya::programs::perf_attach::PerfLinkId
  3883. pub fn aya::programs::perf_attach::PerfLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3884. pub fn aya::programs::perf_attach::PerfLink::id(&self) -> Self::Id
  3885. impl aya::programs::links::Link for aya::programs::perf_event::PerfEventLink
  3886. pub type aya::programs::perf_event::PerfEventLink::Id = aya::programs::perf_event::PerfEventLinkId
  3887. pub fn aya::programs::perf_event::PerfEventLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3888. pub fn aya::programs::perf_event::PerfEventLink::id(&self) -> Self::Id
  3889. impl aya::programs::links::Link for aya::programs::tc::SchedClassifierLink
  3890. pub type aya::programs::tc::SchedClassifierLink::Id = aya::programs::tc::SchedClassifierLinkId
  3891. pub fn aya::programs::tc::SchedClassifierLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3892. pub fn aya::programs::tc::SchedClassifierLink::id(&self) -> Self::Id
  3893. impl aya::programs::links::Link for aya::programs::tp_btf::BtfTracePointLink
  3894. pub type aya::programs::tp_btf::BtfTracePointLink::Id = aya::programs::tp_btf::BtfTracePointLinkId
  3895. pub fn aya::programs::tp_btf::BtfTracePointLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3896. pub fn aya::programs::tp_btf::BtfTracePointLink::id(&self) -> Self::Id
  3897. impl aya::programs::links::Link for aya::programs::trace_point::TracePointLink
  3898. pub type aya::programs::trace_point::TracePointLink::Id = aya::programs::trace_point::TracePointLinkId
  3899. pub fn aya::programs::trace_point::TracePointLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3900. pub fn aya::programs::trace_point::TracePointLink::id(&self) -> Self::Id
  3901. impl aya::programs::links::Link for aya::programs::uprobe::UProbeLink
  3902. pub type aya::programs::uprobe::UProbeLink::Id = aya::programs::uprobe::UProbeLinkId
  3903. pub fn aya::programs::uprobe::UProbeLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3904. pub fn aya::programs::uprobe::UProbeLink::id(&self) -> Self::Id
  3905. impl aya::programs::links::Link for aya::programs::xdp::XdpLink
  3906. pub type aya::programs::xdp::XdpLink::Id = aya::programs::xdp::XdpLinkId
  3907. pub fn aya::programs::xdp::XdpLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3908. pub fn aya::programs::xdp::XdpLink::id(&self) -> Self::Id
  3909. pub mod aya::programs::lirc_mode2
  3910. pub struct aya::programs::lirc_mode2::LircLink
  3911. impl aya::programs::lirc_mode2::LircLink
  3912. pub fn aya::programs::lirc_mode2::LircLink::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  3913. impl aya::programs::links::Link for aya::programs::lirc_mode2::LircLink
  3914. pub type aya::programs::lirc_mode2::LircLink::Id = aya::programs::lirc_mode2::LircLinkId
  3915. pub fn aya::programs::lirc_mode2::LircLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3916. pub fn aya::programs::lirc_mode2::LircLink::id(&self) -> Self::Id
  3917. impl core::fmt::Debug for aya::programs::lirc_mode2::LircLink
  3918. pub fn aya::programs::lirc_mode2::LircLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3919. impl core::marker::Send for aya::programs::lirc_mode2::LircLink
  3920. impl core::marker::Sync for aya::programs::lirc_mode2::LircLink
  3921. impl core::marker::Unpin for aya::programs::lirc_mode2::LircLink
  3922. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::lirc_mode2::LircLink
  3923. impl core::panic::unwind_safe::UnwindSafe for aya::programs::lirc_mode2::LircLink
  3924. impl<T, U> core::convert::Into<U> for aya::programs::lirc_mode2::LircLink where U: core::convert::From<T>
  3925. pub fn aya::programs::lirc_mode2::LircLink::into(self) -> U
  3926. impl<T, U> core::convert::TryFrom<U> for aya::programs::lirc_mode2::LircLink where U: core::convert::Into<T>
  3927. pub type aya::programs::lirc_mode2::LircLink::Error = core::convert::Infallible
  3928. pub fn aya::programs::lirc_mode2::LircLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3929. impl<T, U> core::convert::TryInto<U> for aya::programs::lirc_mode2::LircLink where U: core::convert::TryFrom<T>
  3930. pub type aya::programs::lirc_mode2::LircLink::Error = <U as core::convert::TryFrom<T>>::Error
  3931. pub fn aya::programs::lirc_mode2::LircLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3932. impl<T> core::any::Any for aya::programs::lirc_mode2::LircLink where T: 'static + core::marker::Sized
  3933. pub fn aya::programs::lirc_mode2::LircLink::type_id(&self) -> core::any::TypeId
  3934. impl<T> core::borrow::Borrow<T> for aya::programs::lirc_mode2::LircLink where T: core::marker::Sized
  3935. pub fn aya::programs::lirc_mode2::LircLink::borrow(&self) -> &T
  3936. impl<T> core::borrow::BorrowMut<T> for aya::programs::lirc_mode2::LircLink where T: core::marker::Sized
  3937. pub fn aya::programs::lirc_mode2::LircLink::borrow_mut(&mut self) -> &mut T
  3938. impl<T> core::convert::From<T> for aya::programs::lirc_mode2::LircLink
  3939. pub fn aya::programs::lirc_mode2::LircLink::from(t: T) -> T
  3940. pub struct aya::programs::lirc_mode2::LircLinkId(_, _)
  3941. impl core::cmp::Eq for aya::programs::lirc_mode2::LircLinkId
  3942. impl core::cmp::PartialEq for aya::programs::lirc_mode2::LircLinkId
  3943. pub fn aya::programs::lirc_mode2::LircLinkId::eq(&self, other: &aya::programs::lirc_mode2::LircLinkId) -> bool
  3944. impl core::fmt::Debug for aya::programs::lirc_mode2::LircLinkId
  3945. pub fn aya::programs::lirc_mode2::LircLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3946. impl core::hash::Hash for aya::programs::lirc_mode2::LircLinkId
  3947. pub fn aya::programs::lirc_mode2::LircLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  3948. impl core::marker::StructuralPartialEq for aya::programs::lirc_mode2::LircLinkId
  3949. impl core::marker::Send for aya::programs::lirc_mode2::LircLinkId
  3950. impl core::marker::Sync for aya::programs::lirc_mode2::LircLinkId
  3951. impl core::marker::Unpin for aya::programs::lirc_mode2::LircLinkId
  3952. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::lirc_mode2::LircLinkId
  3953. impl core::panic::unwind_safe::UnwindSafe for aya::programs::lirc_mode2::LircLinkId
  3954. impl<T, U> core::convert::Into<U> for aya::programs::lirc_mode2::LircLinkId where U: core::convert::From<T>
  3955. pub fn aya::programs::lirc_mode2::LircLinkId::into(self) -> U
  3956. impl<T, U> core::convert::TryFrom<U> for aya::programs::lirc_mode2::LircLinkId where U: core::convert::Into<T>
  3957. pub type aya::programs::lirc_mode2::LircLinkId::Error = core::convert::Infallible
  3958. pub fn aya::programs::lirc_mode2::LircLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3959. impl<T, U> core::convert::TryInto<U> for aya::programs::lirc_mode2::LircLinkId where U: core::convert::TryFrom<T>
  3960. pub type aya::programs::lirc_mode2::LircLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  3961. pub fn aya::programs::lirc_mode2::LircLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3962. impl<T> core::any::Any for aya::programs::lirc_mode2::LircLinkId where T: 'static + core::marker::Sized
  3963. pub fn aya::programs::lirc_mode2::LircLinkId::type_id(&self) -> core::any::TypeId
  3964. impl<T> core::borrow::Borrow<T> for aya::programs::lirc_mode2::LircLinkId where T: core::marker::Sized
  3965. pub fn aya::programs::lirc_mode2::LircLinkId::borrow(&self) -> &T
  3966. impl<T> core::borrow::BorrowMut<T> for aya::programs::lirc_mode2::LircLinkId where T: core::marker::Sized
  3967. pub fn aya::programs::lirc_mode2::LircLinkId::borrow_mut(&mut self) -> &mut T
  3968. impl<T> core::convert::From<T> for aya::programs::lirc_mode2::LircLinkId
  3969. pub fn aya::programs::lirc_mode2::LircLinkId::from(t: T) -> T
  3970. pub struct aya::programs::lirc_mode2::LircMode2
  3971. impl aya::programs::lirc_mode2::LircMode2
  3972. pub fn aya::programs::lirc_mode2::LircMode2::attach<T: std::os::fd::owned::AsFd>(&mut self, lircdev: T) -> core::result::Result<aya::programs::lirc_mode2::LircLinkId, aya::programs::ProgramError>
  3973. pub fn aya::programs::lirc_mode2::LircMode2::detach(&mut self, link_id: aya::programs::lirc_mode2::LircLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  3974. pub fn aya::programs::lirc_mode2::LircMode2::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  3975. pub fn aya::programs::lirc_mode2::LircMode2::query<T: std::os::fd::owned::AsFd>(target_fd: T) -> core::result::Result<alloc::vec::Vec<aya::programs::lirc_mode2::LircLink>, aya::programs::ProgramError>
  3976. pub fn aya::programs::lirc_mode2::LircMode2::take_link(&mut self, link_id: aya::programs::lirc_mode2::LircLinkId) -> core::result::Result<aya::programs::lirc_mode2::LircLink, aya::programs::ProgramError>
  3977. impl aya::programs::lirc_mode2::LircMode2
  3978. pub fn aya::programs::lirc_mode2::LircMode2::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  3979. impl aya::programs::lirc_mode2::LircMode2
  3980. pub fn aya::programs::lirc_mode2::LircMode2::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  3981. impl aya::programs::lirc_mode2::LircMode2
  3982. pub fn aya::programs::lirc_mode2::LircMode2::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  3983. impl aya::programs::lirc_mode2::LircMode2
  3984. pub fn aya::programs::lirc_mode2::LircMode2::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  3985. pub fn aya::programs::lirc_mode2::LircMode2::unpin(self) -> core::result::Result<(), std::io::error::Error>
  3986. impl aya::programs::lirc_mode2::LircMode2
  3987. pub fn aya::programs::lirc_mode2::LircMode2::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  3988. impl core::fmt::Debug for aya::programs::lirc_mode2::LircMode2
  3989. pub fn aya::programs::lirc_mode2::LircMode2::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3990. impl core::ops::drop::Drop for aya::programs::lirc_mode2::LircMode2
  3991. pub fn aya::programs::lirc_mode2::LircMode2::drop(&mut self)
  3992. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::lirc_mode2::LircMode2
  3993. pub type &'a aya::programs::lirc_mode2::LircMode2::Error = aya::programs::ProgramError
  3994. pub fn &'a aya::programs::lirc_mode2::LircMode2::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::lirc_mode2::LircMode2, aya::programs::ProgramError>
  3995. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::lirc_mode2::LircMode2
  3996. pub type &'a mut aya::programs::lirc_mode2::LircMode2::Error = aya::programs::ProgramError
  3997. pub fn &'a mut aya::programs::lirc_mode2::LircMode2::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::lirc_mode2::LircMode2, aya::programs::ProgramError>
  3998. impl core::marker::Send for aya::programs::lirc_mode2::LircMode2
  3999. impl core::marker::Sync for aya::programs::lirc_mode2::LircMode2
  4000. impl core::marker::Unpin for aya::programs::lirc_mode2::LircMode2
  4001. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::lirc_mode2::LircMode2
  4002. impl core::panic::unwind_safe::UnwindSafe for aya::programs::lirc_mode2::LircMode2
  4003. impl<T, U> core::convert::Into<U> for aya::programs::lirc_mode2::LircMode2 where U: core::convert::From<T>
  4004. pub fn aya::programs::lirc_mode2::LircMode2::into(self) -> U
  4005. impl<T, U> core::convert::TryFrom<U> for aya::programs::lirc_mode2::LircMode2 where U: core::convert::Into<T>
  4006. pub type aya::programs::lirc_mode2::LircMode2::Error = core::convert::Infallible
  4007. pub fn aya::programs::lirc_mode2::LircMode2::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4008. impl<T, U> core::convert::TryInto<U> for aya::programs::lirc_mode2::LircMode2 where U: core::convert::TryFrom<T>
  4009. pub type aya::programs::lirc_mode2::LircMode2::Error = <U as core::convert::TryFrom<T>>::Error
  4010. pub fn aya::programs::lirc_mode2::LircMode2::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4011. impl<T> core::any::Any for aya::programs::lirc_mode2::LircMode2 where T: 'static + core::marker::Sized
  4012. pub fn aya::programs::lirc_mode2::LircMode2::type_id(&self) -> core::any::TypeId
  4013. impl<T> core::borrow::Borrow<T> for aya::programs::lirc_mode2::LircMode2 where T: core::marker::Sized
  4014. pub fn aya::programs::lirc_mode2::LircMode2::borrow(&self) -> &T
  4015. impl<T> core::borrow::BorrowMut<T> for aya::programs::lirc_mode2::LircMode2 where T: core::marker::Sized
  4016. pub fn aya::programs::lirc_mode2::LircMode2::borrow_mut(&mut self) -> &mut T
  4017. impl<T> core::convert::From<T> for aya::programs::lirc_mode2::LircMode2
  4018. pub fn aya::programs::lirc_mode2::LircMode2::from(t: T) -> T
  4019. pub mod aya::programs::lsm
  4020. pub struct aya::programs::lsm::Lsm
  4021. impl aya::programs::lsm::Lsm
  4022. pub fn aya::programs::lsm::Lsm::attach(&mut self) -> core::result::Result<aya::programs::lsm::LsmLinkId, aya::programs::ProgramError>
  4023. pub fn aya::programs::lsm::Lsm::detach(&mut self, link_id: aya::programs::lsm::LsmLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  4024. pub fn aya::programs::lsm::Lsm::load(&mut self, lsm_hook_name: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError>
  4025. pub fn aya::programs::lsm::Lsm::take_link(&mut self, link_id: aya::programs::lsm::LsmLinkId) -> core::result::Result<aya::programs::lsm::LsmLink, aya::programs::ProgramError>
  4026. impl aya::programs::lsm::Lsm
  4027. pub fn aya::programs::lsm::Lsm::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  4028. impl aya::programs::lsm::Lsm
  4029. pub fn aya::programs::lsm::Lsm::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  4030. impl aya::programs::lsm::Lsm
  4031. pub fn aya::programs::lsm::Lsm::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  4032. impl aya::programs::lsm::Lsm
  4033. pub fn aya::programs::lsm::Lsm::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  4034. pub fn aya::programs::lsm::Lsm::unpin(self) -> core::result::Result<(), std::io::error::Error>
  4035. impl aya::programs::lsm::Lsm
  4036. pub fn aya::programs::lsm::Lsm::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  4037. impl core::fmt::Debug for aya::programs::lsm::Lsm
  4038. pub fn aya::programs::lsm::Lsm::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4039. impl core::ops::drop::Drop for aya::programs::lsm::Lsm
  4040. pub fn aya::programs::lsm::Lsm::drop(&mut self)
  4041. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::lsm::Lsm
  4042. pub type &'a aya::programs::lsm::Lsm::Error = aya::programs::ProgramError
  4043. pub fn &'a aya::programs::lsm::Lsm::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::lsm::Lsm, aya::programs::ProgramError>
  4044. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::lsm::Lsm
  4045. pub type &'a mut aya::programs::lsm::Lsm::Error = aya::programs::ProgramError
  4046. pub fn &'a mut aya::programs::lsm::Lsm::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::lsm::Lsm, aya::programs::ProgramError>
  4047. impl core::marker::Send for aya::programs::lsm::Lsm
  4048. impl core::marker::Sync for aya::programs::lsm::Lsm
  4049. impl core::marker::Unpin for aya::programs::lsm::Lsm
  4050. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::lsm::Lsm
  4051. impl core::panic::unwind_safe::UnwindSafe for aya::programs::lsm::Lsm
  4052. impl<T, U> core::convert::Into<U> for aya::programs::lsm::Lsm where U: core::convert::From<T>
  4053. pub fn aya::programs::lsm::Lsm::into(self) -> U
  4054. impl<T, U> core::convert::TryFrom<U> for aya::programs::lsm::Lsm where U: core::convert::Into<T>
  4055. pub type aya::programs::lsm::Lsm::Error = core::convert::Infallible
  4056. pub fn aya::programs::lsm::Lsm::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4057. impl<T, U> core::convert::TryInto<U> for aya::programs::lsm::Lsm where U: core::convert::TryFrom<T>
  4058. pub type aya::programs::lsm::Lsm::Error = <U as core::convert::TryFrom<T>>::Error
  4059. pub fn aya::programs::lsm::Lsm::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4060. impl<T> core::any::Any for aya::programs::lsm::Lsm where T: 'static + core::marker::Sized
  4061. pub fn aya::programs::lsm::Lsm::type_id(&self) -> core::any::TypeId
  4062. impl<T> core::borrow::Borrow<T> for aya::programs::lsm::Lsm where T: core::marker::Sized
  4063. pub fn aya::programs::lsm::Lsm::borrow(&self) -> &T
  4064. impl<T> core::borrow::BorrowMut<T> for aya::programs::lsm::Lsm where T: core::marker::Sized
  4065. pub fn aya::programs::lsm::Lsm::borrow_mut(&mut self) -> &mut T
  4066. impl<T> core::convert::From<T> for aya::programs::lsm::Lsm
  4067. pub fn aya::programs::lsm::Lsm::from(t: T) -> T
  4068. pub struct aya::programs::lsm::LsmLink(_)
  4069. impl aya::programs::links::Link for aya::programs::lsm::LsmLink
  4070. pub type aya::programs::lsm::LsmLink::Id = aya::programs::lsm::LsmLinkId
  4071. pub fn aya::programs::lsm::LsmLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4072. pub fn aya::programs::lsm::LsmLink::id(&self) -> Self::Id
  4073. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::lsm::LsmLink
  4074. pub fn aya::programs::lsm::LsmLink::from(b: aya::programs::links::FdLink) -> aya::programs::lsm::LsmLink
  4075. impl core::convert::From<aya::programs::lsm::LsmLink> for aya::programs::links::FdLink
  4076. pub fn aya::programs::links::FdLink::from(w: aya::programs::lsm::LsmLink) -> aya::programs::links::FdLink
  4077. impl core::fmt::Debug for aya::programs::lsm::LsmLink
  4078. pub fn aya::programs::lsm::LsmLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4079. impl core::ops::drop::Drop for aya::programs::lsm::LsmLink
  4080. pub fn aya::programs::lsm::LsmLink::drop(&mut self)
  4081. impl core::marker::Send for aya::programs::lsm::LsmLink
  4082. impl core::marker::Sync for aya::programs::lsm::LsmLink
  4083. impl core::marker::Unpin for aya::programs::lsm::LsmLink
  4084. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::lsm::LsmLink
  4085. impl core::panic::unwind_safe::UnwindSafe for aya::programs::lsm::LsmLink
  4086. impl<T, U> core::convert::Into<U> for aya::programs::lsm::LsmLink where U: core::convert::From<T>
  4087. pub fn aya::programs::lsm::LsmLink::into(self) -> U
  4088. impl<T, U> core::convert::TryFrom<U> for aya::programs::lsm::LsmLink where U: core::convert::Into<T>
  4089. pub type aya::programs::lsm::LsmLink::Error = core::convert::Infallible
  4090. pub fn aya::programs::lsm::LsmLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4091. impl<T, U> core::convert::TryInto<U> for aya::programs::lsm::LsmLink where U: core::convert::TryFrom<T>
  4092. pub type aya::programs::lsm::LsmLink::Error = <U as core::convert::TryFrom<T>>::Error
  4093. pub fn aya::programs::lsm::LsmLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4094. impl<T> core::any::Any for aya::programs::lsm::LsmLink where T: 'static + core::marker::Sized
  4095. pub fn aya::programs::lsm::LsmLink::type_id(&self) -> core::any::TypeId
  4096. impl<T> core::borrow::Borrow<T> for aya::programs::lsm::LsmLink where T: core::marker::Sized
  4097. pub fn aya::programs::lsm::LsmLink::borrow(&self) -> &T
  4098. impl<T> core::borrow::BorrowMut<T> for aya::programs::lsm::LsmLink where T: core::marker::Sized
  4099. pub fn aya::programs::lsm::LsmLink::borrow_mut(&mut self) -> &mut T
  4100. impl<T> core::convert::From<T> for aya::programs::lsm::LsmLink
  4101. pub fn aya::programs::lsm::LsmLink::from(t: T) -> T
  4102. pub struct aya::programs::lsm::LsmLinkId(_)
  4103. impl core::cmp::Eq for aya::programs::lsm::LsmLinkId
  4104. impl core::cmp::PartialEq for aya::programs::lsm::LsmLinkId
  4105. pub fn aya::programs::lsm::LsmLinkId::eq(&self, other: &aya::programs::lsm::LsmLinkId) -> bool
  4106. impl core::fmt::Debug for aya::programs::lsm::LsmLinkId
  4107. pub fn aya::programs::lsm::LsmLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4108. impl core::hash::Hash for aya::programs::lsm::LsmLinkId
  4109. pub fn aya::programs::lsm::LsmLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  4110. impl core::marker::StructuralPartialEq for aya::programs::lsm::LsmLinkId
  4111. impl core::marker::Send for aya::programs::lsm::LsmLinkId
  4112. impl core::marker::Sync for aya::programs::lsm::LsmLinkId
  4113. impl core::marker::Unpin for aya::programs::lsm::LsmLinkId
  4114. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::lsm::LsmLinkId
  4115. impl core::panic::unwind_safe::UnwindSafe for aya::programs::lsm::LsmLinkId
  4116. impl<T, U> core::convert::Into<U> for aya::programs::lsm::LsmLinkId where U: core::convert::From<T>
  4117. pub fn aya::programs::lsm::LsmLinkId::into(self) -> U
  4118. impl<T, U> core::convert::TryFrom<U> for aya::programs::lsm::LsmLinkId where U: core::convert::Into<T>
  4119. pub type aya::programs::lsm::LsmLinkId::Error = core::convert::Infallible
  4120. pub fn aya::programs::lsm::LsmLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4121. impl<T, U> core::convert::TryInto<U> for aya::programs::lsm::LsmLinkId where U: core::convert::TryFrom<T>
  4122. pub type aya::programs::lsm::LsmLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  4123. pub fn aya::programs::lsm::LsmLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4124. impl<T> core::any::Any for aya::programs::lsm::LsmLinkId where T: 'static + core::marker::Sized
  4125. pub fn aya::programs::lsm::LsmLinkId::type_id(&self) -> core::any::TypeId
  4126. impl<T> core::borrow::Borrow<T> for aya::programs::lsm::LsmLinkId where T: core::marker::Sized
  4127. pub fn aya::programs::lsm::LsmLinkId::borrow(&self) -> &T
  4128. impl<T> core::borrow::BorrowMut<T> for aya::programs::lsm::LsmLinkId where T: core::marker::Sized
  4129. pub fn aya::programs::lsm::LsmLinkId::borrow_mut(&mut self) -> &mut T
  4130. impl<T> core::convert::From<T> for aya::programs::lsm::LsmLinkId
  4131. pub fn aya::programs::lsm::LsmLinkId::from(t: T) -> T
  4132. pub mod aya::programs::perf_attach
  4133. pub struct aya::programs::perf_attach::PerfLink
  4134. impl aya::programs::links::Link for aya::programs::perf_attach::PerfLink
  4135. pub type aya::programs::perf_attach::PerfLink::Id = aya::programs::perf_attach::PerfLinkId
  4136. pub fn aya::programs::perf_attach::PerfLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4137. pub fn aya::programs::perf_attach::PerfLink::id(&self) -> Self::Id
  4138. impl core::fmt::Debug for aya::programs::perf_attach::PerfLink
  4139. pub fn aya::programs::perf_attach::PerfLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4140. impl core::marker::Send for aya::programs::perf_attach::PerfLink
  4141. impl core::marker::Sync for aya::programs::perf_attach::PerfLink
  4142. impl core::marker::Unpin for aya::programs::perf_attach::PerfLink
  4143. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_attach::PerfLink
  4144. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_attach::PerfLink
  4145. impl<T, U> core::convert::Into<U> for aya::programs::perf_attach::PerfLink where U: core::convert::From<T>
  4146. pub fn aya::programs::perf_attach::PerfLink::into(self) -> U
  4147. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_attach::PerfLink where U: core::convert::Into<T>
  4148. pub type aya::programs::perf_attach::PerfLink::Error = core::convert::Infallible
  4149. pub fn aya::programs::perf_attach::PerfLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4150. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_attach::PerfLink where U: core::convert::TryFrom<T>
  4151. pub type aya::programs::perf_attach::PerfLink::Error = <U as core::convert::TryFrom<T>>::Error
  4152. pub fn aya::programs::perf_attach::PerfLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4153. impl<T> core::any::Any for aya::programs::perf_attach::PerfLink where T: 'static + core::marker::Sized
  4154. pub fn aya::programs::perf_attach::PerfLink::type_id(&self) -> core::any::TypeId
  4155. impl<T> core::borrow::Borrow<T> for aya::programs::perf_attach::PerfLink where T: core::marker::Sized
  4156. pub fn aya::programs::perf_attach::PerfLink::borrow(&self) -> &T
  4157. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_attach::PerfLink where T: core::marker::Sized
  4158. pub fn aya::programs::perf_attach::PerfLink::borrow_mut(&mut self) -> &mut T
  4159. impl<T> core::convert::From<T> for aya::programs::perf_attach::PerfLink
  4160. pub fn aya::programs::perf_attach::PerfLink::from(t: T) -> T
  4161. pub struct aya::programs::perf_attach::PerfLinkId(_)
  4162. impl core::cmp::Eq for aya::programs::perf_attach::PerfLinkId
  4163. impl core::cmp::PartialEq for aya::programs::perf_attach::PerfLinkId
  4164. pub fn aya::programs::perf_attach::PerfLinkId::eq(&self, other: &aya::programs::perf_attach::PerfLinkId) -> bool
  4165. impl core::fmt::Debug for aya::programs::perf_attach::PerfLinkId
  4166. pub fn aya::programs::perf_attach::PerfLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4167. impl core::hash::Hash for aya::programs::perf_attach::PerfLinkId
  4168. pub fn aya::programs::perf_attach::PerfLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  4169. impl core::marker::StructuralPartialEq for aya::programs::perf_attach::PerfLinkId
  4170. impl core::marker::Send for aya::programs::perf_attach::PerfLinkId
  4171. impl core::marker::Sync for aya::programs::perf_attach::PerfLinkId
  4172. impl core::marker::Unpin for aya::programs::perf_attach::PerfLinkId
  4173. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_attach::PerfLinkId
  4174. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_attach::PerfLinkId
  4175. impl<T, U> core::convert::Into<U> for aya::programs::perf_attach::PerfLinkId where U: core::convert::From<T>
  4176. pub fn aya::programs::perf_attach::PerfLinkId::into(self) -> U
  4177. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_attach::PerfLinkId where U: core::convert::Into<T>
  4178. pub type aya::programs::perf_attach::PerfLinkId::Error = core::convert::Infallible
  4179. pub fn aya::programs::perf_attach::PerfLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4180. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_attach::PerfLinkId where U: core::convert::TryFrom<T>
  4181. pub type aya::programs::perf_attach::PerfLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  4182. pub fn aya::programs::perf_attach::PerfLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4183. impl<T> core::any::Any for aya::programs::perf_attach::PerfLinkId where T: 'static + core::marker::Sized
  4184. pub fn aya::programs::perf_attach::PerfLinkId::type_id(&self) -> core::any::TypeId
  4185. impl<T> core::borrow::Borrow<T> for aya::programs::perf_attach::PerfLinkId where T: core::marker::Sized
  4186. pub fn aya::programs::perf_attach::PerfLinkId::borrow(&self) -> &T
  4187. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_attach::PerfLinkId where T: core::marker::Sized
  4188. pub fn aya::programs::perf_attach::PerfLinkId::borrow_mut(&mut self) -> &mut T
  4189. impl<T> core::convert::From<T> for aya::programs::perf_attach::PerfLinkId
  4190. pub fn aya::programs::perf_attach::PerfLinkId::from(t: T) -> T
  4191. pub mod aya::programs::perf_event
  4192. pub use aya::programs::perf_event::perf_hw_cache_id
  4193. pub use aya::programs::perf_event::perf_hw_cache_op_id
  4194. pub use aya::programs::perf_event::perf_hw_cache_op_result_id
  4195. pub use aya::programs::perf_event::perf_hw_id
  4196. pub use aya::programs::perf_event::perf_sw_ids
  4197. pub enum aya::programs::perf_event::PerfEventScope
  4198. pub aya::programs::perf_event::PerfEventScope::AllProcessesOneCpu
  4199. pub aya::programs::perf_event::PerfEventScope::AllProcessesOneCpu::cpu: u32
  4200. pub aya::programs::perf_event::PerfEventScope::CallingProcessAnyCpu
  4201. pub aya::programs::perf_event::PerfEventScope::CallingProcessOneCpu
  4202. pub aya::programs::perf_event::PerfEventScope::CallingProcessOneCpu::cpu: u32
  4203. pub aya::programs::perf_event::PerfEventScope::OneProcessAnyCpu
  4204. pub aya::programs::perf_event::PerfEventScope::OneProcessAnyCpu::pid: u32
  4205. pub aya::programs::perf_event::PerfEventScope::OneProcessOneCpu
  4206. pub aya::programs::perf_event::PerfEventScope::OneProcessOneCpu::cpu: u32
  4207. pub aya::programs::perf_event::PerfEventScope::OneProcessOneCpu::pid: u32
  4208. impl core::clone::Clone for aya::programs::perf_event::PerfEventScope
  4209. pub fn aya::programs::perf_event::PerfEventScope::clone(&self) -> aya::programs::perf_event::PerfEventScope
  4210. impl core::fmt::Debug for aya::programs::perf_event::PerfEventScope
  4211. pub fn aya::programs::perf_event::PerfEventScope::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4212. impl core::marker::Send for aya::programs::perf_event::PerfEventScope
  4213. impl core::marker::Sync for aya::programs::perf_event::PerfEventScope
  4214. impl core::marker::Unpin for aya::programs::perf_event::PerfEventScope
  4215. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::PerfEventScope
  4216. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::PerfEventScope
  4217. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::PerfEventScope where U: core::convert::From<T>
  4218. pub fn aya::programs::perf_event::PerfEventScope::into(self) -> U
  4219. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::PerfEventScope where U: core::convert::Into<T>
  4220. pub type aya::programs::perf_event::PerfEventScope::Error = core::convert::Infallible
  4221. pub fn aya::programs::perf_event::PerfEventScope::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4222. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_event::PerfEventScope where U: core::convert::TryFrom<T>
  4223. pub type aya::programs::perf_event::PerfEventScope::Error = <U as core::convert::TryFrom<T>>::Error
  4224. pub fn aya::programs::perf_event::PerfEventScope::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4225. impl<T> alloc::borrow::ToOwned for aya::programs::perf_event::PerfEventScope where T: core::clone::Clone
  4226. pub type aya::programs::perf_event::PerfEventScope::Owned = T
  4227. pub fn aya::programs::perf_event::PerfEventScope::clone_into(&self, target: &mut T)
  4228. pub fn aya::programs::perf_event::PerfEventScope::to_owned(&self) -> T
  4229. impl<T> core::any::Any for aya::programs::perf_event::PerfEventScope where T: 'static + core::marker::Sized
  4230. pub fn aya::programs::perf_event::PerfEventScope::type_id(&self) -> core::any::TypeId
  4231. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::PerfEventScope where T: core::marker::Sized
  4232. pub fn aya::programs::perf_event::PerfEventScope::borrow(&self) -> &T
  4233. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::PerfEventScope where T: core::marker::Sized
  4234. pub fn aya::programs::perf_event::PerfEventScope::borrow_mut(&mut self) -> &mut T
  4235. impl<T> core::convert::From<T> for aya::programs::perf_event::PerfEventScope
  4236. pub fn aya::programs::perf_event::PerfEventScope::from(t: T) -> T
  4237. #[repr(u32)] pub enum aya::programs::perf_event::PerfTypeId
  4238. pub aya::programs::perf_event::PerfTypeId::Breakpoint = 5
  4239. pub aya::programs::perf_event::PerfTypeId::Hardware = 0
  4240. pub aya::programs::perf_event::PerfTypeId::HwCache = 3
  4241. pub aya::programs::perf_event::PerfTypeId::Raw = 4
  4242. pub aya::programs::perf_event::PerfTypeId::Software = 1
  4243. pub aya::programs::perf_event::PerfTypeId::TracePoint = 2
  4244. impl core::clone::Clone for aya::programs::perf_event::PerfTypeId
  4245. pub fn aya::programs::perf_event::PerfTypeId::clone(&self) -> aya::programs::perf_event::PerfTypeId
  4246. impl core::fmt::Debug for aya::programs::perf_event::PerfTypeId
  4247. pub fn aya::programs::perf_event::PerfTypeId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4248. impl core::marker::Send for aya::programs::perf_event::PerfTypeId
  4249. impl core::marker::Sync for aya::programs::perf_event::PerfTypeId
  4250. impl core::marker::Unpin for aya::programs::perf_event::PerfTypeId
  4251. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::PerfTypeId
  4252. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::PerfTypeId
  4253. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::PerfTypeId where U: core::convert::From<T>
  4254. pub fn aya::programs::perf_event::PerfTypeId::into(self) -> U
  4255. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::PerfTypeId where U: core::convert::Into<T>
  4256. pub type aya::programs::perf_event::PerfTypeId::Error = core::convert::Infallible
  4257. pub fn aya::programs::perf_event::PerfTypeId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4258. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_event::PerfTypeId where U: core::convert::TryFrom<T>
  4259. pub type aya::programs::perf_event::PerfTypeId::Error = <U as core::convert::TryFrom<T>>::Error
  4260. pub fn aya::programs::perf_event::PerfTypeId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4261. impl<T> alloc::borrow::ToOwned for aya::programs::perf_event::PerfTypeId where T: core::clone::Clone
  4262. pub type aya::programs::perf_event::PerfTypeId::Owned = T
  4263. pub fn aya::programs::perf_event::PerfTypeId::clone_into(&self, target: &mut T)
  4264. pub fn aya::programs::perf_event::PerfTypeId::to_owned(&self) -> T
  4265. impl<T> core::any::Any for aya::programs::perf_event::PerfTypeId where T: 'static + core::marker::Sized
  4266. pub fn aya::programs::perf_event::PerfTypeId::type_id(&self) -> core::any::TypeId
  4267. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::PerfTypeId where T: core::marker::Sized
  4268. pub fn aya::programs::perf_event::PerfTypeId::borrow(&self) -> &T
  4269. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::PerfTypeId where T: core::marker::Sized
  4270. pub fn aya::programs::perf_event::PerfTypeId::borrow_mut(&mut self) -> &mut T
  4271. impl<T> core::convert::From<T> for aya::programs::perf_event::PerfTypeId
  4272. pub fn aya::programs::perf_event::PerfTypeId::from(t: T) -> T
  4273. pub enum aya::programs::perf_event::SamplePolicy
  4274. pub aya::programs::perf_event::SamplePolicy::Frequency(u64)
  4275. pub aya::programs::perf_event::SamplePolicy::Period(u64)
  4276. impl core::clone::Clone for aya::programs::perf_event::SamplePolicy
  4277. pub fn aya::programs::perf_event::SamplePolicy::clone(&self) -> aya::programs::perf_event::SamplePolicy
  4278. impl core::fmt::Debug for aya::programs::perf_event::SamplePolicy
  4279. pub fn aya::programs::perf_event::SamplePolicy::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4280. impl core::marker::Send for aya::programs::perf_event::SamplePolicy
  4281. impl core::marker::Sync for aya::programs::perf_event::SamplePolicy
  4282. impl core::marker::Unpin for aya::programs::perf_event::SamplePolicy
  4283. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::SamplePolicy
  4284. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::SamplePolicy
  4285. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::SamplePolicy where U: core::convert::From<T>
  4286. pub fn aya::programs::perf_event::SamplePolicy::into(self) -> U
  4287. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::SamplePolicy where U: core::convert::Into<T>
  4288. pub type aya::programs::perf_event::SamplePolicy::Error = core::convert::Infallible
  4289. pub fn aya::programs::perf_event::SamplePolicy::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4290. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_event::SamplePolicy where U: core::convert::TryFrom<T>
  4291. pub type aya::programs::perf_event::SamplePolicy::Error = <U as core::convert::TryFrom<T>>::Error
  4292. pub fn aya::programs::perf_event::SamplePolicy::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4293. impl<T> alloc::borrow::ToOwned for aya::programs::perf_event::SamplePolicy where T: core::clone::Clone
  4294. pub type aya::programs::perf_event::SamplePolicy::Owned = T
  4295. pub fn aya::programs::perf_event::SamplePolicy::clone_into(&self, target: &mut T)
  4296. pub fn aya::programs::perf_event::SamplePolicy::to_owned(&self) -> T
  4297. impl<T> core::any::Any for aya::programs::perf_event::SamplePolicy where T: 'static + core::marker::Sized
  4298. pub fn aya::programs::perf_event::SamplePolicy::type_id(&self) -> core::any::TypeId
  4299. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::SamplePolicy where T: core::marker::Sized
  4300. pub fn aya::programs::perf_event::SamplePolicy::borrow(&self) -> &T
  4301. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::SamplePolicy where T: core::marker::Sized
  4302. pub fn aya::programs::perf_event::SamplePolicy::borrow_mut(&mut self) -> &mut T
  4303. impl<T> core::convert::From<T> for aya::programs::perf_event::SamplePolicy
  4304. pub fn aya::programs::perf_event::SamplePolicy::from(t: T) -> T
  4305. pub struct aya::programs::perf_event::PerfEvent
  4306. impl aya::programs::perf_event::PerfEvent
  4307. pub fn aya::programs::perf_event::PerfEvent::attach(&mut self, perf_type: aya::programs::perf_event::PerfTypeId, config: u64, scope: aya::programs::perf_event::PerfEventScope, sample_policy: aya::programs::perf_event::SamplePolicy, inherit: bool) -> core::result::Result<aya::programs::perf_event::PerfEventLinkId, aya::programs::ProgramError>
  4308. pub fn aya::programs::perf_event::PerfEvent::detach(&mut self, link_id: aya::programs::perf_event::PerfEventLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  4309. pub fn aya::programs::perf_event::PerfEvent::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  4310. pub fn aya::programs::perf_event::PerfEvent::take_link(&mut self, link_id: aya::programs::perf_event::PerfEventLinkId) -> core::result::Result<aya::programs::perf_event::PerfEventLink, aya::programs::ProgramError>
  4311. impl aya::programs::perf_event::PerfEvent
  4312. pub fn aya::programs::perf_event::PerfEvent::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  4313. impl aya::programs::perf_event::PerfEvent
  4314. pub fn aya::programs::perf_event::PerfEvent::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  4315. impl aya::programs::perf_event::PerfEvent
  4316. pub fn aya::programs::perf_event::PerfEvent::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  4317. impl aya::programs::perf_event::PerfEvent
  4318. pub fn aya::programs::perf_event::PerfEvent::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  4319. pub fn aya::programs::perf_event::PerfEvent::unpin(self) -> core::result::Result<(), std::io::error::Error>
  4320. impl aya::programs::perf_event::PerfEvent
  4321. pub fn aya::programs::perf_event::PerfEvent::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  4322. impl core::fmt::Debug for aya::programs::perf_event::PerfEvent
  4323. pub fn aya::programs::perf_event::PerfEvent::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4324. impl core::ops::drop::Drop for aya::programs::perf_event::PerfEvent
  4325. pub fn aya::programs::perf_event::PerfEvent::drop(&mut self)
  4326. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::perf_event::PerfEvent
  4327. pub type &'a aya::programs::perf_event::PerfEvent::Error = aya::programs::ProgramError
  4328. pub fn &'a aya::programs::perf_event::PerfEvent::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::perf_event::PerfEvent, aya::programs::ProgramError>
  4329. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::perf_event::PerfEvent
  4330. pub type &'a mut aya::programs::perf_event::PerfEvent::Error = aya::programs::ProgramError
  4331. pub fn &'a mut aya::programs::perf_event::PerfEvent::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::perf_event::PerfEvent, aya::programs::ProgramError>
  4332. impl core::marker::Send for aya::programs::perf_event::PerfEvent
  4333. impl core::marker::Sync for aya::programs::perf_event::PerfEvent
  4334. impl core::marker::Unpin for aya::programs::perf_event::PerfEvent
  4335. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::PerfEvent
  4336. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::PerfEvent
  4337. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::PerfEvent where U: core::convert::From<T>
  4338. pub fn aya::programs::perf_event::PerfEvent::into(self) -> U
  4339. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::PerfEvent where U: core::convert::Into<T>
  4340. pub type aya::programs::perf_event::PerfEvent::Error = core::convert::Infallible
  4341. pub fn aya::programs::perf_event::PerfEvent::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4342. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_event::PerfEvent where U: core::convert::TryFrom<T>
  4343. pub type aya::programs::perf_event::PerfEvent::Error = <U as core::convert::TryFrom<T>>::Error
  4344. pub fn aya::programs::perf_event::PerfEvent::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4345. impl<T> core::any::Any for aya::programs::perf_event::PerfEvent where T: 'static + core::marker::Sized
  4346. pub fn aya::programs::perf_event::PerfEvent::type_id(&self) -> core::any::TypeId
  4347. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::PerfEvent where T: core::marker::Sized
  4348. pub fn aya::programs::perf_event::PerfEvent::borrow(&self) -> &T
  4349. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::PerfEvent where T: core::marker::Sized
  4350. pub fn aya::programs::perf_event::PerfEvent::borrow_mut(&mut self) -> &mut T
  4351. impl<T> core::convert::From<T> for aya::programs::perf_event::PerfEvent
  4352. pub fn aya::programs::perf_event::PerfEvent::from(t: T) -> T
  4353. pub struct aya::programs::perf_event::PerfEventLink(_)
  4354. impl aya::programs::links::Link for aya::programs::perf_event::PerfEventLink
  4355. pub type aya::programs::perf_event::PerfEventLink::Id = aya::programs::perf_event::PerfEventLinkId
  4356. pub fn aya::programs::perf_event::PerfEventLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4357. pub fn aya::programs::perf_event::PerfEventLink::id(&self) -> Self::Id
  4358. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::perf_event::PerfEventLink
  4359. pub type aya::programs::perf_event::PerfEventLink::Error = aya::programs::links::LinkError
  4360. pub fn aya::programs::perf_event::PerfEventLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  4361. impl core::convert::TryFrom<aya::programs::perf_event::PerfEventLink> for aya::programs::links::FdLink
  4362. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  4363. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::perf_event::PerfEventLink) -> core::result::Result<Self, Self::Error>
  4364. impl core::fmt::Debug for aya::programs::perf_event::PerfEventLink
  4365. pub fn aya::programs::perf_event::PerfEventLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4366. impl core::ops::drop::Drop for aya::programs::perf_event::PerfEventLink
  4367. pub fn aya::programs::perf_event::PerfEventLink::drop(&mut self)
  4368. impl core::marker::Send for aya::programs::perf_event::PerfEventLink
  4369. impl core::marker::Sync for aya::programs::perf_event::PerfEventLink
  4370. impl core::marker::Unpin for aya::programs::perf_event::PerfEventLink
  4371. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::PerfEventLink
  4372. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::PerfEventLink
  4373. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::PerfEventLink where U: core::convert::From<T>
  4374. pub fn aya::programs::perf_event::PerfEventLink::into(self) -> U
  4375. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::PerfEventLink where U: core::convert::Into<T>
  4376. pub type aya::programs::perf_event::PerfEventLink::Error = core::convert::Infallible
  4377. pub fn aya::programs::perf_event::PerfEventLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4378. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_event::PerfEventLink where U: core::convert::TryFrom<T>
  4379. pub type aya::programs::perf_event::PerfEventLink::Error = <U as core::convert::TryFrom<T>>::Error
  4380. pub fn aya::programs::perf_event::PerfEventLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4381. impl<T> core::any::Any for aya::programs::perf_event::PerfEventLink where T: 'static + core::marker::Sized
  4382. pub fn aya::programs::perf_event::PerfEventLink::type_id(&self) -> core::any::TypeId
  4383. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::PerfEventLink where T: core::marker::Sized
  4384. pub fn aya::programs::perf_event::PerfEventLink::borrow(&self) -> &T
  4385. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::PerfEventLink where T: core::marker::Sized
  4386. pub fn aya::programs::perf_event::PerfEventLink::borrow_mut(&mut self) -> &mut T
  4387. impl<T> core::convert::From<T> for aya::programs::perf_event::PerfEventLink
  4388. pub fn aya::programs::perf_event::PerfEventLink::from(t: T) -> T
  4389. pub struct aya::programs::perf_event::PerfEventLinkId(_)
  4390. impl core::cmp::Eq for aya::programs::perf_event::PerfEventLinkId
  4391. impl core::cmp::PartialEq for aya::programs::perf_event::PerfEventLinkId
  4392. pub fn aya::programs::perf_event::PerfEventLinkId::eq(&self, other: &aya::programs::perf_event::PerfEventLinkId) -> bool
  4393. impl core::fmt::Debug for aya::programs::perf_event::PerfEventLinkId
  4394. pub fn aya::programs::perf_event::PerfEventLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4395. impl core::hash::Hash for aya::programs::perf_event::PerfEventLinkId
  4396. pub fn aya::programs::perf_event::PerfEventLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  4397. impl core::marker::StructuralPartialEq for aya::programs::perf_event::PerfEventLinkId
  4398. impl core::marker::Send for aya::programs::perf_event::PerfEventLinkId
  4399. impl core::marker::Sync for aya::programs::perf_event::PerfEventLinkId
  4400. impl core::marker::Unpin for aya::programs::perf_event::PerfEventLinkId
  4401. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::PerfEventLinkId
  4402. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::PerfEventLinkId
  4403. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::PerfEventLinkId where U: core::convert::From<T>
  4404. pub fn aya::programs::perf_event::PerfEventLinkId::into(self) -> U
  4405. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::PerfEventLinkId where U: core::convert::Into<T>
  4406. pub type aya::programs::perf_event::PerfEventLinkId::Error = core::convert::Infallible
  4407. pub fn aya::programs::perf_event::PerfEventLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4408. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_event::PerfEventLinkId where U: core::convert::TryFrom<T>
  4409. pub type aya::programs::perf_event::PerfEventLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  4410. pub fn aya::programs::perf_event::PerfEventLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4411. impl<T> core::any::Any for aya::programs::perf_event::PerfEventLinkId where T: 'static + core::marker::Sized
  4412. pub fn aya::programs::perf_event::PerfEventLinkId::type_id(&self) -> core::any::TypeId
  4413. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::PerfEventLinkId where T: core::marker::Sized
  4414. pub fn aya::programs::perf_event::PerfEventLinkId::borrow(&self) -> &T
  4415. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::PerfEventLinkId where T: core::marker::Sized
  4416. pub fn aya::programs::perf_event::PerfEventLinkId::borrow_mut(&mut self) -> &mut T
  4417. impl<T> core::convert::From<T> for aya::programs::perf_event::PerfEventLinkId
  4418. pub fn aya::programs::perf_event::PerfEventLinkId::from(t: T) -> T
  4419. pub mod aya::programs::tc
  4420. pub enum aya::programs::tc::TcAttachType
  4421. pub aya::programs::tc::TcAttachType::Custom(u32)
  4422. pub aya::programs::tc::TcAttachType::Egress
  4423. pub aya::programs::tc::TcAttachType::Ingress
  4424. impl core::clone::Clone for aya::programs::tc::TcAttachType
  4425. pub fn aya::programs::tc::TcAttachType::clone(&self) -> aya::programs::tc::TcAttachType
  4426. impl core::cmp::Eq for aya::programs::tc::TcAttachType
  4427. impl core::cmp::PartialEq for aya::programs::tc::TcAttachType
  4428. pub fn aya::programs::tc::TcAttachType::eq(&self, other: &aya::programs::tc::TcAttachType) -> bool
  4429. impl core::fmt::Debug for aya::programs::tc::TcAttachType
  4430. pub fn aya::programs::tc::TcAttachType::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4431. impl core::hash::Hash for aya::programs::tc::TcAttachType
  4432. pub fn aya::programs::tc::TcAttachType::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  4433. impl core::marker::Copy for aya::programs::tc::TcAttachType
  4434. impl core::marker::StructuralPartialEq for aya::programs::tc::TcAttachType
  4435. impl core::marker::Send for aya::programs::tc::TcAttachType
  4436. impl core::marker::Sync for aya::programs::tc::TcAttachType
  4437. impl core::marker::Unpin for aya::programs::tc::TcAttachType
  4438. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::TcAttachType
  4439. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tc::TcAttachType
  4440. impl<T, U> core::convert::Into<U> for aya::programs::tc::TcAttachType where U: core::convert::From<T>
  4441. pub fn aya::programs::tc::TcAttachType::into(self) -> U
  4442. impl<T, U> core::convert::TryFrom<U> for aya::programs::tc::TcAttachType where U: core::convert::Into<T>
  4443. pub type aya::programs::tc::TcAttachType::Error = core::convert::Infallible
  4444. pub fn aya::programs::tc::TcAttachType::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4445. impl<T, U> core::convert::TryInto<U> for aya::programs::tc::TcAttachType where U: core::convert::TryFrom<T>
  4446. pub type aya::programs::tc::TcAttachType::Error = <U as core::convert::TryFrom<T>>::Error
  4447. pub fn aya::programs::tc::TcAttachType::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4448. impl<T> alloc::borrow::ToOwned for aya::programs::tc::TcAttachType where T: core::clone::Clone
  4449. pub type aya::programs::tc::TcAttachType::Owned = T
  4450. pub fn aya::programs::tc::TcAttachType::clone_into(&self, target: &mut T)
  4451. pub fn aya::programs::tc::TcAttachType::to_owned(&self) -> T
  4452. impl<T> core::any::Any for aya::programs::tc::TcAttachType where T: 'static + core::marker::Sized
  4453. pub fn aya::programs::tc::TcAttachType::type_id(&self) -> core::any::TypeId
  4454. impl<T> core::borrow::Borrow<T> for aya::programs::tc::TcAttachType where T: core::marker::Sized
  4455. pub fn aya::programs::tc::TcAttachType::borrow(&self) -> &T
  4456. impl<T> core::borrow::BorrowMut<T> for aya::programs::tc::TcAttachType where T: core::marker::Sized
  4457. pub fn aya::programs::tc::TcAttachType::borrow_mut(&mut self) -> &mut T
  4458. impl<T> core::convert::From<T> for aya::programs::tc::TcAttachType
  4459. pub fn aya::programs::tc::TcAttachType::from(t: T) -> T
  4460. pub enum aya::programs::tc::TcError
  4461. pub aya::programs::tc::TcError::AlreadyAttached
  4462. pub aya::programs::tc::TcError::NetlinkError
  4463. pub aya::programs::tc::TcError::NetlinkError::io_error: std::io::error::Error
  4464. impl core::convert::From<aya::programs::tc::TcError> for aya::programs::ProgramError
  4465. pub fn aya::programs::ProgramError::from(source: aya::programs::tc::TcError) -> Self
  4466. impl core::error::Error for aya::programs::tc::TcError
  4467. pub fn aya::programs::tc::TcError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  4468. impl core::fmt::Debug for aya::programs::tc::TcError
  4469. pub fn aya::programs::tc::TcError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4470. impl core::fmt::Display for aya::programs::tc::TcError
  4471. pub fn aya::programs::tc::TcError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4472. impl core::marker::Send for aya::programs::tc::TcError
  4473. impl core::marker::Sync for aya::programs::tc::TcError
  4474. impl core::marker::Unpin for aya::programs::tc::TcError
  4475. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::TcError
  4476. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::tc::TcError
  4477. impl<T, U> core::convert::Into<U> for aya::programs::tc::TcError where U: core::convert::From<T>
  4478. pub fn aya::programs::tc::TcError::into(self) -> U
  4479. impl<T, U> core::convert::TryFrom<U> for aya::programs::tc::TcError where U: core::convert::Into<T>
  4480. pub type aya::programs::tc::TcError::Error = core::convert::Infallible
  4481. pub fn aya::programs::tc::TcError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4482. impl<T, U> core::convert::TryInto<U> for aya::programs::tc::TcError where U: core::convert::TryFrom<T>
  4483. pub type aya::programs::tc::TcError::Error = <U as core::convert::TryFrom<T>>::Error
  4484. pub fn aya::programs::tc::TcError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4485. impl<T> alloc::string::ToString for aya::programs::tc::TcError where T: core::fmt::Display + core::marker::Sized
  4486. pub fn aya::programs::tc::TcError::to_string(&self) -> alloc::string::String
  4487. impl<T> core::any::Any for aya::programs::tc::TcError where T: 'static + core::marker::Sized
  4488. pub fn aya::programs::tc::TcError::type_id(&self) -> core::any::TypeId
  4489. impl<T> core::borrow::Borrow<T> for aya::programs::tc::TcError where T: core::marker::Sized
  4490. pub fn aya::programs::tc::TcError::borrow(&self) -> &T
  4491. impl<T> core::borrow::BorrowMut<T> for aya::programs::tc::TcError where T: core::marker::Sized
  4492. pub fn aya::programs::tc::TcError::borrow_mut(&mut self) -> &mut T
  4493. impl<T> core::convert::From<T> for aya::programs::tc::TcError
  4494. pub fn aya::programs::tc::TcError::from(t: T) -> T
  4495. pub struct aya::programs::tc::SchedClassifier
  4496. impl aya::programs::tc::SchedClassifier
  4497. pub fn aya::programs::tc::SchedClassifier::attach(&mut self, interface: &str, attach_type: aya::programs::tc::TcAttachType) -> core::result::Result<aya::programs::tc::SchedClassifierLinkId, aya::programs::ProgramError>
  4498. pub fn aya::programs::tc::SchedClassifier::attach_to_link(&mut self, link: aya::programs::tc::SchedClassifierLink) -> core::result::Result<aya::programs::tc::SchedClassifierLinkId, aya::programs::ProgramError>
  4499. pub fn aya::programs::tc::SchedClassifier::attach_with_options(&mut self, interface: &str, attach_type: aya::programs::tc::TcAttachType, options: aya::programs::tc::TcOptions) -> core::result::Result<aya::programs::tc::SchedClassifierLinkId, aya::programs::ProgramError>
  4500. pub fn aya::programs::tc::SchedClassifier::detach(&mut self, link_id: aya::programs::tc::SchedClassifierLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  4501. pub fn aya::programs::tc::SchedClassifier::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  4502. pub fn aya::programs::tc::SchedClassifier::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  4503. pub fn aya::programs::tc::SchedClassifier::take_link(&mut self, link_id: aya::programs::tc::SchedClassifierLinkId) -> core::result::Result<aya::programs::tc::SchedClassifierLink, aya::programs::ProgramError>
  4504. impl aya::programs::tc::SchedClassifier
  4505. pub fn aya::programs::tc::SchedClassifier::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  4506. impl aya::programs::tc::SchedClassifier
  4507. pub fn aya::programs::tc::SchedClassifier::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  4508. impl aya::programs::tc::SchedClassifier
  4509. pub fn aya::programs::tc::SchedClassifier::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  4510. pub fn aya::programs::tc::SchedClassifier::unpin(self) -> core::result::Result<(), std::io::error::Error>
  4511. impl aya::programs::tc::SchedClassifier
  4512. pub fn aya::programs::tc::SchedClassifier::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  4513. impl core::fmt::Debug for aya::programs::tc::SchedClassifier
  4514. pub fn aya::programs::tc::SchedClassifier::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4515. impl core::ops::drop::Drop for aya::programs::tc::SchedClassifier
  4516. pub fn aya::programs::tc::SchedClassifier::drop(&mut self)
  4517. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::tc::SchedClassifier
  4518. pub type &'a aya::programs::tc::SchedClassifier::Error = aya::programs::ProgramError
  4519. pub fn &'a aya::programs::tc::SchedClassifier::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::tc::SchedClassifier, aya::programs::ProgramError>
  4520. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::tc::SchedClassifier
  4521. pub type &'a mut aya::programs::tc::SchedClassifier::Error = aya::programs::ProgramError
  4522. pub fn &'a mut aya::programs::tc::SchedClassifier::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::tc::SchedClassifier, aya::programs::ProgramError>
  4523. impl core::marker::Send for aya::programs::tc::SchedClassifier
  4524. impl core::marker::Sync for aya::programs::tc::SchedClassifier
  4525. impl core::marker::Unpin for aya::programs::tc::SchedClassifier
  4526. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::SchedClassifier
  4527. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tc::SchedClassifier
  4528. impl<T, U> core::convert::Into<U> for aya::programs::tc::SchedClassifier where U: core::convert::From<T>
  4529. pub fn aya::programs::tc::SchedClassifier::into(self) -> U
  4530. impl<T, U> core::convert::TryFrom<U> for aya::programs::tc::SchedClassifier where U: core::convert::Into<T>
  4531. pub type aya::programs::tc::SchedClassifier::Error = core::convert::Infallible
  4532. pub fn aya::programs::tc::SchedClassifier::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4533. impl<T, U> core::convert::TryInto<U> for aya::programs::tc::SchedClassifier where U: core::convert::TryFrom<T>
  4534. pub type aya::programs::tc::SchedClassifier::Error = <U as core::convert::TryFrom<T>>::Error
  4535. pub fn aya::programs::tc::SchedClassifier::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4536. impl<T> core::any::Any for aya::programs::tc::SchedClassifier where T: 'static + core::marker::Sized
  4537. pub fn aya::programs::tc::SchedClassifier::type_id(&self) -> core::any::TypeId
  4538. impl<T> core::borrow::Borrow<T> for aya::programs::tc::SchedClassifier where T: core::marker::Sized
  4539. pub fn aya::programs::tc::SchedClassifier::borrow(&self) -> &T
  4540. impl<T> core::borrow::BorrowMut<T> for aya::programs::tc::SchedClassifier where T: core::marker::Sized
  4541. pub fn aya::programs::tc::SchedClassifier::borrow_mut(&mut self) -> &mut T
  4542. impl<T> core::convert::From<T> for aya::programs::tc::SchedClassifier
  4543. pub fn aya::programs::tc::SchedClassifier::from(t: T) -> T
  4544. pub struct aya::programs::tc::SchedClassifierLink(_)
  4545. impl aya::programs::tc::SchedClassifierLink
  4546. pub fn aya::programs::tc::SchedClassifierLink::attach_type(&self) -> aya::programs::tc::TcAttachType
  4547. pub fn aya::programs::tc::SchedClassifierLink::attached(if_name: &str, attach_type: aya::programs::tc::TcAttachType, priority: u16, handle: u32) -> core::result::Result<Self, std::io::error::Error>
  4548. pub fn aya::programs::tc::SchedClassifierLink::handle(&self) -> u32
  4549. pub fn aya::programs::tc::SchedClassifierLink::priority(&self) -> u16
  4550. impl aya::programs::links::Link for aya::programs::tc::SchedClassifierLink
  4551. pub type aya::programs::tc::SchedClassifierLink::Id = aya::programs::tc::SchedClassifierLinkId
  4552. pub fn aya::programs::tc::SchedClassifierLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4553. pub fn aya::programs::tc::SchedClassifierLink::id(&self) -> Self::Id
  4554. impl core::fmt::Debug for aya::programs::tc::SchedClassifierLink
  4555. pub fn aya::programs::tc::SchedClassifierLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4556. impl core::ops::drop::Drop for aya::programs::tc::SchedClassifierLink
  4557. pub fn aya::programs::tc::SchedClassifierLink::drop(&mut self)
  4558. impl core::marker::Send for aya::programs::tc::SchedClassifierLink
  4559. impl core::marker::Sync for aya::programs::tc::SchedClassifierLink
  4560. impl core::marker::Unpin for aya::programs::tc::SchedClassifierLink
  4561. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::SchedClassifierLink
  4562. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tc::SchedClassifierLink
  4563. impl<T, U> core::convert::Into<U> for aya::programs::tc::SchedClassifierLink where U: core::convert::From<T>
  4564. pub fn aya::programs::tc::SchedClassifierLink::into(self) -> U
  4565. impl<T, U> core::convert::TryFrom<U> for aya::programs::tc::SchedClassifierLink where U: core::convert::Into<T>
  4566. pub type aya::programs::tc::SchedClassifierLink::Error = core::convert::Infallible
  4567. pub fn aya::programs::tc::SchedClassifierLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4568. impl<T, U> core::convert::TryInto<U> for aya::programs::tc::SchedClassifierLink where U: core::convert::TryFrom<T>
  4569. pub type aya::programs::tc::SchedClassifierLink::Error = <U as core::convert::TryFrom<T>>::Error
  4570. pub fn aya::programs::tc::SchedClassifierLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4571. impl<T> core::any::Any for aya::programs::tc::SchedClassifierLink where T: 'static + core::marker::Sized
  4572. pub fn aya::programs::tc::SchedClassifierLink::type_id(&self) -> core::any::TypeId
  4573. impl<T> core::borrow::Borrow<T> for aya::programs::tc::SchedClassifierLink where T: core::marker::Sized
  4574. pub fn aya::programs::tc::SchedClassifierLink::borrow(&self) -> &T
  4575. impl<T> core::borrow::BorrowMut<T> for aya::programs::tc::SchedClassifierLink where T: core::marker::Sized
  4576. pub fn aya::programs::tc::SchedClassifierLink::borrow_mut(&mut self) -> &mut T
  4577. impl<T> core::convert::From<T> for aya::programs::tc::SchedClassifierLink
  4578. pub fn aya::programs::tc::SchedClassifierLink::from(t: T) -> T
  4579. pub struct aya::programs::tc::SchedClassifierLinkId(_)
  4580. impl core::cmp::Eq for aya::programs::tc::SchedClassifierLinkId
  4581. impl core::cmp::PartialEq for aya::programs::tc::SchedClassifierLinkId
  4582. pub fn aya::programs::tc::SchedClassifierLinkId::eq(&self, other: &aya::programs::tc::SchedClassifierLinkId) -> bool
  4583. impl core::fmt::Debug for aya::programs::tc::SchedClassifierLinkId
  4584. pub fn aya::programs::tc::SchedClassifierLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4585. impl core::hash::Hash for aya::programs::tc::SchedClassifierLinkId
  4586. pub fn aya::programs::tc::SchedClassifierLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  4587. impl core::marker::StructuralPartialEq for aya::programs::tc::SchedClassifierLinkId
  4588. impl core::marker::Send for aya::programs::tc::SchedClassifierLinkId
  4589. impl core::marker::Sync for aya::programs::tc::SchedClassifierLinkId
  4590. impl core::marker::Unpin for aya::programs::tc::SchedClassifierLinkId
  4591. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::SchedClassifierLinkId
  4592. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tc::SchedClassifierLinkId
  4593. impl<T, U> core::convert::Into<U> for aya::programs::tc::SchedClassifierLinkId where U: core::convert::From<T>
  4594. pub fn aya::programs::tc::SchedClassifierLinkId::into(self) -> U
  4595. impl<T, U> core::convert::TryFrom<U> for aya::programs::tc::SchedClassifierLinkId where U: core::convert::Into<T>
  4596. pub type aya::programs::tc::SchedClassifierLinkId::Error = core::convert::Infallible
  4597. pub fn aya::programs::tc::SchedClassifierLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4598. impl<T, U> core::convert::TryInto<U> for aya::programs::tc::SchedClassifierLinkId where U: core::convert::TryFrom<T>
  4599. pub type aya::programs::tc::SchedClassifierLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  4600. pub fn aya::programs::tc::SchedClassifierLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4601. impl<T> core::any::Any for aya::programs::tc::SchedClassifierLinkId where T: 'static + core::marker::Sized
  4602. pub fn aya::programs::tc::SchedClassifierLinkId::type_id(&self) -> core::any::TypeId
  4603. impl<T> core::borrow::Borrow<T> for aya::programs::tc::SchedClassifierLinkId where T: core::marker::Sized
  4604. pub fn aya::programs::tc::SchedClassifierLinkId::borrow(&self) -> &T
  4605. impl<T> core::borrow::BorrowMut<T> for aya::programs::tc::SchedClassifierLinkId where T: core::marker::Sized
  4606. pub fn aya::programs::tc::SchedClassifierLinkId::borrow_mut(&mut self) -> &mut T
  4607. impl<T> core::convert::From<T> for aya::programs::tc::SchedClassifierLinkId
  4608. pub fn aya::programs::tc::SchedClassifierLinkId::from(t: T) -> T
  4609. pub struct aya::programs::tc::TcOptions
  4610. pub aya::programs::tc::TcOptions::handle: u32
  4611. pub aya::programs::tc::TcOptions::priority: u16
  4612. impl core::default::Default for aya::programs::tc::TcOptions
  4613. pub fn aya::programs::tc::TcOptions::default() -> aya::programs::tc::TcOptions
  4614. impl core::marker::Send for aya::programs::tc::TcOptions
  4615. impl core::marker::Sync for aya::programs::tc::TcOptions
  4616. impl core::marker::Unpin for aya::programs::tc::TcOptions
  4617. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::TcOptions
  4618. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tc::TcOptions
  4619. impl<T, U> core::convert::Into<U> for aya::programs::tc::TcOptions where U: core::convert::From<T>
  4620. pub fn aya::programs::tc::TcOptions::into(self) -> U
  4621. impl<T, U> core::convert::TryFrom<U> for aya::programs::tc::TcOptions where U: core::convert::Into<T>
  4622. pub type aya::programs::tc::TcOptions::Error = core::convert::Infallible
  4623. pub fn aya::programs::tc::TcOptions::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4624. impl<T, U> core::convert::TryInto<U> for aya::programs::tc::TcOptions where U: core::convert::TryFrom<T>
  4625. pub type aya::programs::tc::TcOptions::Error = <U as core::convert::TryFrom<T>>::Error
  4626. pub fn aya::programs::tc::TcOptions::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4627. impl<T> core::any::Any for aya::programs::tc::TcOptions where T: 'static + core::marker::Sized
  4628. pub fn aya::programs::tc::TcOptions::type_id(&self) -> core::any::TypeId
  4629. impl<T> core::borrow::Borrow<T> for aya::programs::tc::TcOptions where T: core::marker::Sized
  4630. pub fn aya::programs::tc::TcOptions::borrow(&self) -> &T
  4631. impl<T> core::borrow::BorrowMut<T> for aya::programs::tc::TcOptions where T: core::marker::Sized
  4632. pub fn aya::programs::tc::TcOptions::borrow_mut(&mut self) -> &mut T
  4633. impl<T> core::convert::From<T> for aya::programs::tc::TcOptions
  4634. pub fn aya::programs::tc::TcOptions::from(t: T) -> T
  4635. pub fn aya::programs::tc::qdisc_add_clsact(if_name: &str) -> core::result::Result<(), std::io::error::Error>
  4636. pub fn aya::programs::tc::qdisc_detach_program(if_name: &str, attach_type: aya::programs::tc::TcAttachType, name: &str) -> core::result::Result<(), std::io::error::Error>
  4637. pub mod aya::programs::tp_btf
  4638. pub struct aya::programs::tp_btf::BtfTracePoint
  4639. impl aya::programs::tp_btf::BtfTracePoint
  4640. pub fn aya::programs::tp_btf::BtfTracePoint::attach(&mut self) -> core::result::Result<aya::programs::tp_btf::BtfTracePointLinkId, aya::programs::ProgramError>
  4641. pub fn aya::programs::tp_btf::BtfTracePoint::detach(&mut self, link_id: aya::programs::tp_btf::BtfTracePointLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  4642. pub fn aya::programs::tp_btf::BtfTracePoint::load(&mut self, tracepoint: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError>
  4643. pub fn aya::programs::tp_btf::BtfTracePoint::take_link(&mut self, link_id: aya::programs::tp_btf::BtfTracePointLinkId) -> core::result::Result<aya::programs::tp_btf::BtfTracePointLink, aya::programs::ProgramError>
  4644. impl aya::programs::tp_btf::BtfTracePoint
  4645. pub fn aya::programs::tp_btf::BtfTracePoint::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  4646. impl aya::programs::tp_btf::BtfTracePoint
  4647. pub fn aya::programs::tp_btf::BtfTracePoint::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  4648. impl aya::programs::tp_btf::BtfTracePoint
  4649. pub fn aya::programs::tp_btf::BtfTracePoint::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  4650. impl aya::programs::tp_btf::BtfTracePoint
  4651. pub fn aya::programs::tp_btf::BtfTracePoint::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  4652. pub fn aya::programs::tp_btf::BtfTracePoint::unpin(self) -> core::result::Result<(), std::io::error::Error>
  4653. impl aya::programs::tp_btf::BtfTracePoint
  4654. pub fn aya::programs::tp_btf::BtfTracePoint::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  4655. impl core::fmt::Debug for aya::programs::tp_btf::BtfTracePoint
  4656. pub fn aya::programs::tp_btf::BtfTracePoint::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4657. impl core::ops::drop::Drop for aya::programs::tp_btf::BtfTracePoint
  4658. pub fn aya::programs::tp_btf::BtfTracePoint::drop(&mut self)
  4659. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::tp_btf::BtfTracePoint
  4660. pub type &'a aya::programs::tp_btf::BtfTracePoint::Error = aya::programs::ProgramError
  4661. pub fn &'a aya::programs::tp_btf::BtfTracePoint::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::tp_btf::BtfTracePoint, aya::programs::ProgramError>
  4662. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::tp_btf::BtfTracePoint
  4663. pub type &'a mut aya::programs::tp_btf::BtfTracePoint::Error = aya::programs::ProgramError
  4664. pub fn &'a mut aya::programs::tp_btf::BtfTracePoint::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::tp_btf::BtfTracePoint, aya::programs::ProgramError>
  4665. impl core::marker::Send for aya::programs::tp_btf::BtfTracePoint
  4666. impl core::marker::Sync for aya::programs::tp_btf::BtfTracePoint
  4667. impl core::marker::Unpin for aya::programs::tp_btf::BtfTracePoint
  4668. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tp_btf::BtfTracePoint
  4669. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tp_btf::BtfTracePoint
  4670. impl<T, U> core::convert::Into<U> for aya::programs::tp_btf::BtfTracePoint where U: core::convert::From<T>
  4671. pub fn aya::programs::tp_btf::BtfTracePoint::into(self) -> U
  4672. impl<T, U> core::convert::TryFrom<U> for aya::programs::tp_btf::BtfTracePoint where U: core::convert::Into<T>
  4673. pub type aya::programs::tp_btf::BtfTracePoint::Error = core::convert::Infallible
  4674. pub fn aya::programs::tp_btf::BtfTracePoint::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4675. impl<T, U> core::convert::TryInto<U> for aya::programs::tp_btf::BtfTracePoint where U: core::convert::TryFrom<T>
  4676. pub type aya::programs::tp_btf::BtfTracePoint::Error = <U as core::convert::TryFrom<T>>::Error
  4677. pub fn aya::programs::tp_btf::BtfTracePoint::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4678. impl<T> core::any::Any for aya::programs::tp_btf::BtfTracePoint where T: 'static + core::marker::Sized
  4679. pub fn aya::programs::tp_btf::BtfTracePoint::type_id(&self) -> core::any::TypeId
  4680. impl<T> core::borrow::Borrow<T> for aya::programs::tp_btf::BtfTracePoint where T: core::marker::Sized
  4681. pub fn aya::programs::tp_btf::BtfTracePoint::borrow(&self) -> &T
  4682. impl<T> core::borrow::BorrowMut<T> for aya::programs::tp_btf::BtfTracePoint where T: core::marker::Sized
  4683. pub fn aya::programs::tp_btf::BtfTracePoint::borrow_mut(&mut self) -> &mut T
  4684. impl<T> core::convert::From<T> for aya::programs::tp_btf::BtfTracePoint
  4685. pub fn aya::programs::tp_btf::BtfTracePoint::from(t: T) -> T
  4686. pub struct aya::programs::tp_btf::BtfTracePointLink(_)
  4687. impl aya::programs::links::Link for aya::programs::tp_btf::BtfTracePointLink
  4688. pub type aya::programs::tp_btf::BtfTracePointLink::Id = aya::programs::tp_btf::BtfTracePointLinkId
  4689. pub fn aya::programs::tp_btf::BtfTracePointLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4690. pub fn aya::programs::tp_btf::BtfTracePointLink::id(&self) -> Self::Id
  4691. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::tp_btf::BtfTracePointLink
  4692. pub fn aya::programs::tp_btf::BtfTracePointLink::from(b: aya::programs::links::FdLink) -> aya::programs::tp_btf::BtfTracePointLink
  4693. impl core::convert::From<aya::programs::tp_btf::BtfTracePointLink> for aya::programs::links::FdLink
  4694. pub fn aya::programs::links::FdLink::from(w: aya::programs::tp_btf::BtfTracePointLink) -> aya::programs::links::FdLink
  4695. impl core::fmt::Debug for aya::programs::tp_btf::BtfTracePointLink
  4696. pub fn aya::programs::tp_btf::BtfTracePointLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4697. impl core::ops::drop::Drop for aya::programs::tp_btf::BtfTracePointLink
  4698. pub fn aya::programs::tp_btf::BtfTracePointLink::drop(&mut self)
  4699. impl core::marker::Send for aya::programs::tp_btf::BtfTracePointLink
  4700. impl core::marker::Sync for aya::programs::tp_btf::BtfTracePointLink
  4701. impl core::marker::Unpin for aya::programs::tp_btf::BtfTracePointLink
  4702. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tp_btf::BtfTracePointLink
  4703. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tp_btf::BtfTracePointLink
  4704. impl<T, U> core::convert::Into<U> for aya::programs::tp_btf::BtfTracePointLink where U: core::convert::From<T>
  4705. pub fn aya::programs::tp_btf::BtfTracePointLink::into(self) -> U
  4706. impl<T, U> core::convert::TryFrom<U> for aya::programs::tp_btf::BtfTracePointLink where U: core::convert::Into<T>
  4707. pub type aya::programs::tp_btf::BtfTracePointLink::Error = core::convert::Infallible
  4708. pub fn aya::programs::tp_btf::BtfTracePointLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4709. impl<T, U> core::convert::TryInto<U> for aya::programs::tp_btf::BtfTracePointLink where U: core::convert::TryFrom<T>
  4710. pub type aya::programs::tp_btf::BtfTracePointLink::Error = <U as core::convert::TryFrom<T>>::Error
  4711. pub fn aya::programs::tp_btf::BtfTracePointLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4712. impl<T> core::any::Any for aya::programs::tp_btf::BtfTracePointLink where T: 'static + core::marker::Sized
  4713. pub fn aya::programs::tp_btf::BtfTracePointLink::type_id(&self) -> core::any::TypeId
  4714. impl<T> core::borrow::Borrow<T> for aya::programs::tp_btf::BtfTracePointLink where T: core::marker::Sized
  4715. pub fn aya::programs::tp_btf::BtfTracePointLink::borrow(&self) -> &T
  4716. impl<T> core::borrow::BorrowMut<T> for aya::programs::tp_btf::BtfTracePointLink where T: core::marker::Sized
  4717. pub fn aya::programs::tp_btf::BtfTracePointLink::borrow_mut(&mut self) -> &mut T
  4718. impl<T> core::convert::From<T> for aya::programs::tp_btf::BtfTracePointLink
  4719. pub fn aya::programs::tp_btf::BtfTracePointLink::from(t: T) -> T
  4720. pub struct aya::programs::tp_btf::BtfTracePointLinkId(_)
  4721. impl core::cmp::Eq for aya::programs::tp_btf::BtfTracePointLinkId
  4722. impl core::cmp::PartialEq for aya::programs::tp_btf::BtfTracePointLinkId
  4723. pub fn aya::programs::tp_btf::BtfTracePointLinkId::eq(&self, other: &aya::programs::tp_btf::BtfTracePointLinkId) -> bool
  4724. impl core::fmt::Debug for aya::programs::tp_btf::BtfTracePointLinkId
  4725. pub fn aya::programs::tp_btf::BtfTracePointLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4726. impl core::hash::Hash for aya::programs::tp_btf::BtfTracePointLinkId
  4727. pub fn aya::programs::tp_btf::BtfTracePointLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  4728. impl core::marker::StructuralPartialEq for aya::programs::tp_btf::BtfTracePointLinkId
  4729. impl core::marker::Send for aya::programs::tp_btf::BtfTracePointLinkId
  4730. impl core::marker::Sync for aya::programs::tp_btf::BtfTracePointLinkId
  4731. impl core::marker::Unpin for aya::programs::tp_btf::BtfTracePointLinkId
  4732. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tp_btf::BtfTracePointLinkId
  4733. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tp_btf::BtfTracePointLinkId
  4734. impl<T, U> core::convert::Into<U> for aya::programs::tp_btf::BtfTracePointLinkId where U: core::convert::From<T>
  4735. pub fn aya::programs::tp_btf::BtfTracePointLinkId::into(self) -> U
  4736. impl<T, U> core::convert::TryFrom<U> for aya::programs::tp_btf::BtfTracePointLinkId where U: core::convert::Into<T>
  4737. pub type aya::programs::tp_btf::BtfTracePointLinkId::Error = core::convert::Infallible
  4738. pub fn aya::programs::tp_btf::BtfTracePointLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4739. impl<T, U> core::convert::TryInto<U> for aya::programs::tp_btf::BtfTracePointLinkId where U: core::convert::TryFrom<T>
  4740. pub type aya::programs::tp_btf::BtfTracePointLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  4741. pub fn aya::programs::tp_btf::BtfTracePointLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4742. impl<T> core::any::Any for aya::programs::tp_btf::BtfTracePointLinkId where T: 'static + core::marker::Sized
  4743. pub fn aya::programs::tp_btf::BtfTracePointLinkId::type_id(&self) -> core::any::TypeId
  4744. impl<T> core::borrow::Borrow<T> for aya::programs::tp_btf::BtfTracePointLinkId where T: core::marker::Sized
  4745. pub fn aya::programs::tp_btf::BtfTracePointLinkId::borrow(&self) -> &T
  4746. impl<T> core::borrow::BorrowMut<T> for aya::programs::tp_btf::BtfTracePointLinkId where T: core::marker::Sized
  4747. pub fn aya::programs::tp_btf::BtfTracePointLinkId::borrow_mut(&mut self) -> &mut T
  4748. impl<T> core::convert::From<T> for aya::programs::tp_btf::BtfTracePointLinkId
  4749. pub fn aya::programs::tp_btf::BtfTracePointLinkId::from(t: T) -> T
  4750. pub mod aya::programs::trace_point
  4751. pub enum aya::programs::trace_point::TracePointError
  4752. pub aya::programs::trace_point::TracePointError::FileError
  4753. pub aya::programs::trace_point::TracePointError::FileError::filename: alloc::string::String
  4754. pub aya::programs::trace_point::TracePointError::FileError::io_error: std::io::error::Error
  4755. impl core::convert::From<aya::programs::trace_point::TracePointError> for aya::programs::ProgramError
  4756. pub fn aya::programs::ProgramError::from(source: aya::programs::trace_point::TracePointError) -> Self
  4757. impl core::error::Error for aya::programs::trace_point::TracePointError
  4758. pub fn aya::programs::trace_point::TracePointError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  4759. impl core::fmt::Debug for aya::programs::trace_point::TracePointError
  4760. pub fn aya::programs::trace_point::TracePointError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4761. impl core::fmt::Display for aya::programs::trace_point::TracePointError
  4762. pub fn aya::programs::trace_point::TracePointError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4763. impl core::marker::Send for aya::programs::trace_point::TracePointError
  4764. impl core::marker::Sync for aya::programs::trace_point::TracePointError
  4765. impl core::marker::Unpin for aya::programs::trace_point::TracePointError
  4766. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::trace_point::TracePointError
  4767. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::trace_point::TracePointError
  4768. impl<T, U> core::convert::Into<U> for aya::programs::trace_point::TracePointError where U: core::convert::From<T>
  4769. pub fn aya::programs::trace_point::TracePointError::into(self) -> U
  4770. impl<T, U> core::convert::TryFrom<U> for aya::programs::trace_point::TracePointError where U: core::convert::Into<T>
  4771. pub type aya::programs::trace_point::TracePointError::Error = core::convert::Infallible
  4772. pub fn aya::programs::trace_point::TracePointError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4773. impl<T, U> core::convert::TryInto<U> for aya::programs::trace_point::TracePointError where U: core::convert::TryFrom<T>
  4774. pub type aya::programs::trace_point::TracePointError::Error = <U as core::convert::TryFrom<T>>::Error
  4775. pub fn aya::programs::trace_point::TracePointError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4776. impl<T> alloc::string::ToString for aya::programs::trace_point::TracePointError where T: core::fmt::Display + core::marker::Sized
  4777. pub fn aya::programs::trace_point::TracePointError::to_string(&self) -> alloc::string::String
  4778. impl<T> core::any::Any for aya::programs::trace_point::TracePointError where T: 'static + core::marker::Sized
  4779. pub fn aya::programs::trace_point::TracePointError::type_id(&self) -> core::any::TypeId
  4780. impl<T> core::borrow::Borrow<T> for aya::programs::trace_point::TracePointError where T: core::marker::Sized
  4781. pub fn aya::programs::trace_point::TracePointError::borrow(&self) -> &T
  4782. impl<T> core::borrow::BorrowMut<T> for aya::programs::trace_point::TracePointError where T: core::marker::Sized
  4783. pub fn aya::programs::trace_point::TracePointError::borrow_mut(&mut self) -> &mut T
  4784. impl<T> core::convert::From<T> for aya::programs::trace_point::TracePointError
  4785. pub fn aya::programs::trace_point::TracePointError::from(t: T) -> T
  4786. pub struct aya::programs::trace_point::TracePoint
  4787. impl aya::programs::trace_point::TracePoint
  4788. pub fn aya::programs::trace_point::TracePoint::attach(&mut self, category: &str, name: &str) -> core::result::Result<aya::programs::trace_point::TracePointLinkId, aya::programs::ProgramError>
  4789. pub fn aya::programs::trace_point::TracePoint::detach(&mut self, link_id: aya::programs::trace_point::TracePointLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  4790. pub fn aya::programs::trace_point::TracePoint::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  4791. pub fn aya::programs::trace_point::TracePoint::take_link(&mut self, link_id: aya::programs::trace_point::TracePointLinkId) -> core::result::Result<aya::programs::trace_point::TracePointLink, aya::programs::ProgramError>
  4792. impl aya::programs::trace_point::TracePoint
  4793. pub fn aya::programs::trace_point::TracePoint::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  4794. impl aya::programs::trace_point::TracePoint
  4795. pub fn aya::programs::trace_point::TracePoint::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  4796. impl aya::programs::trace_point::TracePoint
  4797. pub fn aya::programs::trace_point::TracePoint::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  4798. impl aya::programs::trace_point::TracePoint
  4799. pub fn aya::programs::trace_point::TracePoint::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  4800. pub fn aya::programs::trace_point::TracePoint::unpin(self) -> core::result::Result<(), std::io::error::Error>
  4801. impl aya::programs::trace_point::TracePoint
  4802. pub fn aya::programs::trace_point::TracePoint::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  4803. impl core::fmt::Debug for aya::programs::trace_point::TracePoint
  4804. pub fn aya::programs::trace_point::TracePoint::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4805. impl core::ops::drop::Drop for aya::programs::trace_point::TracePoint
  4806. pub fn aya::programs::trace_point::TracePoint::drop(&mut self)
  4807. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::trace_point::TracePoint
  4808. pub type &'a aya::programs::trace_point::TracePoint::Error = aya::programs::ProgramError
  4809. pub fn &'a aya::programs::trace_point::TracePoint::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::trace_point::TracePoint, aya::programs::ProgramError>
  4810. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::trace_point::TracePoint
  4811. pub type &'a mut aya::programs::trace_point::TracePoint::Error = aya::programs::ProgramError
  4812. pub fn &'a mut aya::programs::trace_point::TracePoint::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::trace_point::TracePoint, aya::programs::ProgramError>
  4813. impl core::marker::Send for aya::programs::trace_point::TracePoint
  4814. impl core::marker::Sync for aya::programs::trace_point::TracePoint
  4815. impl core::marker::Unpin for aya::programs::trace_point::TracePoint
  4816. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::trace_point::TracePoint
  4817. impl core::panic::unwind_safe::UnwindSafe for aya::programs::trace_point::TracePoint
  4818. impl<T, U> core::convert::Into<U> for aya::programs::trace_point::TracePoint where U: core::convert::From<T>
  4819. pub fn aya::programs::trace_point::TracePoint::into(self) -> U
  4820. impl<T, U> core::convert::TryFrom<U> for aya::programs::trace_point::TracePoint where U: core::convert::Into<T>
  4821. pub type aya::programs::trace_point::TracePoint::Error = core::convert::Infallible
  4822. pub fn aya::programs::trace_point::TracePoint::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4823. impl<T, U> core::convert::TryInto<U> for aya::programs::trace_point::TracePoint where U: core::convert::TryFrom<T>
  4824. pub type aya::programs::trace_point::TracePoint::Error = <U as core::convert::TryFrom<T>>::Error
  4825. pub fn aya::programs::trace_point::TracePoint::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4826. impl<T> core::any::Any for aya::programs::trace_point::TracePoint where T: 'static + core::marker::Sized
  4827. pub fn aya::programs::trace_point::TracePoint::type_id(&self) -> core::any::TypeId
  4828. impl<T> core::borrow::Borrow<T> for aya::programs::trace_point::TracePoint where T: core::marker::Sized
  4829. pub fn aya::programs::trace_point::TracePoint::borrow(&self) -> &T
  4830. impl<T> core::borrow::BorrowMut<T> for aya::programs::trace_point::TracePoint where T: core::marker::Sized
  4831. pub fn aya::programs::trace_point::TracePoint::borrow_mut(&mut self) -> &mut T
  4832. impl<T> core::convert::From<T> for aya::programs::trace_point::TracePoint
  4833. pub fn aya::programs::trace_point::TracePoint::from(t: T) -> T
  4834. pub struct aya::programs::trace_point::TracePointLink(_)
  4835. impl aya::programs::links::Link for aya::programs::trace_point::TracePointLink
  4836. pub type aya::programs::trace_point::TracePointLink::Id = aya::programs::trace_point::TracePointLinkId
  4837. pub fn aya::programs::trace_point::TracePointLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4838. pub fn aya::programs::trace_point::TracePointLink::id(&self) -> Self::Id
  4839. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::trace_point::TracePointLink
  4840. pub type aya::programs::trace_point::TracePointLink::Error = aya::programs::links::LinkError
  4841. pub fn aya::programs::trace_point::TracePointLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  4842. impl core::convert::TryFrom<aya::programs::trace_point::TracePointLink> for aya::programs::links::FdLink
  4843. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  4844. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::trace_point::TracePointLink) -> core::result::Result<Self, Self::Error>
  4845. impl core::fmt::Debug for aya::programs::trace_point::TracePointLink
  4846. pub fn aya::programs::trace_point::TracePointLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4847. impl core::ops::drop::Drop for aya::programs::trace_point::TracePointLink
  4848. pub fn aya::programs::trace_point::TracePointLink::drop(&mut self)
  4849. impl core::marker::Send for aya::programs::trace_point::TracePointLink
  4850. impl core::marker::Sync for aya::programs::trace_point::TracePointLink
  4851. impl core::marker::Unpin for aya::programs::trace_point::TracePointLink
  4852. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::trace_point::TracePointLink
  4853. impl core::panic::unwind_safe::UnwindSafe for aya::programs::trace_point::TracePointLink
  4854. impl<T, U> core::convert::Into<U> for aya::programs::trace_point::TracePointLink where U: core::convert::From<T>
  4855. pub fn aya::programs::trace_point::TracePointLink::into(self) -> U
  4856. impl<T, U> core::convert::TryFrom<U> for aya::programs::trace_point::TracePointLink where U: core::convert::Into<T>
  4857. pub type aya::programs::trace_point::TracePointLink::Error = core::convert::Infallible
  4858. pub fn aya::programs::trace_point::TracePointLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4859. impl<T, U> core::convert::TryInto<U> for aya::programs::trace_point::TracePointLink where U: core::convert::TryFrom<T>
  4860. pub type aya::programs::trace_point::TracePointLink::Error = <U as core::convert::TryFrom<T>>::Error
  4861. pub fn aya::programs::trace_point::TracePointLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4862. impl<T> core::any::Any for aya::programs::trace_point::TracePointLink where T: 'static + core::marker::Sized
  4863. pub fn aya::programs::trace_point::TracePointLink::type_id(&self) -> core::any::TypeId
  4864. impl<T> core::borrow::Borrow<T> for aya::programs::trace_point::TracePointLink where T: core::marker::Sized
  4865. pub fn aya::programs::trace_point::TracePointLink::borrow(&self) -> &T
  4866. impl<T> core::borrow::BorrowMut<T> for aya::programs::trace_point::TracePointLink where T: core::marker::Sized
  4867. pub fn aya::programs::trace_point::TracePointLink::borrow_mut(&mut self) -> &mut T
  4868. impl<T> core::convert::From<T> for aya::programs::trace_point::TracePointLink
  4869. pub fn aya::programs::trace_point::TracePointLink::from(t: T) -> T
  4870. pub struct aya::programs::trace_point::TracePointLinkId(_)
  4871. impl core::cmp::Eq for aya::programs::trace_point::TracePointLinkId
  4872. impl core::cmp::PartialEq for aya::programs::trace_point::TracePointLinkId
  4873. pub fn aya::programs::trace_point::TracePointLinkId::eq(&self, other: &aya::programs::trace_point::TracePointLinkId) -> bool
  4874. impl core::fmt::Debug for aya::programs::trace_point::TracePointLinkId
  4875. pub fn aya::programs::trace_point::TracePointLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4876. impl core::hash::Hash for aya::programs::trace_point::TracePointLinkId
  4877. pub fn aya::programs::trace_point::TracePointLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  4878. impl core::marker::StructuralPartialEq for aya::programs::trace_point::TracePointLinkId
  4879. impl core::marker::Send for aya::programs::trace_point::TracePointLinkId
  4880. impl core::marker::Sync for aya::programs::trace_point::TracePointLinkId
  4881. impl core::marker::Unpin for aya::programs::trace_point::TracePointLinkId
  4882. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::trace_point::TracePointLinkId
  4883. impl core::panic::unwind_safe::UnwindSafe for aya::programs::trace_point::TracePointLinkId
  4884. impl<T, U> core::convert::Into<U> for aya::programs::trace_point::TracePointLinkId where U: core::convert::From<T>
  4885. pub fn aya::programs::trace_point::TracePointLinkId::into(self) -> U
  4886. impl<T, U> core::convert::TryFrom<U> for aya::programs::trace_point::TracePointLinkId where U: core::convert::Into<T>
  4887. pub type aya::programs::trace_point::TracePointLinkId::Error = core::convert::Infallible
  4888. pub fn aya::programs::trace_point::TracePointLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4889. impl<T, U> core::convert::TryInto<U> for aya::programs::trace_point::TracePointLinkId where U: core::convert::TryFrom<T>
  4890. pub type aya::programs::trace_point::TracePointLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  4891. pub fn aya::programs::trace_point::TracePointLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4892. impl<T> core::any::Any for aya::programs::trace_point::TracePointLinkId where T: 'static + core::marker::Sized
  4893. pub fn aya::programs::trace_point::TracePointLinkId::type_id(&self) -> core::any::TypeId
  4894. impl<T> core::borrow::Borrow<T> for aya::programs::trace_point::TracePointLinkId where T: core::marker::Sized
  4895. pub fn aya::programs::trace_point::TracePointLinkId::borrow(&self) -> &T
  4896. impl<T> core::borrow::BorrowMut<T> for aya::programs::trace_point::TracePointLinkId where T: core::marker::Sized
  4897. pub fn aya::programs::trace_point::TracePointLinkId::borrow_mut(&mut self) -> &mut T
  4898. impl<T> core::convert::From<T> for aya::programs::trace_point::TracePointLinkId
  4899. pub fn aya::programs::trace_point::TracePointLinkId::from(t: T) -> T
  4900. pub mod aya::programs::uprobe
  4901. pub enum aya::programs::uprobe::UProbeError
  4902. pub aya::programs::uprobe::UProbeError::FileError
  4903. pub aya::programs::uprobe::UProbeError::FileError::filename: std::path::PathBuf
  4904. pub aya::programs::uprobe::UProbeError::FileError::io_error: std::io::error::Error
  4905. pub aya::programs::uprobe::UProbeError::InvalidLdSoCache
  4906. pub aya::programs::uprobe::UProbeError::InvalidLdSoCache::io_error: alloc::sync::Arc<std::io::error::Error>
  4907. pub aya::programs::uprobe::UProbeError::InvalidTarget
  4908. pub aya::programs::uprobe::UProbeError::InvalidTarget::path: std::path::PathBuf
  4909. pub aya::programs::uprobe::UProbeError::SymbolError
  4910. pub aya::programs::uprobe::UProbeError::SymbolError::error: alloc::boxed::Box<(dyn core::error::Error + core::marker::Send + core::marker::Sync)>
  4911. pub aya::programs::uprobe::UProbeError::SymbolError::symbol: alloc::string::String
  4912. impl core::convert::From<aya::programs::uprobe::UProbeError> for aya::programs::ProgramError
  4913. pub fn aya::programs::ProgramError::from(source: aya::programs::uprobe::UProbeError) -> Self
  4914. impl core::error::Error for aya::programs::uprobe::UProbeError
  4915. pub fn aya::programs::uprobe::UProbeError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  4916. impl core::fmt::Debug for aya::programs::uprobe::UProbeError
  4917. pub fn aya::programs::uprobe::UProbeError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4918. impl core::fmt::Display for aya::programs::uprobe::UProbeError
  4919. pub fn aya::programs::uprobe::UProbeError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4920. impl core::marker::Send for aya::programs::uprobe::UProbeError
  4921. impl core::marker::Sync for aya::programs::uprobe::UProbeError
  4922. impl core::marker::Unpin for aya::programs::uprobe::UProbeError
  4923. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::uprobe::UProbeError
  4924. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::uprobe::UProbeError
  4925. impl<T, U> core::convert::Into<U> for aya::programs::uprobe::UProbeError where U: core::convert::From<T>
  4926. pub fn aya::programs::uprobe::UProbeError::into(self) -> U
  4927. impl<T, U> core::convert::TryFrom<U> for aya::programs::uprobe::UProbeError where U: core::convert::Into<T>
  4928. pub type aya::programs::uprobe::UProbeError::Error = core::convert::Infallible
  4929. pub fn aya::programs::uprobe::UProbeError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4930. impl<T, U> core::convert::TryInto<U> for aya::programs::uprobe::UProbeError where U: core::convert::TryFrom<T>
  4931. pub type aya::programs::uprobe::UProbeError::Error = <U as core::convert::TryFrom<T>>::Error
  4932. pub fn aya::programs::uprobe::UProbeError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4933. impl<T> alloc::string::ToString for aya::programs::uprobe::UProbeError where T: core::fmt::Display + core::marker::Sized
  4934. pub fn aya::programs::uprobe::UProbeError::to_string(&self) -> alloc::string::String
  4935. impl<T> core::any::Any for aya::programs::uprobe::UProbeError where T: 'static + core::marker::Sized
  4936. pub fn aya::programs::uprobe::UProbeError::type_id(&self) -> core::any::TypeId
  4937. impl<T> core::borrow::Borrow<T> for aya::programs::uprobe::UProbeError where T: core::marker::Sized
  4938. pub fn aya::programs::uprobe::UProbeError::borrow(&self) -> &T
  4939. impl<T> core::borrow::BorrowMut<T> for aya::programs::uprobe::UProbeError where T: core::marker::Sized
  4940. pub fn aya::programs::uprobe::UProbeError::borrow_mut(&mut self) -> &mut T
  4941. impl<T> core::convert::From<T> for aya::programs::uprobe::UProbeError
  4942. pub fn aya::programs::uprobe::UProbeError::from(t: T) -> T
  4943. pub struct aya::programs::uprobe::UProbe
  4944. impl aya::programs::uprobe::UProbe
  4945. pub fn aya::programs::uprobe::UProbe::attach<T: core::convert::AsRef<std::path::Path>>(&mut self, fn_name: core::option::Option<&str>, offset: u64, target: T, pid: core::option::Option<libc::unix::pid_t>) -> core::result::Result<aya::programs::uprobe::UProbeLinkId, aya::programs::ProgramError>
  4946. pub fn aya::programs::uprobe::UProbe::detach(&mut self, link_id: aya::programs::uprobe::UProbeLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  4947. pub fn aya::programs::uprobe::UProbe::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, kind: aya::programs::ProbeKind) -> core::result::Result<Self, aya::programs::ProgramError>
  4948. pub fn aya::programs::uprobe::UProbe::kind(&self) -> aya::programs::ProbeKind
  4949. pub fn aya::programs::uprobe::UProbe::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  4950. pub fn aya::programs::uprobe::UProbe::take_link(&mut self, link_id: aya::programs::uprobe::UProbeLinkId) -> core::result::Result<aya::programs::uprobe::UProbeLink, aya::programs::ProgramError>
  4951. impl aya::programs::uprobe::UProbe
  4952. pub fn aya::programs::uprobe::UProbe::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  4953. impl aya::programs::uprobe::UProbe
  4954. pub fn aya::programs::uprobe::UProbe::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  4955. impl aya::programs::uprobe::UProbe
  4956. pub fn aya::programs::uprobe::UProbe::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  4957. pub fn aya::programs::uprobe::UProbe::unpin(self) -> core::result::Result<(), std::io::error::Error>
  4958. impl aya::programs::uprobe::UProbe
  4959. pub fn aya::programs::uprobe::UProbe::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  4960. impl core::fmt::Debug for aya::programs::uprobe::UProbe
  4961. pub fn aya::programs::uprobe::UProbe::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4962. impl core::ops::drop::Drop for aya::programs::uprobe::UProbe
  4963. pub fn aya::programs::uprobe::UProbe::drop(&mut self)
  4964. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::uprobe::UProbe
  4965. pub type &'a aya::programs::uprobe::UProbe::Error = aya::programs::ProgramError
  4966. pub fn &'a aya::programs::uprobe::UProbe::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::uprobe::UProbe, aya::programs::ProgramError>
  4967. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::uprobe::UProbe
  4968. pub type &'a mut aya::programs::uprobe::UProbe::Error = aya::programs::ProgramError
  4969. pub fn &'a mut aya::programs::uprobe::UProbe::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::uprobe::UProbe, aya::programs::ProgramError>
  4970. impl core::marker::Send for aya::programs::uprobe::UProbe
  4971. impl core::marker::Sync for aya::programs::uprobe::UProbe
  4972. impl core::marker::Unpin for aya::programs::uprobe::UProbe
  4973. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::uprobe::UProbe
  4974. impl core::panic::unwind_safe::UnwindSafe for aya::programs::uprobe::UProbe
  4975. impl<T, U> core::convert::Into<U> for aya::programs::uprobe::UProbe where U: core::convert::From<T>
  4976. pub fn aya::programs::uprobe::UProbe::into(self) -> U
  4977. impl<T, U> core::convert::TryFrom<U> for aya::programs::uprobe::UProbe where U: core::convert::Into<T>
  4978. pub type aya::programs::uprobe::UProbe::Error = core::convert::Infallible
  4979. pub fn aya::programs::uprobe::UProbe::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4980. impl<T, U> core::convert::TryInto<U> for aya::programs::uprobe::UProbe where U: core::convert::TryFrom<T>
  4981. pub type aya::programs::uprobe::UProbe::Error = <U as core::convert::TryFrom<T>>::Error
  4982. pub fn aya::programs::uprobe::UProbe::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4983. impl<T> core::any::Any for aya::programs::uprobe::UProbe where T: 'static + core::marker::Sized
  4984. pub fn aya::programs::uprobe::UProbe::type_id(&self) -> core::any::TypeId
  4985. impl<T> core::borrow::Borrow<T> for aya::programs::uprobe::UProbe where T: core::marker::Sized
  4986. pub fn aya::programs::uprobe::UProbe::borrow(&self) -> &T
  4987. impl<T> core::borrow::BorrowMut<T> for aya::programs::uprobe::UProbe where T: core::marker::Sized
  4988. pub fn aya::programs::uprobe::UProbe::borrow_mut(&mut self) -> &mut T
  4989. impl<T> core::convert::From<T> for aya::programs::uprobe::UProbe
  4990. pub fn aya::programs::uprobe::UProbe::from(t: T) -> T
  4991. pub struct aya::programs::uprobe::UProbeLink(_)
  4992. impl aya::programs::links::Link for aya::programs::uprobe::UProbeLink
  4993. pub type aya::programs::uprobe::UProbeLink::Id = aya::programs::uprobe::UProbeLinkId
  4994. pub fn aya::programs::uprobe::UProbeLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4995. pub fn aya::programs::uprobe::UProbeLink::id(&self) -> Self::Id
  4996. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::uprobe::UProbeLink
  4997. pub type aya::programs::uprobe::UProbeLink::Error = aya::programs::links::LinkError
  4998. pub fn aya::programs::uprobe::UProbeLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  4999. impl core::convert::TryFrom<aya::programs::uprobe::UProbeLink> for aya::programs::links::FdLink
  5000. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  5001. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::uprobe::UProbeLink) -> core::result::Result<Self, Self::Error>
  5002. impl core::fmt::Debug for aya::programs::uprobe::UProbeLink
  5003. pub fn aya::programs::uprobe::UProbeLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5004. impl core::ops::drop::Drop for aya::programs::uprobe::UProbeLink
  5005. pub fn aya::programs::uprobe::UProbeLink::drop(&mut self)
  5006. impl core::marker::Send for aya::programs::uprobe::UProbeLink
  5007. impl core::marker::Sync for aya::programs::uprobe::UProbeLink
  5008. impl core::marker::Unpin for aya::programs::uprobe::UProbeLink
  5009. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::uprobe::UProbeLink
  5010. impl core::panic::unwind_safe::UnwindSafe for aya::programs::uprobe::UProbeLink
  5011. impl<T, U> core::convert::Into<U> for aya::programs::uprobe::UProbeLink where U: core::convert::From<T>
  5012. pub fn aya::programs::uprobe::UProbeLink::into(self) -> U
  5013. impl<T, U> core::convert::TryFrom<U> for aya::programs::uprobe::UProbeLink where U: core::convert::Into<T>
  5014. pub type aya::programs::uprobe::UProbeLink::Error = core::convert::Infallible
  5015. pub fn aya::programs::uprobe::UProbeLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5016. impl<T, U> core::convert::TryInto<U> for aya::programs::uprobe::UProbeLink where U: core::convert::TryFrom<T>
  5017. pub type aya::programs::uprobe::UProbeLink::Error = <U as core::convert::TryFrom<T>>::Error
  5018. pub fn aya::programs::uprobe::UProbeLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5019. impl<T> core::any::Any for aya::programs::uprobe::UProbeLink where T: 'static + core::marker::Sized
  5020. pub fn aya::programs::uprobe::UProbeLink::type_id(&self) -> core::any::TypeId
  5021. impl<T> core::borrow::Borrow<T> for aya::programs::uprobe::UProbeLink where T: core::marker::Sized
  5022. pub fn aya::programs::uprobe::UProbeLink::borrow(&self) -> &T
  5023. impl<T> core::borrow::BorrowMut<T> for aya::programs::uprobe::UProbeLink where T: core::marker::Sized
  5024. pub fn aya::programs::uprobe::UProbeLink::borrow_mut(&mut self) -> &mut T
  5025. impl<T> core::convert::From<T> for aya::programs::uprobe::UProbeLink
  5026. pub fn aya::programs::uprobe::UProbeLink::from(t: T) -> T
  5027. pub struct aya::programs::uprobe::UProbeLinkId(_)
  5028. impl core::cmp::Eq for aya::programs::uprobe::UProbeLinkId
  5029. impl core::cmp::PartialEq for aya::programs::uprobe::UProbeLinkId
  5030. pub fn aya::programs::uprobe::UProbeLinkId::eq(&self, other: &aya::programs::uprobe::UProbeLinkId) -> bool
  5031. impl core::fmt::Debug for aya::programs::uprobe::UProbeLinkId
  5032. pub fn aya::programs::uprobe::UProbeLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5033. impl core::hash::Hash for aya::programs::uprobe::UProbeLinkId
  5034. pub fn aya::programs::uprobe::UProbeLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  5035. impl core::marker::StructuralPartialEq for aya::programs::uprobe::UProbeLinkId
  5036. impl core::marker::Send for aya::programs::uprobe::UProbeLinkId
  5037. impl core::marker::Sync for aya::programs::uprobe::UProbeLinkId
  5038. impl core::marker::Unpin for aya::programs::uprobe::UProbeLinkId
  5039. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::uprobe::UProbeLinkId
  5040. impl core::panic::unwind_safe::UnwindSafe for aya::programs::uprobe::UProbeLinkId
  5041. impl<T, U> core::convert::Into<U> for aya::programs::uprobe::UProbeLinkId where U: core::convert::From<T>
  5042. pub fn aya::programs::uprobe::UProbeLinkId::into(self) -> U
  5043. impl<T, U> core::convert::TryFrom<U> for aya::programs::uprobe::UProbeLinkId where U: core::convert::Into<T>
  5044. pub type aya::programs::uprobe::UProbeLinkId::Error = core::convert::Infallible
  5045. pub fn aya::programs::uprobe::UProbeLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5046. impl<T, U> core::convert::TryInto<U> for aya::programs::uprobe::UProbeLinkId where U: core::convert::TryFrom<T>
  5047. pub type aya::programs::uprobe::UProbeLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  5048. pub fn aya::programs::uprobe::UProbeLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5049. impl<T> core::any::Any for aya::programs::uprobe::UProbeLinkId where T: 'static + core::marker::Sized
  5050. pub fn aya::programs::uprobe::UProbeLinkId::type_id(&self) -> core::any::TypeId
  5051. impl<T> core::borrow::Borrow<T> for aya::programs::uprobe::UProbeLinkId where T: core::marker::Sized
  5052. pub fn aya::programs::uprobe::UProbeLinkId::borrow(&self) -> &T
  5053. impl<T> core::borrow::BorrowMut<T> for aya::programs::uprobe::UProbeLinkId where T: core::marker::Sized
  5054. pub fn aya::programs::uprobe::UProbeLinkId::borrow_mut(&mut self) -> &mut T
  5055. impl<T> core::convert::From<T> for aya::programs::uprobe::UProbeLinkId
  5056. pub fn aya::programs::uprobe::UProbeLinkId::from(t: T) -> T
  5057. pub mod aya::programs::xdp
  5058. pub enum aya::programs::xdp::XdpError
  5059. pub aya::programs::xdp::XdpError::NetlinkError
  5060. pub aya::programs::xdp::XdpError::NetlinkError::io_error: std::io::error::Error
  5061. impl core::convert::From<aya::programs::xdp::XdpError> for aya::programs::ProgramError
  5062. pub fn aya::programs::ProgramError::from(source: aya::programs::xdp::XdpError) -> Self
  5063. impl core::error::Error for aya::programs::xdp::XdpError
  5064. pub fn aya::programs::xdp::XdpError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  5065. impl core::fmt::Debug for aya::programs::xdp::XdpError
  5066. pub fn aya::programs::xdp::XdpError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5067. impl core::fmt::Display for aya::programs::xdp::XdpError
  5068. pub fn aya::programs::xdp::XdpError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5069. impl core::marker::Send for aya::programs::xdp::XdpError
  5070. impl core::marker::Sync for aya::programs::xdp::XdpError
  5071. impl core::marker::Unpin for aya::programs::xdp::XdpError
  5072. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::xdp::XdpError
  5073. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::xdp::XdpError
  5074. impl<T, U> core::convert::Into<U> for aya::programs::xdp::XdpError where U: core::convert::From<T>
  5075. pub fn aya::programs::xdp::XdpError::into(self) -> U
  5076. impl<T, U> core::convert::TryFrom<U> for aya::programs::xdp::XdpError where U: core::convert::Into<T>
  5077. pub type aya::programs::xdp::XdpError::Error = core::convert::Infallible
  5078. pub fn aya::programs::xdp::XdpError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5079. impl<T, U> core::convert::TryInto<U> for aya::programs::xdp::XdpError where U: core::convert::TryFrom<T>
  5080. pub type aya::programs::xdp::XdpError::Error = <U as core::convert::TryFrom<T>>::Error
  5081. pub fn aya::programs::xdp::XdpError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5082. impl<T> alloc::string::ToString for aya::programs::xdp::XdpError where T: core::fmt::Display + core::marker::Sized
  5083. pub fn aya::programs::xdp::XdpError::to_string(&self) -> alloc::string::String
  5084. impl<T> core::any::Any for aya::programs::xdp::XdpError where T: 'static + core::marker::Sized
  5085. pub fn aya::programs::xdp::XdpError::type_id(&self) -> core::any::TypeId
  5086. impl<T> core::borrow::Borrow<T> for aya::programs::xdp::XdpError where T: core::marker::Sized
  5087. pub fn aya::programs::xdp::XdpError::borrow(&self) -> &T
  5088. impl<T> core::borrow::BorrowMut<T> for aya::programs::xdp::XdpError where T: core::marker::Sized
  5089. pub fn aya::programs::xdp::XdpError::borrow_mut(&mut self) -> &mut T
  5090. impl<T> core::convert::From<T> for aya::programs::xdp::XdpError
  5091. pub fn aya::programs::xdp::XdpError::from(t: T) -> T
  5092. pub struct aya::programs::xdp::Xdp
  5093. impl aya::programs::xdp::Xdp
  5094. pub fn aya::programs::xdp::Xdp::attach(&mut self, interface: &str, flags: aya::programs::xdp::XdpFlags) -> core::result::Result<aya::programs::xdp::XdpLinkId, aya::programs::ProgramError>
  5095. pub fn aya::programs::xdp::Xdp::attach_to_if_index(&mut self, if_index: u32, flags: aya::programs::xdp::XdpFlags) -> core::result::Result<aya::programs::xdp::XdpLinkId, aya::programs::ProgramError>
  5096. pub fn aya::programs::xdp::Xdp::attach_to_link(&mut self, link: aya::programs::xdp::XdpLink) -> core::result::Result<aya::programs::xdp::XdpLinkId, aya::programs::ProgramError>
  5097. pub fn aya::programs::xdp::Xdp::detach(&mut self, link_id: aya::programs::xdp::XdpLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  5098. pub fn aya::programs::xdp::Xdp::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, attach_type: aya_obj::programs::xdp::XdpAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  5099. pub fn aya::programs::xdp::Xdp::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  5100. pub fn aya::programs::xdp::Xdp::take_link(&mut self, link_id: aya::programs::xdp::XdpLinkId) -> core::result::Result<aya::programs::xdp::XdpLink, aya::programs::ProgramError>
  5101. impl aya::programs::xdp::Xdp
  5102. pub fn aya::programs::xdp::Xdp::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  5103. impl aya::programs::xdp::Xdp
  5104. pub fn aya::programs::xdp::Xdp::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  5105. impl aya::programs::xdp::Xdp
  5106. pub fn aya::programs::xdp::Xdp::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  5107. pub fn aya::programs::xdp::Xdp::unpin(self) -> core::result::Result<(), std::io::error::Error>
  5108. impl aya::programs::xdp::Xdp
  5109. pub fn aya::programs::xdp::Xdp::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  5110. impl core::fmt::Debug for aya::programs::xdp::Xdp
  5111. pub fn aya::programs::xdp::Xdp::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5112. impl core::ops::drop::Drop for aya::programs::xdp::Xdp
  5113. pub fn aya::programs::xdp::Xdp::drop(&mut self)
  5114. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::xdp::Xdp
  5115. pub type &'a aya::programs::xdp::Xdp::Error = aya::programs::ProgramError
  5116. pub fn &'a aya::programs::xdp::Xdp::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::xdp::Xdp, aya::programs::ProgramError>
  5117. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::xdp::Xdp
  5118. pub type &'a mut aya::programs::xdp::Xdp::Error = aya::programs::ProgramError
  5119. pub fn &'a mut aya::programs::xdp::Xdp::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::xdp::Xdp, aya::programs::ProgramError>
  5120. impl core::marker::Send for aya::programs::xdp::Xdp
  5121. impl core::marker::Sync for aya::programs::xdp::Xdp
  5122. impl core::marker::Unpin for aya::programs::xdp::Xdp
  5123. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::xdp::Xdp
  5124. impl core::panic::unwind_safe::UnwindSafe for aya::programs::xdp::Xdp
  5125. impl<T, U> core::convert::Into<U> for aya::programs::xdp::Xdp where U: core::convert::From<T>
  5126. pub fn aya::programs::xdp::Xdp::into(self) -> U
  5127. impl<T, U> core::convert::TryFrom<U> for aya::programs::xdp::Xdp where U: core::convert::Into<T>
  5128. pub type aya::programs::xdp::Xdp::Error = core::convert::Infallible
  5129. pub fn aya::programs::xdp::Xdp::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5130. impl<T, U> core::convert::TryInto<U> for aya::programs::xdp::Xdp where U: core::convert::TryFrom<T>
  5131. pub type aya::programs::xdp::Xdp::Error = <U as core::convert::TryFrom<T>>::Error
  5132. pub fn aya::programs::xdp::Xdp::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5133. impl<T> core::any::Any for aya::programs::xdp::Xdp where T: 'static + core::marker::Sized
  5134. pub fn aya::programs::xdp::Xdp::type_id(&self) -> core::any::TypeId
  5135. impl<T> core::borrow::Borrow<T> for aya::programs::xdp::Xdp where T: core::marker::Sized
  5136. pub fn aya::programs::xdp::Xdp::borrow(&self) -> &T
  5137. impl<T> core::borrow::BorrowMut<T> for aya::programs::xdp::Xdp where T: core::marker::Sized
  5138. pub fn aya::programs::xdp::Xdp::borrow_mut(&mut self) -> &mut T
  5139. impl<T> core::convert::From<T> for aya::programs::xdp::Xdp
  5140. pub fn aya::programs::xdp::Xdp::from(t: T) -> T
  5141. pub struct aya::programs::xdp::XdpFlags(_)
  5142. impl aya::programs::xdp::XdpFlags
  5143. pub const aya::programs::xdp::XdpFlags::DRV_MODE: Self
  5144. pub const aya::programs::xdp::XdpFlags::HW_MODE: Self
  5145. pub const aya::programs::xdp::XdpFlags::REPLACE: Self
  5146. pub const aya::programs::xdp::XdpFlags::SKB_MODE: Self
  5147. pub const aya::programs::xdp::XdpFlags::UPDATE_IF_NOEXIST: Self
  5148. impl aya::programs::xdp::XdpFlags
  5149. pub const fn aya::programs::xdp::XdpFlags::all() -> Self
  5150. pub const fn aya::programs::xdp::XdpFlags::bits(&self) -> u32
  5151. pub const fn aya::programs::xdp::XdpFlags::complement(self) -> Self
  5152. pub const fn aya::programs::xdp::XdpFlags::contains(&self, other: Self) -> bool
  5153. pub const fn aya::programs::xdp::XdpFlags::difference(self, other: Self) -> Self
  5154. pub const fn aya::programs::xdp::XdpFlags::empty() -> Self
  5155. pub const fn aya::programs::xdp::XdpFlags::from_bits(bits: u32) -> core::option::Option<Self>
  5156. pub const fn aya::programs::xdp::XdpFlags::from_bits_retain(bits: u32) -> Self
  5157. pub const fn aya::programs::xdp::XdpFlags::from_bits_truncate(bits: u32) -> Self
  5158. pub fn aya::programs::xdp::XdpFlags::from_name(name: &str) -> core::option::Option<Self>
  5159. pub fn aya::programs::xdp::XdpFlags::insert(&mut self, other: Self)
  5160. pub const fn aya::programs::xdp::XdpFlags::intersection(self, other: Self) -> Self
  5161. pub const fn aya::programs::xdp::XdpFlags::intersects(&self, other: Self) -> bool
  5162. pub const fn aya::programs::xdp::XdpFlags::is_all(&self) -> bool
  5163. pub const fn aya::programs::xdp::XdpFlags::is_empty(&self) -> bool
  5164. pub fn aya::programs::xdp::XdpFlags::remove(&mut self, other: Self)
  5165. pub fn aya::programs::xdp::XdpFlags::set(&mut self, other: Self, value: bool)
  5166. pub const fn aya::programs::xdp::XdpFlags::symmetric_difference(self, other: Self) -> Self
  5167. pub fn aya::programs::xdp::XdpFlags::toggle(&mut self, other: Self)
  5168. pub const fn aya::programs::xdp::XdpFlags::union(self, other: Self) -> Self
  5169. impl aya::programs::xdp::XdpFlags
  5170. pub const fn aya::programs::xdp::XdpFlags::iter(&self) -> bitflags::iter::Iter<aya::programs::xdp::XdpFlags>
  5171. pub const fn aya::programs::xdp::XdpFlags::iter_names(&self) -> bitflags::iter::IterNames<aya::programs::xdp::XdpFlags>
  5172. impl bitflags::traits::Flags for aya::programs::xdp::XdpFlags
  5173. pub type aya::programs::xdp::XdpFlags::Bits = u32
  5174. pub const aya::programs::xdp::XdpFlags::FLAGS: &'static [bitflags::traits::Flag<aya::programs::xdp::XdpFlags>]
  5175. pub fn aya::programs::xdp::XdpFlags::bits(&self) -> u32
  5176. pub fn aya::programs::xdp::XdpFlags::from_bits_retain(bits: u32) -> aya::programs::xdp::XdpFlags
  5177. impl bitflags::traits::PublicFlags for aya::programs::xdp::XdpFlags
  5178. pub type aya::programs::xdp::XdpFlags::Internal = InternalBitFlags
  5179. pub type aya::programs::xdp::XdpFlags::Primitive = u32
  5180. impl core::clone::Clone for aya::programs::xdp::XdpFlags
  5181. pub fn aya::programs::xdp::XdpFlags::clone(&self) -> aya::programs::xdp::XdpFlags
  5182. impl core::default::Default for aya::programs::xdp::XdpFlags
  5183. pub fn aya::programs::xdp::XdpFlags::default() -> aya::programs::xdp::XdpFlags
  5184. impl core::fmt::Binary for aya::programs::xdp::XdpFlags
  5185. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5186. impl core::fmt::Debug for aya::programs::xdp::XdpFlags
  5187. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5188. impl core::fmt::LowerHex for aya::programs::xdp::XdpFlags
  5189. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5190. impl core::fmt::Octal for aya::programs::xdp::XdpFlags
  5191. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5192. impl core::fmt::UpperHex for aya::programs::xdp::XdpFlags
  5193. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5194. impl core::iter::traits::collect::Extend<aya::programs::xdp::XdpFlags> for aya::programs::xdp::XdpFlags
  5195. pub fn aya::programs::xdp::XdpFlags::extend<T: core::iter::traits::collect::IntoIterator<Item = Self>>(&mut self, iterator: T)
  5196. impl core::iter::traits::collect::FromIterator<aya::programs::xdp::XdpFlags> for aya::programs::xdp::XdpFlags
  5197. pub fn aya::programs::xdp::XdpFlags::from_iter<T: core::iter::traits::collect::IntoIterator<Item = Self>>(iterator: T) -> Self
  5198. impl core::iter::traits::collect::IntoIterator for aya::programs::xdp::XdpFlags
  5199. pub type aya::programs::xdp::XdpFlags::IntoIter = bitflags::iter::Iter<aya::programs::xdp::XdpFlags>
  5200. pub type aya::programs::xdp::XdpFlags::Item = aya::programs::xdp::XdpFlags
  5201. pub fn aya::programs::xdp::XdpFlags::into_iter(self) -> Self::IntoIter
  5202. impl core::marker::Copy for aya::programs::xdp::XdpFlags
  5203. impl core::ops::arith::Sub for aya::programs::xdp::XdpFlags
  5204. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  5205. pub fn aya::programs::xdp::XdpFlags::sub(self, other: Self) -> Self
  5206. impl core::ops::arith::SubAssign for aya::programs::xdp::XdpFlags
  5207. pub fn aya::programs::xdp::XdpFlags::sub_assign(&mut self, other: Self)
  5208. impl core::ops::bit::BitAnd for aya::programs::xdp::XdpFlags
  5209. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  5210. pub fn aya::programs::xdp::XdpFlags::bitand(self, other: Self) -> Self
  5211. impl core::ops::bit::BitAndAssign for aya::programs::xdp::XdpFlags
  5212. pub fn aya::programs::xdp::XdpFlags::bitand_assign(&mut self, other: Self)
  5213. impl core::ops::bit::BitOr for aya::programs::xdp::XdpFlags
  5214. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  5215. pub fn aya::programs::xdp::XdpFlags::bitor(self, other: aya::programs::xdp::XdpFlags) -> Self
  5216. impl core::ops::bit::BitOrAssign for aya::programs::xdp::XdpFlags
  5217. pub fn aya::programs::xdp::XdpFlags::bitor_assign(&mut self, other: Self)
  5218. impl core::ops::bit::BitXor for aya::programs::xdp::XdpFlags
  5219. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  5220. pub fn aya::programs::xdp::XdpFlags::bitxor(self, other: Self) -> Self
  5221. impl core::ops::bit::BitXorAssign for aya::programs::xdp::XdpFlags
  5222. pub fn aya::programs::xdp::XdpFlags::bitxor_assign(&mut self, other: Self)
  5223. impl core::ops::bit::Not for aya::programs::xdp::XdpFlags
  5224. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  5225. pub fn aya::programs::xdp::XdpFlags::not(self) -> Self
  5226. impl core::marker::Send for aya::programs::xdp::XdpFlags
  5227. impl core::marker::Sync for aya::programs::xdp::XdpFlags
  5228. impl core::marker::Unpin for aya::programs::xdp::XdpFlags
  5229. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::xdp::XdpFlags
  5230. impl core::panic::unwind_safe::UnwindSafe for aya::programs::xdp::XdpFlags
  5231. impl<T, U> core::convert::Into<U> for aya::programs::xdp::XdpFlags where U: core::convert::From<T>
  5232. pub fn aya::programs::xdp::XdpFlags::into(self) -> U
  5233. impl<T, U> core::convert::TryFrom<U> for aya::programs::xdp::XdpFlags where U: core::convert::Into<T>
  5234. pub type aya::programs::xdp::XdpFlags::Error = core::convert::Infallible
  5235. pub fn aya::programs::xdp::XdpFlags::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5236. impl<T, U> core::convert::TryInto<U> for aya::programs::xdp::XdpFlags where U: core::convert::TryFrom<T>
  5237. pub type aya::programs::xdp::XdpFlags::Error = <U as core::convert::TryFrom<T>>::Error
  5238. pub fn aya::programs::xdp::XdpFlags::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5239. impl<T> alloc::borrow::ToOwned for aya::programs::xdp::XdpFlags where T: core::clone::Clone
  5240. pub type aya::programs::xdp::XdpFlags::Owned = T
  5241. pub fn aya::programs::xdp::XdpFlags::clone_into(&self, target: &mut T)
  5242. pub fn aya::programs::xdp::XdpFlags::to_owned(&self) -> T
  5243. impl<T> core::any::Any for aya::programs::xdp::XdpFlags where T: 'static + core::marker::Sized
  5244. pub fn aya::programs::xdp::XdpFlags::type_id(&self) -> core::any::TypeId
  5245. impl<T> core::borrow::Borrow<T> for aya::programs::xdp::XdpFlags where T: core::marker::Sized
  5246. pub fn aya::programs::xdp::XdpFlags::borrow(&self) -> &T
  5247. impl<T> core::borrow::BorrowMut<T> for aya::programs::xdp::XdpFlags where T: core::marker::Sized
  5248. pub fn aya::programs::xdp::XdpFlags::borrow_mut(&mut self) -> &mut T
  5249. impl<T> core::convert::From<T> for aya::programs::xdp::XdpFlags
  5250. pub fn aya::programs::xdp::XdpFlags::from(t: T) -> T
  5251. pub struct aya::programs::xdp::XdpLink(_)
  5252. impl aya::programs::links::Link for aya::programs::xdp::XdpLink
  5253. pub type aya::programs::xdp::XdpLink::Id = aya::programs::xdp::XdpLinkId
  5254. pub fn aya::programs::xdp::XdpLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  5255. pub fn aya::programs::xdp::XdpLink::id(&self) -> Self::Id
  5256. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::xdp::XdpLink
  5257. pub type aya::programs::xdp::XdpLink::Error = aya::programs::links::LinkError
  5258. pub fn aya::programs::xdp::XdpLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  5259. impl core::convert::TryFrom<aya::programs::xdp::XdpLink> for aya::programs::links::FdLink
  5260. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  5261. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::xdp::XdpLink) -> core::result::Result<Self, Self::Error>
  5262. impl core::fmt::Debug for aya::programs::xdp::XdpLink
  5263. pub fn aya::programs::xdp::XdpLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5264. impl core::ops::drop::Drop for aya::programs::xdp::XdpLink
  5265. pub fn aya::programs::xdp::XdpLink::drop(&mut self)
  5266. impl core::marker::Send for aya::programs::xdp::XdpLink
  5267. impl core::marker::Sync for aya::programs::xdp::XdpLink
  5268. impl core::marker::Unpin for aya::programs::xdp::XdpLink
  5269. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::xdp::XdpLink
  5270. impl core::panic::unwind_safe::UnwindSafe for aya::programs::xdp::XdpLink
  5271. impl<T, U> core::convert::Into<U> for aya::programs::xdp::XdpLink where U: core::convert::From<T>
  5272. pub fn aya::programs::xdp::XdpLink::into(self) -> U
  5273. impl<T, U> core::convert::TryFrom<U> for aya::programs::xdp::XdpLink where U: core::convert::Into<T>
  5274. pub type aya::programs::xdp::XdpLink::Error = core::convert::Infallible
  5275. pub fn aya::programs::xdp::XdpLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5276. impl<T, U> core::convert::TryInto<U> for aya::programs::xdp::XdpLink where U: core::convert::TryFrom<T>
  5277. pub type aya::programs::xdp::XdpLink::Error = <U as core::convert::TryFrom<T>>::Error
  5278. pub fn aya::programs::xdp::XdpLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5279. impl<T> core::any::Any for aya::programs::xdp::XdpLink where T: 'static + core::marker::Sized
  5280. pub fn aya::programs::xdp::XdpLink::type_id(&self) -> core::any::TypeId
  5281. impl<T> core::borrow::Borrow<T> for aya::programs::xdp::XdpLink where T: core::marker::Sized
  5282. pub fn aya::programs::xdp::XdpLink::borrow(&self) -> &T
  5283. impl<T> core::borrow::BorrowMut<T> for aya::programs::xdp::XdpLink where T: core::marker::Sized
  5284. pub fn aya::programs::xdp::XdpLink::borrow_mut(&mut self) -> &mut T
  5285. impl<T> core::convert::From<T> for aya::programs::xdp::XdpLink
  5286. pub fn aya::programs::xdp::XdpLink::from(t: T) -> T
  5287. pub struct aya::programs::xdp::XdpLinkId(_)
  5288. impl core::cmp::Eq for aya::programs::xdp::XdpLinkId
  5289. impl core::cmp::PartialEq for aya::programs::xdp::XdpLinkId
  5290. pub fn aya::programs::xdp::XdpLinkId::eq(&self, other: &aya::programs::xdp::XdpLinkId) -> bool
  5291. impl core::fmt::Debug for aya::programs::xdp::XdpLinkId
  5292. pub fn aya::programs::xdp::XdpLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5293. impl core::hash::Hash for aya::programs::xdp::XdpLinkId
  5294. pub fn aya::programs::xdp::XdpLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  5295. impl core::marker::StructuralPartialEq for aya::programs::xdp::XdpLinkId
  5296. impl core::marker::Send for aya::programs::xdp::XdpLinkId
  5297. impl core::marker::Sync for aya::programs::xdp::XdpLinkId
  5298. impl core::marker::Unpin for aya::programs::xdp::XdpLinkId
  5299. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::xdp::XdpLinkId
  5300. impl core::panic::unwind_safe::UnwindSafe for aya::programs::xdp::XdpLinkId
  5301. impl<T, U> core::convert::Into<U> for aya::programs::xdp::XdpLinkId where U: core::convert::From<T>
  5302. pub fn aya::programs::xdp::XdpLinkId::into(self) -> U
  5303. impl<T, U> core::convert::TryFrom<U> for aya::programs::xdp::XdpLinkId where U: core::convert::Into<T>
  5304. pub type aya::programs::xdp::XdpLinkId::Error = core::convert::Infallible
  5305. pub fn aya::programs::xdp::XdpLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5306. impl<T, U> core::convert::TryInto<U> for aya::programs::xdp::XdpLinkId where U: core::convert::TryFrom<T>
  5307. pub type aya::programs::xdp::XdpLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  5308. pub fn aya::programs::xdp::XdpLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5309. impl<T> core::any::Any for aya::programs::xdp::XdpLinkId where T: 'static + core::marker::Sized
  5310. pub fn aya::programs::xdp::XdpLinkId::type_id(&self) -> core::any::TypeId
  5311. impl<T> core::borrow::Borrow<T> for aya::programs::xdp::XdpLinkId where T: core::marker::Sized
  5312. pub fn aya::programs::xdp::XdpLinkId::borrow(&self) -> &T
  5313. impl<T> core::borrow::BorrowMut<T> for aya::programs::xdp::XdpLinkId where T: core::marker::Sized
  5314. pub fn aya::programs::xdp::XdpLinkId::borrow_mut(&mut self) -> &mut T
  5315. impl<T> core::convert::From<T> for aya::programs::xdp::XdpLinkId
  5316. pub fn aya::programs::xdp::XdpLinkId::from(t: T) -> T
  5317. pub enum aya::programs::CgroupSkbAttachType
  5318. pub aya::programs::CgroupSkbAttachType::Egress
  5319. pub aya::programs::CgroupSkbAttachType::Ingress
  5320. impl core::clone::Clone for aya::programs::cgroup_skb::CgroupSkbAttachType
  5321. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::clone(&self) -> aya::programs::cgroup_skb::CgroupSkbAttachType
  5322. impl core::fmt::Debug for aya::programs::cgroup_skb::CgroupSkbAttachType
  5323. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5324. impl core::marker::Copy for aya::programs::cgroup_skb::CgroupSkbAttachType
  5325. impl core::marker::Send for aya::programs::cgroup_skb::CgroupSkbAttachType
  5326. impl core::marker::Sync for aya::programs::cgroup_skb::CgroupSkbAttachType
  5327. impl core::marker::Unpin for aya::programs::cgroup_skb::CgroupSkbAttachType
  5328. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_skb::CgroupSkbAttachType
  5329. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_skb::CgroupSkbAttachType
  5330. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_skb::CgroupSkbAttachType where U: core::convert::From<T>
  5331. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::into(self) -> U
  5332. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_skb::CgroupSkbAttachType where U: core::convert::Into<T>
  5333. pub type aya::programs::cgroup_skb::CgroupSkbAttachType::Error = core::convert::Infallible
  5334. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5335. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_skb::CgroupSkbAttachType where U: core::convert::TryFrom<T>
  5336. pub type aya::programs::cgroup_skb::CgroupSkbAttachType::Error = <U as core::convert::TryFrom<T>>::Error
  5337. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5338. impl<T> alloc::borrow::ToOwned for aya::programs::cgroup_skb::CgroupSkbAttachType where T: core::clone::Clone
  5339. pub type aya::programs::cgroup_skb::CgroupSkbAttachType::Owned = T
  5340. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::clone_into(&self, target: &mut T)
  5341. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::to_owned(&self) -> T
  5342. impl<T> core::any::Any for aya::programs::cgroup_skb::CgroupSkbAttachType where T: 'static + core::marker::Sized
  5343. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::type_id(&self) -> core::any::TypeId
  5344. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_skb::CgroupSkbAttachType where T: core::marker::Sized
  5345. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::borrow(&self) -> &T
  5346. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_skb::CgroupSkbAttachType where T: core::marker::Sized
  5347. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::borrow_mut(&mut self) -> &mut T
  5348. impl<T> core::convert::From<T> for aya::programs::cgroup_skb::CgroupSkbAttachType
  5349. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::from(t: T) -> T
  5350. pub enum aya::programs::ExtensionError
  5351. pub aya::programs::ExtensionError::NoBTF
  5352. impl core::convert::From<aya::programs::extension::ExtensionError> for aya::programs::ProgramError
  5353. pub fn aya::programs::ProgramError::from(source: aya::programs::extension::ExtensionError) -> Self
  5354. impl core::error::Error for aya::programs::extension::ExtensionError
  5355. impl core::fmt::Debug for aya::programs::extension::ExtensionError
  5356. pub fn aya::programs::extension::ExtensionError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5357. impl core::fmt::Display for aya::programs::extension::ExtensionError
  5358. pub fn aya::programs::extension::ExtensionError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5359. impl core::marker::Send for aya::programs::extension::ExtensionError
  5360. impl core::marker::Sync for aya::programs::extension::ExtensionError
  5361. impl core::marker::Unpin for aya::programs::extension::ExtensionError
  5362. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::extension::ExtensionError
  5363. impl core::panic::unwind_safe::UnwindSafe for aya::programs::extension::ExtensionError
  5364. impl<T, U> core::convert::Into<U> for aya::programs::extension::ExtensionError where U: core::convert::From<T>
  5365. pub fn aya::programs::extension::ExtensionError::into(self) -> U
  5366. impl<T, U> core::convert::TryFrom<U> for aya::programs::extension::ExtensionError where U: core::convert::Into<T>
  5367. pub type aya::programs::extension::ExtensionError::Error = core::convert::Infallible
  5368. pub fn aya::programs::extension::ExtensionError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5369. impl<T, U> core::convert::TryInto<U> for aya::programs::extension::ExtensionError where U: core::convert::TryFrom<T>
  5370. pub type aya::programs::extension::ExtensionError::Error = <U as core::convert::TryFrom<T>>::Error
  5371. pub fn aya::programs::extension::ExtensionError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5372. impl<T> alloc::string::ToString for aya::programs::extension::ExtensionError where T: core::fmt::Display + core::marker::Sized
  5373. pub fn aya::programs::extension::ExtensionError::to_string(&self) -> alloc::string::String
  5374. impl<T> core::any::Any for aya::programs::extension::ExtensionError where T: 'static + core::marker::Sized
  5375. pub fn aya::programs::extension::ExtensionError::type_id(&self) -> core::any::TypeId
  5376. impl<T> core::borrow::Borrow<T> for aya::programs::extension::ExtensionError where T: core::marker::Sized
  5377. pub fn aya::programs::extension::ExtensionError::borrow(&self) -> &T
  5378. impl<T> core::borrow::BorrowMut<T> for aya::programs::extension::ExtensionError where T: core::marker::Sized
  5379. pub fn aya::programs::extension::ExtensionError::borrow_mut(&mut self) -> &mut T
  5380. impl<T> core::convert::From<T> for aya::programs::extension::ExtensionError
  5381. pub fn aya::programs::extension::ExtensionError::from(t: T) -> T
  5382. pub enum aya::programs::KProbeError
  5383. pub aya::programs::KProbeError::FileError
  5384. pub aya::programs::KProbeError::FileError::filename: std::path::PathBuf
  5385. pub aya::programs::KProbeError::FileError::io_error: std::io::error::Error
  5386. impl core::convert::From<aya::programs::kprobe::KProbeError> for aya::programs::ProgramError
  5387. pub fn aya::programs::ProgramError::from(source: aya::programs::kprobe::KProbeError) -> Self
  5388. impl core::error::Error for aya::programs::kprobe::KProbeError
  5389. pub fn aya::programs::kprobe::KProbeError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  5390. impl core::fmt::Debug for aya::programs::kprobe::KProbeError
  5391. pub fn aya::programs::kprobe::KProbeError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5392. impl core::fmt::Display for aya::programs::kprobe::KProbeError
  5393. pub fn aya::programs::kprobe::KProbeError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5394. impl core::marker::Send for aya::programs::kprobe::KProbeError
  5395. impl core::marker::Sync for aya::programs::kprobe::KProbeError
  5396. impl core::marker::Unpin for aya::programs::kprobe::KProbeError
  5397. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::kprobe::KProbeError
  5398. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::kprobe::KProbeError
  5399. impl<T, U> core::convert::Into<U> for aya::programs::kprobe::KProbeError where U: core::convert::From<T>
  5400. pub fn aya::programs::kprobe::KProbeError::into(self) -> U
  5401. impl<T, U> core::convert::TryFrom<U> for aya::programs::kprobe::KProbeError where U: core::convert::Into<T>
  5402. pub type aya::programs::kprobe::KProbeError::Error = core::convert::Infallible
  5403. pub fn aya::programs::kprobe::KProbeError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5404. impl<T, U> core::convert::TryInto<U> for aya::programs::kprobe::KProbeError where U: core::convert::TryFrom<T>
  5405. pub type aya::programs::kprobe::KProbeError::Error = <U as core::convert::TryFrom<T>>::Error
  5406. pub fn aya::programs::kprobe::KProbeError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5407. impl<T> alloc::string::ToString for aya::programs::kprobe::KProbeError where T: core::fmt::Display + core::marker::Sized
  5408. pub fn aya::programs::kprobe::KProbeError::to_string(&self) -> alloc::string::String
  5409. impl<T> core::any::Any for aya::programs::kprobe::KProbeError where T: 'static + core::marker::Sized
  5410. pub fn aya::programs::kprobe::KProbeError::type_id(&self) -> core::any::TypeId
  5411. impl<T> core::borrow::Borrow<T> for aya::programs::kprobe::KProbeError where T: core::marker::Sized
  5412. pub fn aya::programs::kprobe::KProbeError::borrow(&self) -> &T
  5413. impl<T> core::borrow::BorrowMut<T> for aya::programs::kprobe::KProbeError where T: core::marker::Sized
  5414. pub fn aya::programs::kprobe::KProbeError::borrow_mut(&mut self) -> &mut T
  5415. impl<T> core::convert::From<T> for aya::programs::kprobe::KProbeError
  5416. pub fn aya::programs::kprobe::KProbeError::from(t: T) -> T
  5417. pub enum aya::programs::PerfEventScope
  5418. pub aya::programs::PerfEventScope::AllProcessesOneCpu
  5419. pub aya::programs::PerfEventScope::AllProcessesOneCpu::cpu: u32
  5420. pub aya::programs::PerfEventScope::CallingProcessAnyCpu
  5421. pub aya::programs::PerfEventScope::CallingProcessOneCpu
  5422. pub aya::programs::PerfEventScope::CallingProcessOneCpu::cpu: u32
  5423. pub aya::programs::PerfEventScope::OneProcessAnyCpu
  5424. pub aya::programs::PerfEventScope::OneProcessAnyCpu::pid: u32
  5425. pub aya::programs::PerfEventScope::OneProcessOneCpu
  5426. pub aya::programs::PerfEventScope::OneProcessOneCpu::cpu: u32
  5427. pub aya::programs::PerfEventScope::OneProcessOneCpu::pid: u32
  5428. impl core::clone::Clone for aya::programs::perf_event::PerfEventScope
  5429. pub fn aya::programs::perf_event::PerfEventScope::clone(&self) -> aya::programs::perf_event::PerfEventScope
  5430. impl core::fmt::Debug for aya::programs::perf_event::PerfEventScope
  5431. pub fn aya::programs::perf_event::PerfEventScope::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5432. impl core::marker::Send for aya::programs::perf_event::PerfEventScope
  5433. impl core::marker::Sync for aya::programs::perf_event::PerfEventScope
  5434. impl core::marker::Unpin for aya::programs::perf_event::PerfEventScope
  5435. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::PerfEventScope
  5436. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::PerfEventScope
  5437. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::PerfEventScope where U: core::convert::From<T>
  5438. pub fn aya::programs::perf_event::PerfEventScope::into(self) -> U
  5439. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::PerfEventScope where U: core::convert::Into<T>
  5440. pub type aya::programs::perf_event::PerfEventScope::Error = core::convert::Infallible
  5441. pub fn aya::programs::perf_event::PerfEventScope::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5442. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_event::PerfEventScope where U: core::convert::TryFrom<T>
  5443. pub type aya::programs::perf_event::PerfEventScope::Error = <U as core::convert::TryFrom<T>>::Error
  5444. pub fn aya::programs::perf_event::PerfEventScope::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5445. impl<T> alloc::borrow::ToOwned for aya::programs::perf_event::PerfEventScope where T: core::clone::Clone
  5446. pub type aya::programs::perf_event::PerfEventScope::Owned = T
  5447. pub fn aya::programs::perf_event::PerfEventScope::clone_into(&self, target: &mut T)
  5448. pub fn aya::programs::perf_event::PerfEventScope::to_owned(&self) -> T
  5449. impl<T> core::any::Any for aya::programs::perf_event::PerfEventScope where T: 'static + core::marker::Sized
  5450. pub fn aya::programs::perf_event::PerfEventScope::type_id(&self) -> core::any::TypeId
  5451. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::PerfEventScope where T: core::marker::Sized
  5452. pub fn aya::programs::perf_event::PerfEventScope::borrow(&self) -> &T
  5453. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::PerfEventScope where T: core::marker::Sized
  5454. pub fn aya::programs::perf_event::PerfEventScope::borrow_mut(&mut self) -> &mut T
  5455. impl<T> core::convert::From<T> for aya::programs::perf_event::PerfEventScope
  5456. pub fn aya::programs::perf_event::PerfEventScope::from(t: T) -> T
  5457. #[repr(u32)] pub enum aya::programs::PerfTypeId
  5458. pub aya::programs::PerfTypeId::Breakpoint = 5
  5459. pub aya::programs::PerfTypeId::Hardware = 0
  5460. pub aya::programs::PerfTypeId::HwCache = 3
  5461. pub aya::programs::PerfTypeId::Raw = 4
  5462. pub aya::programs::PerfTypeId::Software = 1
  5463. pub aya::programs::PerfTypeId::TracePoint = 2
  5464. impl core::clone::Clone for aya::programs::perf_event::PerfTypeId
  5465. pub fn aya::programs::perf_event::PerfTypeId::clone(&self) -> aya::programs::perf_event::PerfTypeId
  5466. impl core::fmt::Debug for aya::programs::perf_event::PerfTypeId
  5467. pub fn aya::programs::perf_event::PerfTypeId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5468. impl core::marker::Send for aya::programs::perf_event::PerfTypeId
  5469. impl core::marker::Sync for aya::programs::perf_event::PerfTypeId
  5470. impl core::marker::Unpin for aya::programs::perf_event::PerfTypeId
  5471. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::PerfTypeId
  5472. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::PerfTypeId
  5473. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::PerfTypeId where U: core::convert::From<T>
  5474. pub fn aya::programs::perf_event::PerfTypeId::into(self) -> U
  5475. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::PerfTypeId where U: core::convert::Into<T>
  5476. pub type aya::programs::perf_event::PerfTypeId::Error = core::convert::Infallible
  5477. pub fn aya::programs::perf_event::PerfTypeId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5478. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_event::PerfTypeId where U: core::convert::TryFrom<T>
  5479. pub type aya::programs::perf_event::PerfTypeId::Error = <U as core::convert::TryFrom<T>>::Error
  5480. pub fn aya::programs::perf_event::PerfTypeId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5481. impl<T> alloc::borrow::ToOwned for aya::programs::perf_event::PerfTypeId where T: core::clone::Clone
  5482. pub type aya::programs::perf_event::PerfTypeId::Owned = T
  5483. pub fn aya::programs::perf_event::PerfTypeId::clone_into(&self, target: &mut T)
  5484. pub fn aya::programs::perf_event::PerfTypeId::to_owned(&self) -> T
  5485. impl<T> core::any::Any for aya::programs::perf_event::PerfTypeId where T: 'static + core::marker::Sized
  5486. pub fn aya::programs::perf_event::PerfTypeId::type_id(&self) -> core::any::TypeId
  5487. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::PerfTypeId where T: core::marker::Sized
  5488. pub fn aya::programs::perf_event::PerfTypeId::borrow(&self) -> &T
  5489. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::PerfTypeId where T: core::marker::Sized
  5490. pub fn aya::programs::perf_event::PerfTypeId::borrow_mut(&mut self) -> &mut T
  5491. impl<T> core::convert::From<T> for aya::programs::perf_event::PerfTypeId
  5492. pub fn aya::programs::perf_event::PerfTypeId::from(t: T) -> T
  5493. pub enum aya::programs::ProbeKind
  5494. pub aya::programs::ProbeKind::KProbe
  5495. pub aya::programs::ProbeKind::KRetProbe
  5496. pub aya::programs::ProbeKind::UProbe
  5497. pub aya::programs::ProbeKind::URetProbe
  5498. impl core::clone::Clone for aya::programs::ProbeKind
  5499. pub fn aya::programs::ProbeKind::clone(&self) -> aya::programs::ProbeKind
  5500. impl core::fmt::Debug for aya::programs::ProbeKind
  5501. pub fn aya::programs::ProbeKind::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5502. impl core::marker::Copy for aya::programs::ProbeKind
  5503. impl core::marker::Send for aya::programs::ProbeKind
  5504. impl core::marker::Sync for aya::programs::ProbeKind
  5505. impl core::marker::Unpin for aya::programs::ProbeKind
  5506. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::ProbeKind
  5507. impl core::panic::unwind_safe::UnwindSafe for aya::programs::ProbeKind
  5508. impl<T, U> core::convert::Into<U> for aya::programs::ProbeKind where U: core::convert::From<T>
  5509. pub fn aya::programs::ProbeKind::into(self) -> U
  5510. impl<T, U> core::convert::TryFrom<U> for aya::programs::ProbeKind where U: core::convert::Into<T>
  5511. pub type aya::programs::ProbeKind::Error = core::convert::Infallible
  5512. pub fn aya::programs::ProbeKind::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5513. impl<T, U> core::convert::TryInto<U> for aya::programs::ProbeKind where U: core::convert::TryFrom<T>
  5514. pub type aya::programs::ProbeKind::Error = <U as core::convert::TryFrom<T>>::Error
  5515. pub fn aya::programs::ProbeKind::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5516. impl<T> alloc::borrow::ToOwned for aya::programs::ProbeKind where T: core::clone::Clone
  5517. pub type aya::programs::ProbeKind::Owned = T
  5518. pub fn aya::programs::ProbeKind::clone_into(&self, target: &mut T)
  5519. pub fn aya::programs::ProbeKind::to_owned(&self) -> T
  5520. impl<T> core::any::Any for aya::programs::ProbeKind where T: 'static + core::marker::Sized
  5521. pub fn aya::programs::ProbeKind::type_id(&self) -> core::any::TypeId
  5522. impl<T> core::borrow::Borrow<T> for aya::programs::ProbeKind where T: core::marker::Sized
  5523. pub fn aya::programs::ProbeKind::borrow(&self) -> &T
  5524. impl<T> core::borrow::BorrowMut<T> for aya::programs::ProbeKind where T: core::marker::Sized
  5525. pub fn aya::programs::ProbeKind::borrow_mut(&mut self) -> &mut T
  5526. impl<T> core::convert::From<T> for aya::programs::ProbeKind
  5527. pub fn aya::programs::ProbeKind::from(t: T) -> T
  5528. pub enum aya::programs::Program
  5529. pub aya::programs::Program::BtfTracePoint(aya::programs::tp_btf::BtfTracePoint)
  5530. pub aya::programs::Program::CgroupDevice(aya::programs::cgroup_device::CgroupDevice)
  5531. pub aya::programs::Program::CgroupSkb(aya::programs::cgroup_skb::CgroupSkb)
  5532. pub aya::programs::Program::CgroupSock(aya::programs::cgroup_sock::CgroupSock)
  5533. pub aya::programs::Program::CgroupSockAddr(aya::programs::cgroup_sock_addr::CgroupSockAddr)
  5534. pub aya::programs::Program::CgroupSockopt(aya::programs::cgroup_sockopt::CgroupSockopt)
  5535. pub aya::programs::Program::CgroupSysctl(aya::programs::cgroup_sysctl::CgroupSysctl)
  5536. pub aya::programs::Program::Extension(aya::programs::extension::Extension)
  5537. pub aya::programs::Program::FEntry(aya::programs::fentry::FEntry)
  5538. pub aya::programs::Program::FExit(aya::programs::fexit::FExit)
  5539. pub aya::programs::Program::KProbe(aya::programs::kprobe::KProbe)
  5540. pub aya::programs::Program::LircMode2(aya::programs::lirc_mode2::LircMode2)
  5541. pub aya::programs::Program::Lsm(aya::programs::lsm::Lsm)
  5542. pub aya::programs::Program::PerfEvent(aya::programs::perf_event::PerfEvent)
  5543. pub aya::programs::Program::RawTracePoint(aya::programs::RawTracePoint)
  5544. pub aya::programs::Program::SchedClassifier(aya::programs::tc::SchedClassifier)
  5545. pub aya::programs::Program::SkLookup(aya::programs::SkLookup)
  5546. pub aya::programs::Program::SkMsg(aya::programs::SkMsg)
  5547. pub aya::programs::Program::SkSkb(aya::programs::SkSkb)
  5548. pub aya::programs::Program::SockOps(aya::programs::SockOps)
  5549. pub aya::programs::Program::SocketFilter(aya::programs::SocketFilter)
  5550. pub aya::programs::Program::TracePoint(aya::programs::trace_point::TracePoint)
  5551. pub aya::programs::Program::UProbe(aya::programs::uprobe::UProbe)
  5552. pub aya::programs::Program::Xdp(aya::programs::xdp::Xdp)
  5553. impl aya::programs::Program
  5554. pub fn aya::programs::Program::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  5555. pub fn aya::programs::Program::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  5556. pub fn aya::programs::Program::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  5557. pub fn aya::programs::Program::prog_type(&self) -> aya_obj::generated::linux_bindings_x86_64::bpf_prog_type
  5558. pub fn aya::programs::Program::unload(self) -> core::result::Result<(), aya::programs::ProgramError>
  5559. impl core::fmt::Debug for aya::programs::Program
  5560. pub fn aya::programs::Program::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5561. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::RawTracePoint
  5562. pub type &'a aya::programs::RawTracePoint::Error = aya::programs::ProgramError
  5563. pub fn &'a aya::programs::RawTracePoint::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::RawTracePoint, aya::programs::ProgramError>
  5564. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::SkLookup
  5565. pub type &'a aya::programs::SkLookup::Error = aya::programs::ProgramError
  5566. pub fn &'a aya::programs::SkLookup::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::SkLookup, aya::programs::ProgramError>
  5567. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::SkMsg
  5568. pub type &'a aya::programs::SkMsg::Error = aya::programs::ProgramError
  5569. pub fn &'a aya::programs::SkMsg::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::SkMsg, aya::programs::ProgramError>
  5570. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::SkSkb
  5571. pub type &'a aya::programs::SkSkb::Error = aya::programs::ProgramError
  5572. pub fn &'a aya::programs::SkSkb::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::SkSkb, aya::programs::ProgramError>
  5573. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::SockOps
  5574. pub type &'a aya::programs::SockOps::Error = aya::programs::ProgramError
  5575. pub fn &'a aya::programs::SockOps::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::SockOps, aya::programs::ProgramError>
  5576. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::SocketFilter
  5577. pub type &'a aya::programs::SocketFilter::Error = aya::programs::ProgramError
  5578. pub fn &'a aya::programs::SocketFilter::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::SocketFilter, aya::programs::ProgramError>
  5579. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_device::CgroupDevice
  5580. pub type &'a aya::programs::cgroup_device::CgroupDevice::Error = aya::programs::ProgramError
  5581. pub fn &'a aya::programs::cgroup_device::CgroupDevice::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_device::CgroupDevice, aya::programs::ProgramError>
  5582. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_skb::CgroupSkb
  5583. pub type &'a aya::programs::cgroup_skb::CgroupSkb::Error = aya::programs::ProgramError
  5584. pub fn &'a aya::programs::cgroup_skb::CgroupSkb::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_skb::CgroupSkb, aya::programs::ProgramError>
  5585. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sock::CgroupSock
  5586. pub type &'a aya::programs::cgroup_sock::CgroupSock::Error = aya::programs::ProgramError
  5587. pub fn &'a aya::programs::cgroup_sock::CgroupSock::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sock::CgroupSock, aya::programs::ProgramError>
  5588. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sock_addr::CgroupSockAddr
  5589. pub type &'a aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = aya::programs::ProgramError
  5590. pub fn &'a aya::programs::cgroup_sock_addr::CgroupSockAddr::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sock_addr::CgroupSockAddr, aya::programs::ProgramError>
  5591. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sockopt::CgroupSockopt
  5592. pub type &'a aya::programs::cgroup_sockopt::CgroupSockopt::Error = aya::programs::ProgramError
  5593. pub fn &'a aya::programs::cgroup_sockopt::CgroupSockopt::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sockopt::CgroupSockopt, aya::programs::ProgramError>
  5594. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sysctl::CgroupSysctl
  5595. pub type &'a aya::programs::cgroup_sysctl::CgroupSysctl::Error = aya::programs::ProgramError
  5596. pub fn &'a aya::programs::cgroup_sysctl::CgroupSysctl::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sysctl::CgroupSysctl, aya::programs::ProgramError>
  5597. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::extension::Extension
  5598. pub type &'a aya::programs::extension::Extension::Error = aya::programs::ProgramError
  5599. pub fn &'a aya::programs::extension::Extension::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::extension::Extension, aya::programs::ProgramError>
  5600. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::fentry::FEntry
  5601. pub type &'a aya::programs::fentry::FEntry::Error = aya::programs::ProgramError
  5602. pub fn &'a aya::programs::fentry::FEntry::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::fentry::FEntry, aya::programs::ProgramError>
  5603. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::fexit::FExit
  5604. pub type &'a aya::programs::fexit::FExit::Error = aya::programs::ProgramError
  5605. pub fn &'a aya::programs::fexit::FExit::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::fexit::FExit, aya::programs::ProgramError>
  5606. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::kprobe::KProbe
  5607. pub type &'a aya::programs::kprobe::KProbe::Error = aya::programs::ProgramError
  5608. pub fn &'a aya::programs::kprobe::KProbe::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::kprobe::KProbe, aya::programs::ProgramError>
  5609. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::lirc_mode2::LircMode2
  5610. pub type &'a aya::programs::lirc_mode2::LircMode2::Error = aya::programs::ProgramError
  5611. pub fn &'a aya::programs::lirc_mode2::LircMode2::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::lirc_mode2::LircMode2, aya::programs::ProgramError>
  5612. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::lsm::Lsm
  5613. pub type &'a aya::programs::lsm::Lsm::Error = aya::programs::ProgramError
  5614. pub fn &'a aya::programs::lsm::Lsm::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::lsm::Lsm, aya::programs::ProgramError>
  5615. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::perf_event::PerfEvent
  5616. pub type &'a aya::programs::perf_event::PerfEvent::Error = aya::programs::ProgramError
  5617. pub fn &'a aya::programs::perf_event::PerfEvent::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::perf_event::PerfEvent, aya::programs::ProgramError>
  5618. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::tc::SchedClassifier
  5619. pub type &'a aya::programs::tc::SchedClassifier::Error = aya::programs::ProgramError
  5620. pub fn &'a aya::programs::tc::SchedClassifier::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::tc::SchedClassifier, aya::programs::ProgramError>
  5621. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::tp_btf::BtfTracePoint
  5622. pub type &'a aya::programs::tp_btf::BtfTracePoint::Error = aya::programs::ProgramError
  5623. pub fn &'a aya::programs::tp_btf::BtfTracePoint::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::tp_btf::BtfTracePoint, aya::programs::ProgramError>
  5624. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::trace_point::TracePoint
  5625. pub type &'a aya::programs::trace_point::TracePoint::Error = aya::programs::ProgramError
  5626. pub fn &'a aya::programs::trace_point::TracePoint::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::trace_point::TracePoint, aya::programs::ProgramError>
  5627. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::uprobe::UProbe
  5628. pub type &'a aya::programs::uprobe::UProbe::Error = aya::programs::ProgramError
  5629. pub fn &'a aya::programs::uprobe::UProbe::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::uprobe::UProbe, aya::programs::ProgramError>
  5630. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::xdp::Xdp
  5631. pub type &'a aya::programs::xdp::Xdp::Error = aya::programs::ProgramError
  5632. pub fn &'a aya::programs::xdp::Xdp::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::xdp::Xdp, aya::programs::ProgramError>
  5633. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::RawTracePoint
  5634. pub type &'a mut aya::programs::RawTracePoint::Error = aya::programs::ProgramError
  5635. pub fn &'a mut aya::programs::RawTracePoint::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::RawTracePoint, aya::programs::ProgramError>
  5636. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::SkLookup
  5637. pub type &'a mut aya::programs::SkLookup::Error = aya::programs::ProgramError
  5638. pub fn &'a mut aya::programs::SkLookup::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::SkLookup, aya::programs::ProgramError>
  5639. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::SkMsg
  5640. pub type &'a mut aya::programs::SkMsg::Error = aya::programs::ProgramError
  5641. pub fn &'a mut aya::programs::SkMsg::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::SkMsg, aya::programs::ProgramError>
  5642. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::SkSkb
  5643. pub type &'a mut aya::programs::SkSkb::Error = aya::programs::ProgramError
  5644. pub fn &'a mut aya::programs::SkSkb::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::SkSkb, aya::programs::ProgramError>
  5645. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::SockOps
  5646. pub type &'a mut aya::programs::SockOps::Error = aya::programs::ProgramError
  5647. pub fn &'a mut aya::programs::SockOps::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::SockOps, aya::programs::ProgramError>
  5648. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::SocketFilter
  5649. pub type &'a mut aya::programs::SocketFilter::Error = aya::programs::ProgramError
  5650. pub fn &'a mut aya::programs::SocketFilter::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::SocketFilter, aya::programs::ProgramError>
  5651. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_device::CgroupDevice
  5652. pub type &'a mut aya::programs::cgroup_device::CgroupDevice::Error = aya::programs::ProgramError
  5653. pub fn &'a mut aya::programs::cgroup_device::CgroupDevice::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_device::CgroupDevice, aya::programs::ProgramError>
  5654. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_skb::CgroupSkb
  5655. pub type &'a mut aya::programs::cgroup_skb::CgroupSkb::Error = aya::programs::ProgramError
  5656. pub fn &'a mut aya::programs::cgroup_skb::CgroupSkb::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_skb::CgroupSkb, aya::programs::ProgramError>
  5657. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sock::CgroupSock
  5658. pub type &'a mut aya::programs::cgroup_sock::CgroupSock::Error = aya::programs::ProgramError
  5659. pub fn &'a mut aya::programs::cgroup_sock::CgroupSock::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sock::CgroupSock, aya::programs::ProgramError>
  5660. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr
  5661. pub type &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = aya::programs::ProgramError
  5662. pub fn &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr, aya::programs::ProgramError>
  5663. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sockopt::CgroupSockopt
  5664. pub type &'a mut aya::programs::cgroup_sockopt::CgroupSockopt::Error = aya::programs::ProgramError
  5665. pub fn &'a mut aya::programs::cgroup_sockopt::CgroupSockopt::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sockopt::CgroupSockopt, aya::programs::ProgramError>
  5666. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sysctl::CgroupSysctl
  5667. pub type &'a mut aya::programs::cgroup_sysctl::CgroupSysctl::Error = aya::programs::ProgramError
  5668. pub fn &'a mut aya::programs::cgroup_sysctl::CgroupSysctl::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sysctl::CgroupSysctl, aya::programs::ProgramError>
  5669. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::extension::Extension
  5670. pub type &'a mut aya::programs::extension::Extension::Error = aya::programs::ProgramError
  5671. pub fn &'a mut aya::programs::extension::Extension::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::extension::Extension, aya::programs::ProgramError>
  5672. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::fentry::FEntry
  5673. pub type &'a mut aya::programs::fentry::FEntry::Error = aya::programs::ProgramError
  5674. pub fn &'a mut aya::programs::fentry::FEntry::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::fentry::FEntry, aya::programs::ProgramError>
  5675. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::fexit::FExit
  5676. pub type &'a mut aya::programs::fexit::FExit::Error = aya::programs::ProgramError
  5677. pub fn &'a mut aya::programs::fexit::FExit::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::fexit::FExit, aya::programs::ProgramError>
  5678. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::kprobe::KProbe
  5679. pub type &'a mut aya::programs::kprobe::KProbe::Error = aya::programs::ProgramError
  5680. pub fn &'a mut aya::programs::kprobe::KProbe::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::kprobe::KProbe, aya::programs::ProgramError>
  5681. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::lirc_mode2::LircMode2
  5682. pub type &'a mut aya::programs::lirc_mode2::LircMode2::Error = aya::programs::ProgramError
  5683. pub fn &'a mut aya::programs::lirc_mode2::LircMode2::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::lirc_mode2::LircMode2, aya::programs::ProgramError>
  5684. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::lsm::Lsm
  5685. pub type &'a mut aya::programs::lsm::Lsm::Error = aya::programs::ProgramError
  5686. pub fn &'a mut aya::programs::lsm::Lsm::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::lsm::Lsm, aya::programs::ProgramError>
  5687. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::perf_event::PerfEvent
  5688. pub type &'a mut aya::programs::perf_event::PerfEvent::Error = aya::programs::ProgramError
  5689. pub fn &'a mut aya::programs::perf_event::PerfEvent::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::perf_event::PerfEvent, aya::programs::ProgramError>
  5690. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::tc::SchedClassifier
  5691. pub type &'a mut aya::programs::tc::SchedClassifier::Error = aya::programs::ProgramError
  5692. pub fn &'a mut aya::programs::tc::SchedClassifier::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::tc::SchedClassifier, aya::programs::ProgramError>
  5693. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::tp_btf::BtfTracePoint
  5694. pub type &'a mut aya::programs::tp_btf::BtfTracePoint::Error = aya::programs::ProgramError
  5695. pub fn &'a mut aya::programs::tp_btf::BtfTracePoint::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::tp_btf::BtfTracePoint, aya::programs::ProgramError>
  5696. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::trace_point::TracePoint
  5697. pub type &'a mut aya::programs::trace_point::TracePoint::Error = aya::programs::ProgramError
  5698. pub fn &'a mut aya::programs::trace_point::TracePoint::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::trace_point::TracePoint, aya::programs::ProgramError>
  5699. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::uprobe::UProbe
  5700. pub type &'a mut aya::programs::uprobe::UProbe::Error = aya::programs::ProgramError
  5701. pub fn &'a mut aya::programs::uprobe::UProbe::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::uprobe::UProbe, aya::programs::ProgramError>
  5702. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::xdp::Xdp
  5703. pub type &'a mut aya::programs::xdp::Xdp::Error = aya::programs::ProgramError
  5704. pub fn &'a mut aya::programs::xdp::Xdp::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::xdp::Xdp, aya::programs::ProgramError>
  5705. impl core::marker::Send for aya::programs::Program
  5706. impl core::marker::Sync for aya::programs::Program
  5707. impl core::marker::Unpin for aya::programs::Program
  5708. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::Program
  5709. impl core::panic::unwind_safe::UnwindSafe for aya::programs::Program
  5710. impl<T, U> core::convert::Into<U> for aya::programs::Program where U: core::convert::From<T>
  5711. pub fn aya::programs::Program::into(self) -> U
  5712. impl<T, U> core::convert::TryFrom<U> for aya::programs::Program where U: core::convert::Into<T>
  5713. pub type aya::programs::Program::Error = core::convert::Infallible
  5714. pub fn aya::programs::Program::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5715. impl<T, U> core::convert::TryInto<U> for aya::programs::Program where U: core::convert::TryFrom<T>
  5716. pub type aya::programs::Program::Error = <U as core::convert::TryFrom<T>>::Error
  5717. pub fn aya::programs::Program::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5718. impl<T> core::any::Any for aya::programs::Program where T: 'static + core::marker::Sized
  5719. pub fn aya::programs::Program::type_id(&self) -> core::any::TypeId
  5720. impl<T> core::borrow::Borrow<T> for aya::programs::Program where T: core::marker::Sized
  5721. pub fn aya::programs::Program::borrow(&self) -> &T
  5722. impl<T> core::borrow::BorrowMut<T> for aya::programs::Program where T: core::marker::Sized
  5723. pub fn aya::programs::Program::borrow_mut(&mut self) -> &mut T
  5724. impl<T> core::convert::From<T> for aya::programs::Program
  5725. pub fn aya::programs::Program::from(t: T) -> T
  5726. pub enum aya::programs::ProgramError
  5727. pub aya::programs::ProgramError::AlreadyAttached
  5728. pub aya::programs::ProgramError::AlreadyLoaded
  5729. pub aya::programs::ProgramError::Btf(aya_obj::btf::btf::BtfError)
  5730. pub aya::programs::ProgramError::ExtensionError(aya::programs::extension::ExtensionError)
  5731. pub aya::programs::ProgramError::IOError(std::io::error::Error)
  5732. pub aya::programs::ProgramError::InvalidName
  5733. pub aya::programs::ProgramError::InvalidName::name: alloc::string::String
  5734. pub aya::programs::ProgramError::KProbeError(aya::programs::kprobe::KProbeError)
  5735. pub aya::programs::ProgramError::LoadError
  5736. pub aya::programs::ProgramError::LoadError::io_error: std::io::error::Error
  5737. pub aya::programs::ProgramError::LoadError::verifier_log: aya_obj::VerifierLog
  5738. pub aya::programs::ProgramError::MapError(aya::maps::MapError)
  5739. pub aya::programs::ProgramError::NotAttached
  5740. pub aya::programs::ProgramError::NotLoaded
  5741. pub aya::programs::ProgramError::SocketFilterError(aya::programs::SocketFilterError)
  5742. pub aya::programs::ProgramError::SyscallError(crate::sys::SyscallError)
  5743. pub aya::programs::ProgramError::TcError(aya::programs::tc::TcError)
  5744. pub aya::programs::ProgramError::TracePointError(aya::programs::trace_point::TracePointError)
  5745. pub aya::programs::ProgramError::UProbeError(aya::programs::uprobe::UProbeError)
  5746. pub aya::programs::ProgramError::UnexpectedProgramType
  5747. pub aya::programs::ProgramError::UnknownInterface
  5748. pub aya::programs::ProgramError::UnknownInterface::name: alloc::string::String
  5749. pub aya::programs::ProgramError::XdpError(aya::programs::xdp::XdpError)
  5750. impl core::convert::From<aya::maps::MapError> for aya::programs::ProgramError
  5751. pub fn aya::programs::ProgramError::from(source: aya::maps::MapError) -> Self
  5752. impl core::convert::From<aya::programs::ProgramError> for aya::BpfError
  5753. pub fn aya::BpfError::from(source: aya::programs::ProgramError) -> Self
  5754. impl core::convert::From<aya::programs::SocketFilterError> for aya::programs::ProgramError
  5755. pub fn aya::programs::ProgramError::from(source: aya::programs::SocketFilterError) -> Self
  5756. impl core::convert::From<aya::programs::extension::ExtensionError> for aya::programs::ProgramError
  5757. pub fn aya::programs::ProgramError::from(source: aya::programs::extension::ExtensionError) -> Self
  5758. impl core::convert::From<aya::programs::kprobe::KProbeError> for aya::programs::ProgramError
  5759. pub fn aya::programs::ProgramError::from(source: aya::programs::kprobe::KProbeError) -> Self
  5760. impl core::convert::From<aya::programs::tc::TcError> for aya::programs::ProgramError
  5761. pub fn aya::programs::ProgramError::from(source: aya::programs::tc::TcError) -> Self
  5762. impl core::convert::From<aya::programs::trace_point::TracePointError> for aya::programs::ProgramError
  5763. pub fn aya::programs::ProgramError::from(source: aya::programs::trace_point::TracePointError) -> Self
  5764. impl core::convert::From<aya::programs::uprobe::UProbeError> for aya::programs::ProgramError
  5765. pub fn aya::programs::ProgramError::from(source: aya::programs::uprobe::UProbeError) -> Self
  5766. impl core::convert::From<aya::programs::xdp::XdpError> for aya::programs::ProgramError
  5767. pub fn aya::programs::ProgramError::from(source: aya::programs::xdp::XdpError) -> Self
  5768. impl core::convert::From<aya_obj::btf::btf::BtfError> for aya::programs::ProgramError
  5769. pub fn aya::programs::ProgramError::from(source: aya_obj::btf::btf::BtfError) -> Self
  5770. impl core::convert::From<std::io::error::Error> for aya::programs::ProgramError
  5771. pub fn aya::programs::ProgramError::from(source: std::io::error::Error) -> Self
  5772. impl core::error::Error for aya::programs::ProgramError
  5773. pub fn aya::programs::ProgramError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  5774. impl core::fmt::Debug for aya::programs::ProgramError
  5775. pub fn aya::programs::ProgramError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5776. impl core::fmt::Display for aya::programs::ProgramError
  5777. pub fn aya::programs::ProgramError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5778. impl core::marker::Send for aya::programs::ProgramError
  5779. impl core::marker::Sync for aya::programs::ProgramError
  5780. impl core::marker::Unpin for aya::programs::ProgramError
  5781. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::ProgramError
  5782. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::ProgramError
  5783. impl<T, U> core::convert::Into<U> for aya::programs::ProgramError where U: core::convert::From<T>
  5784. pub fn aya::programs::ProgramError::into(self) -> U
  5785. impl<T, U> core::convert::TryFrom<U> for aya::programs::ProgramError where U: core::convert::Into<T>
  5786. pub type aya::programs::ProgramError::Error = core::convert::Infallible
  5787. pub fn aya::programs::ProgramError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5788. impl<T, U> core::convert::TryInto<U> for aya::programs::ProgramError where U: core::convert::TryFrom<T>
  5789. pub type aya::programs::ProgramError::Error = <U as core::convert::TryFrom<T>>::Error
  5790. pub fn aya::programs::ProgramError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5791. impl<T> alloc::string::ToString for aya::programs::ProgramError where T: core::fmt::Display + core::marker::Sized
  5792. pub fn aya::programs::ProgramError::to_string(&self) -> alloc::string::String
  5793. impl<T> core::any::Any for aya::programs::ProgramError where T: 'static + core::marker::Sized
  5794. pub fn aya::programs::ProgramError::type_id(&self) -> core::any::TypeId
  5795. impl<T> core::borrow::Borrow<T> for aya::programs::ProgramError where T: core::marker::Sized
  5796. pub fn aya::programs::ProgramError::borrow(&self) -> &T
  5797. impl<T> core::borrow::BorrowMut<T> for aya::programs::ProgramError where T: core::marker::Sized
  5798. pub fn aya::programs::ProgramError::borrow_mut(&mut self) -> &mut T
  5799. impl<T> core::convert::From<T> for aya::programs::ProgramError
  5800. pub fn aya::programs::ProgramError::from(t: T) -> T
  5801. pub enum aya::programs::SamplePolicy
  5802. pub aya::programs::SamplePolicy::Frequency(u64)
  5803. pub aya::programs::SamplePolicy::Period(u64)
  5804. impl core::clone::Clone for aya::programs::perf_event::SamplePolicy
  5805. pub fn aya::programs::perf_event::SamplePolicy::clone(&self) -> aya::programs::perf_event::SamplePolicy
  5806. impl core::fmt::Debug for aya::programs::perf_event::SamplePolicy
  5807. pub fn aya::programs::perf_event::SamplePolicy::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5808. impl core::marker::Send for aya::programs::perf_event::SamplePolicy
  5809. impl core::marker::Sync for aya::programs::perf_event::SamplePolicy
  5810. impl core::marker::Unpin for aya::programs::perf_event::SamplePolicy
  5811. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::SamplePolicy
  5812. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::SamplePolicy
  5813. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::SamplePolicy where U: core::convert::From<T>
  5814. pub fn aya::programs::perf_event::SamplePolicy::into(self) -> U
  5815. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::SamplePolicy where U: core::convert::Into<T>
  5816. pub type aya::programs::perf_event::SamplePolicy::Error = core::convert::Infallible
  5817. pub fn aya::programs::perf_event::SamplePolicy::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5818. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_event::SamplePolicy where U: core::convert::TryFrom<T>
  5819. pub type aya::programs::perf_event::SamplePolicy::Error = <U as core::convert::TryFrom<T>>::Error
  5820. pub fn aya::programs::perf_event::SamplePolicy::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5821. impl<T> alloc::borrow::ToOwned for aya::programs::perf_event::SamplePolicy where T: core::clone::Clone
  5822. pub type aya::programs::perf_event::SamplePolicy::Owned = T
  5823. pub fn aya::programs::perf_event::SamplePolicy::clone_into(&self, target: &mut T)
  5824. pub fn aya::programs::perf_event::SamplePolicy::to_owned(&self) -> T
  5825. impl<T> core::any::Any for aya::programs::perf_event::SamplePolicy where T: 'static + core::marker::Sized
  5826. pub fn aya::programs::perf_event::SamplePolicy::type_id(&self) -> core::any::TypeId
  5827. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::SamplePolicy where T: core::marker::Sized
  5828. pub fn aya::programs::perf_event::SamplePolicy::borrow(&self) -> &T
  5829. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::SamplePolicy where T: core::marker::Sized
  5830. pub fn aya::programs::perf_event::SamplePolicy::borrow_mut(&mut self) -> &mut T
  5831. impl<T> core::convert::From<T> for aya::programs::perf_event::SamplePolicy
  5832. pub fn aya::programs::perf_event::SamplePolicy::from(t: T) -> T
  5833. pub enum aya::programs::SkSkbKind
  5834. pub aya::programs::SkSkbKind::StreamParser
  5835. pub aya::programs::SkSkbKind::StreamVerdict
  5836. impl core::clone::Clone for aya::programs::SkSkbKind
  5837. pub fn aya::programs::SkSkbKind::clone(&self) -> aya::programs::SkSkbKind
  5838. impl core::fmt::Debug for aya::programs::SkSkbKind
  5839. pub fn aya::programs::SkSkbKind::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5840. impl core::marker::Copy for aya::programs::SkSkbKind
  5841. impl core::marker::Send for aya::programs::SkSkbKind
  5842. impl core::marker::Sync for aya::programs::SkSkbKind
  5843. impl core::marker::Unpin for aya::programs::SkSkbKind
  5844. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::SkSkbKind
  5845. impl core::panic::unwind_safe::UnwindSafe for aya::programs::SkSkbKind
  5846. impl<T, U> core::convert::Into<U> for aya::programs::SkSkbKind where U: core::convert::From<T>
  5847. pub fn aya::programs::SkSkbKind::into(self) -> U
  5848. impl<T, U> core::convert::TryFrom<U> for aya::programs::SkSkbKind where U: core::convert::Into<T>
  5849. pub type aya::programs::SkSkbKind::Error = core::convert::Infallible
  5850. pub fn aya::programs::SkSkbKind::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5851. impl<T, U> core::convert::TryInto<U> for aya::programs::SkSkbKind where U: core::convert::TryFrom<T>
  5852. pub type aya::programs::SkSkbKind::Error = <U as core::convert::TryFrom<T>>::Error
  5853. pub fn aya::programs::SkSkbKind::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5854. impl<T> alloc::borrow::ToOwned for aya::programs::SkSkbKind where T: core::clone::Clone
  5855. pub type aya::programs::SkSkbKind::Owned = T
  5856. pub fn aya::programs::SkSkbKind::clone_into(&self, target: &mut T)
  5857. pub fn aya::programs::SkSkbKind::to_owned(&self) -> T
  5858. impl<T> core::any::Any for aya::programs::SkSkbKind where T: 'static + core::marker::Sized
  5859. pub fn aya::programs::SkSkbKind::type_id(&self) -> core::any::TypeId
  5860. impl<T> core::borrow::Borrow<T> for aya::programs::SkSkbKind where T: core::marker::Sized
  5861. pub fn aya::programs::SkSkbKind::borrow(&self) -> &T
  5862. impl<T> core::borrow::BorrowMut<T> for aya::programs::SkSkbKind where T: core::marker::Sized
  5863. pub fn aya::programs::SkSkbKind::borrow_mut(&mut self) -> &mut T
  5864. impl<T> core::convert::From<T> for aya::programs::SkSkbKind
  5865. pub fn aya::programs::SkSkbKind::from(t: T) -> T
  5866. pub enum aya::programs::SocketFilterError
  5867. pub aya::programs::SocketFilterError::SoAttachBpfError
  5868. pub aya::programs::SocketFilterError::SoAttachBpfError::io_error: std::io::error::Error
  5869. impl core::convert::From<aya::programs::SocketFilterError> for aya::programs::ProgramError
  5870. pub fn aya::programs::ProgramError::from(source: aya::programs::SocketFilterError) -> Self
  5871. impl core::error::Error for aya::programs::SocketFilterError
  5872. pub fn aya::programs::SocketFilterError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  5873. impl core::fmt::Debug for aya::programs::SocketFilterError
  5874. pub fn aya::programs::SocketFilterError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5875. impl core::fmt::Display for aya::programs::SocketFilterError
  5876. pub fn aya::programs::SocketFilterError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5877. impl core::marker::Send for aya::programs::SocketFilterError
  5878. impl core::marker::Sync for aya::programs::SocketFilterError
  5879. impl core::marker::Unpin for aya::programs::SocketFilterError
  5880. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::SocketFilterError
  5881. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::SocketFilterError
  5882. impl<T, U> core::convert::Into<U> for aya::programs::SocketFilterError where U: core::convert::From<T>
  5883. pub fn aya::programs::SocketFilterError::into(self) -> U
  5884. impl<T, U> core::convert::TryFrom<U> for aya::programs::SocketFilterError where U: core::convert::Into<T>
  5885. pub type aya::programs::SocketFilterError::Error = core::convert::Infallible
  5886. pub fn aya::programs::SocketFilterError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5887. impl<T, U> core::convert::TryInto<U> for aya::programs::SocketFilterError where U: core::convert::TryFrom<T>
  5888. pub type aya::programs::SocketFilterError::Error = <U as core::convert::TryFrom<T>>::Error
  5889. pub fn aya::programs::SocketFilterError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5890. impl<T> alloc::string::ToString for aya::programs::SocketFilterError where T: core::fmt::Display + core::marker::Sized
  5891. pub fn aya::programs::SocketFilterError::to_string(&self) -> alloc::string::String
  5892. impl<T> core::any::Any for aya::programs::SocketFilterError where T: 'static + core::marker::Sized
  5893. pub fn aya::programs::SocketFilterError::type_id(&self) -> core::any::TypeId
  5894. impl<T> core::borrow::Borrow<T> for aya::programs::SocketFilterError where T: core::marker::Sized
  5895. pub fn aya::programs::SocketFilterError::borrow(&self) -> &T
  5896. impl<T> core::borrow::BorrowMut<T> for aya::programs::SocketFilterError where T: core::marker::Sized
  5897. pub fn aya::programs::SocketFilterError::borrow_mut(&mut self) -> &mut T
  5898. impl<T> core::convert::From<T> for aya::programs::SocketFilterError
  5899. pub fn aya::programs::SocketFilterError::from(t: T) -> T
  5900. pub enum aya::programs::TcAttachType
  5901. pub aya::programs::TcAttachType::Custom(u32)
  5902. pub aya::programs::TcAttachType::Egress
  5903. pub aya::programs::TcAttachType::Ingress
  5904. impl core::clone::Clone for aya::programs::tc::TcAttachType
  5905. pub fn aya::programs::tc::TcAttachType::clone(&self) -> aya::programs::tc::TcAttachType
  5906. impl core::cmp::Eq for aya::programs::tc::TcAttachType
  5907. impl core::cmp::PartialEq for aya::programs::tc::TcAttachType
  5908. pub fn aya::programs::tc::TcAttachType::eq(&self, other: &aya::programs::tc::TcAttachType) -> bool
  5909. impl core::fmt::Debug for aya::programs::tc::TcAttachType
  5910. pub fn aya::programs::tc::TcAttachType::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5911. impl core::hash::Hash for aya::programs::tc::TcAttachType
  5912. pub fn aya::programs::tc::TcAttachType::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  5913. impl core::marker::Copy for aya::programs::tc::TcAttachType
  5914. impl core::marker::StructuralPartialEq for aya::programs::tc::TcAttachType
  5915. impl core::marker::Send for aya::programs::tc::TcAttachType
  5916. impl core::marker::Sync for aya::programs::tc::TcAttachType
  5917. impl core::marker::Unpin for aya::programs::tc::TcAttachType
  5918. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::TcAttachType
  5919. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tc::TcAttachType
  5920. impl<T, U> core::convert::Into<U> for aya::programs::tc::TcAttachType where U: core::convert::From<T>
  5921. pub fn aya::programs::tc::TcAttachType::into(self) -> U
  5922. impl<T, U> core::convert::TryFrom<U> for aya::programs::tc::TcAttachType where U: core::convert::Into<T>
  5923. pub type aya::programs::tc::TcAttachType::Error = core::convert::Infallible
  5924. pub fn aya::programs::tc::TcAttachType::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5925. impl<T, U> core::convert::TryInto<U> for aya::programs::tc::TcAttachType where U: core::convert::TryFrom<T>
  5926. pub type aya::programs::tc::TcAttachType::Error = <U as core::convert::TryFrom<T>>::Error
  5927. pub fn aya::programs::tc::TcAttachType::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5928. impl<T> alloc::borrow::ToOwned for aya::programs::tc::TcAttachType where T: core::clone::Clone
  5929. pub type aya::programs::tc::TcAttachType::Owned = T
  5930. pub fn aya::programs::tc::TcAttachType::clone_into(&self, target: &mut T)
  5931. pub fn aya::programs::tc::TcAttachType::to_owned(&self) -> T
  5932. impl<T> core::any::Any for aya::programs::tc::TcAttachType where T: 'static + core::marker::Sized
  5933. pub fn aya::programs::tc::TcAttachType::type_id(&self) -> core::any::TypeId
  5934. impl<T> core::borrow::Borrow<T> for aya::programs::tc::TcAttachType where T: core::marker::Sized
  5935. pub fn aya::programs::tc::TcAttachType::borrow(&self) -> &T
  5936. impl<T> core::borrow::BorrowMut<T> for aya::programs::tc::TcAttachType where T: core::marker::Sized
  5937. pub fn aya::programs::tc::TcAttachType::borrow_mut(&mut self) -> &mut T
  5938. impl<T> core::convert::From<T> for aya::programs::tc::TcAttachType
  5939. pub fn aya::programs::tc::TcAttachType::from(t: T) -> T
  5940. pub enum aya::programs::TcError
  5941. pub aya::programs::TcError::AlreadyAttached
  5942. pub aya::programs::TcError::NetlinkError
  5943. pub aya::programs::TcError::NetlinkError::io_error: std::io::error::Error
  5944. impl core::convert::From<aya::programs::tc::TcError> for aya::programs::ProgramError
  5945. pub fn aya::programs::ProgramError::from(source: aya::programs::tc::TcError) -> Self
  5946. impl core::error::Error for aya::programs::tc::TcError
  5947. pub fn aya::programs::tc::TcError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  5948. impl core::fmt::Debug for aya::programs::tc::TcError
  5949. pub fn aya::programs::tc::TcError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5950. impl core::fmt::Display for aya::programs::tc::TcError
  5951. pub fn aya::programs::tc::TcError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5952. impl core::marker::Send for aya::programs::tc::TcError
  5953. impl core::marker::Sync for aya::programs::tc::TcError
  5954. impl core::marker::Unpin for aya::programs::tc::TcError
  5955. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::TcError
  5956. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::tc::TcError
  5957. impl<T, U> core::convert::Into<U> for aya::programs::tc::TcError where U: core::convert::From<T>
  5958. pub fn aya::programs::tc::TcError::into(self) -> U
  5959. impl<T, U> core::convert::TryFrom<U> for aya::programs::tc::TcError where U: core::convert::Into<T>
  5960. pub type aya::programs::tc::TcError::Error = core::convert::Infallible
  5961. pub fn aya::programs::tc::TcError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5962. impl<T, U> core::convert::TryInto<U> for aya::programs::tc::TcError where U: core::convert::TryFrom<T>
  5963. pub type aya::programs::tc::TcError::Error = <U as core::convert::TryFrom<T>>::Error
  5964. pub fn aya::programs::tc::TcError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5965. impl<T> alloc::string::ToString for aya::programs::tc::TcError where T: core::fmt::Display + core::marker::Sized
  5966. pub fn aya::programs::tc::TcError::to_string(&self) -> alloc::string::String
  5967. impl<T> core::any::Any for aya::programs::tc::TcError where T: 'static + core::marker::Sized
  5968. pub fn aya::programs::tc::TcError::type_id(&self) -> core::any::TypeId
  5969. impl<T> core::borrow::Borrow<T> for aya::programs::tc::TcError where T: core::marker::Sized
  5970. pub fn aya::programs::tc::TcError::borrow(&self) -> &T
  5971. impl<T> core::borrow::BorrowMut<T> for aya::programs::tc::TcError where T: core::marker::Sized
  5972. pub fn aya::programs::tc::TcError::borrow_mut(&mut self) -> &mut T
  5973. impl<T> core::convert::From<T> for aya::programs::tc::TcError
  5974. pub fn aya::programs::tc::TcError::from(t: T) -> T
  5975. pub enum aya::programs::TracePointError
  5976. pub aya::programs::TracePointError::FileError
  5977. pub aya::programs::TracePointError::FileError::filename: alloc::string::String
  5978. pub aya::programs::TracePointError::FileError::io_error: std::io::error::Error
  5979. impl core::convert::From<aya::programs::trace_point::TracePointError> for aya::programs::ProgramError
  5980. pub fn aya::programs::ProgramError::from(source: aya::programs::trace_point::TracePointError) -> Self
  5981. impl core::error::Error for aya::programs::trace_point::TracePointError
  5982. pub fn aya::programs::trace_point::TracePointError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  5983. impl core::fmt::Debug for aya::programs::trace_point::TracePointError
  5984. pub fn aya::programs::trace_point::TracePointError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5985. impl core::fmt::Display for aya::programs::trace_point::TracePointError
  5986. pub fn aya::programs::trace_point::TracePointError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5987. impl core::marker::Send for aya::programs::trace_point::TracePointError
  5988. impl core::marker::Sync for aya::programs::trace_point::TracePointError
  5989. impl core::marker::Unpin for aya::programs::trace_point::TracePointError
  5990. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::trace_point::TracePointError
  5991. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::trace_point::TracePointError
  5992. impl<T, U> core::convert::Into<U> for aya::programs::trace_point::TracePointError where U: core::convert::From<T>
  5993. pub fn aya::programs::trace_point::TracePointError::into(self) -> U
  5994. impl<T, U> core::convert::TryFrom<U> for aya::programs::trace_point::TracePointError where U: core::convert::Into<T>
  5995. pub type aya::programs::trace_point::TracePointError::Error = core::convert::Infallible
  5996. pub fn aya::programs::trace_point::TracePointError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5997. impl<T, U> core::convert::TryInto<U> for aya::programs::trace_point::TracePointError where U: core::convert::TryFrom<T>
  5998. pub type aya::programs::trace_point::TracePointError::Error = <U as core::convert::TryFrom<T>>::Error
  5999. pub fn aya::programs::trace_point::TracePointError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6000. impl<T> alloc::string::ToString for aya::programs::trace_point::TracePointError where T: core::fmt::Display + core::marker::Sized
  6001. pub fn aya::programs::trace_point::TracePointError::to_string(&self) -> alloc::string::String
  6002. impl<T> core::any::Any for aya::programs::trace_point::TracePointError where T: 'static + core::marker::Sized
  6003. pub fn aya::programs::trace_point::TracePointError::type_id(&self) -> core::any::TypeId
  6004. impl<T> core::borrow::Borrow<T> for aya::programs::trace_point::TracePointError where T: core::marker::Sized
  6005. pub fn aya::programs::trace_point::TracePointError::borrow(&self) -> &T
  6006. impl<T> core::borrow::BorrowMut<T> for aya::programs::trace_point::TracePointError where T: core::marker::Sized
  6007. pub fn aya::programs::trace_point::TracePointError::borrow_mut(&mut self) -> &mut T
  6008. impl<T> core::convert::From<T> for aya::programs::trace_point::TracePointError
  6009. pub fn aya::programs::trace_point::TracePointError::from(t: T) -> T
  6010. pub enum aya::programs::UProbeError
  6011. pub aya::programs::UProbeError::FileError
  6012. pub aya::programs::UProbeError::FileError::filename: std::path::PathBuf
  6013. pub aya::programs::UProbeError::FileError::io_error: std::io::error::Error
  6014. pub aya::programs::UProbeError::InvalidLdSoCache
  6015. pub aya::programs::UProbeError::InvalidLdSoCache::io_error: alloc::sync::Arc<std::io::error::Error>
  6016. pub aya::programs::UProbeError::InvalidTarget
  6017. pub aya::programs::UProbeError::InvalidTarget::path: std::path::PathBuf
  6018. pub aya::programs::UProbeError::SymbolError
  6019. pub aya::programs::UProbeError::SymbolError::error: alloc::boxed::Box<(dyn core::error::Error + core::marker::Send + core::marker::Sync)>
  6020. pub aya::programs::UProbeError::SymbolError::symbol: alloc::string::String
  6021. impl core::convert::From<aya::programs::uprobe::UProbeError> for aya::programs::ProgramError
  6022. pub fn aya::programs::ProgramError::from(source: aya::programs::uprobe::UProbeError) -> Self
  6023. impl core::error::Error for aya::programs::uprobe::UProbeError
  6024. pub fn aya::programs::uprobe::UProbeError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  6025. impl core::fmt::Debug for aya::programs::uprobe::UProbeError
  6026. pub fn aya::programs::uprobe::UProbeError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6027. impl core::fmt::Display for aya::programs::uprobe::UProbeError
  6028. pub fn aya::programs::uprobe::UProbeError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6029. impl core::marker::Send for aya::programs::uprobe::UProbeError
  6030. impl core::marker::Sync for aya::programs::uprobe::UProbeError
  6031. impl core::marker::Unpin for aya::programs::uprobe::UProbeError
  6032. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::uprobe::UProbeError
  6033. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::uprobe::UProbeError
  6034. impl<T, U> core::convert::Into<U> for aya::programs::uprobe::UProbeError where U: core::convert::From<T>
  6035. pub fn aya::programs::uprobe::UProbeError::into(self) -> U
  6036. impl<T, U> core::convert::TryFrom<U> for aya::programs::uprobe::UProbeError where U: core::convert::Into<T>
  6037. pub type aya::programs::uprobe::UProbeError::Error = core::convert::Infallible
  6038. pub fn aya::programs::uprobe::UProbeError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6039. impl<T, U> core::convert::TryInto<U> for aya::programs::uprobe::UProbeError where U: core::convert::TryFrom<T>
  6040. pub type aya::programs::uprobe::UProbeError::Error = <U as core::convert::TryFrom<T>>::Error
  6041. pub fn aya::programs::uprobe::UProbeError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6042. impl<T> alloc::string::ToString for aya::programs::uprobe::UProbeError where T: core::fmt::Display + core::marker::Sized
  6043. pub fn aya::programs::uprobe::UProbeError::to_string(&self) -> alloc::string::String
  6044. impl<T> core::any::Any for aya::programs::uprobe::UProbeError where T: 'static + core::marker::Sized
  6045. pub fn aya::programs::uprobe::UProbeError::type_id(&self) -> core::any::TypeId
  6046. impl<T> core::borrow::Borrow<T> for aya::programs::uprobe::UProbeError where T: core::marker::Sized
  6047. pub fn aya::programs::uprobe::UProbeError::borrow(&self) -> &T
  6048. impl<T> core::borrow::BorrowMut<T> for aya::programs::uprobe::UProbeError where T: core::marker::Sized
  6049. pub fn aya::programs::uprobe::UProbeError::borrow_mut(&mut self) -> &mut T
  6050. impl<T> core::convert::From<T> for aya::programs::uprobe::UProbeError
  6051. pub fn aya::programs::uprobe::UProbeError::from(t: T) -> T
  6052. pub enum aya::programs::XdpError
  6053. pub aya::programs::XdpError::NetlinkError
  6054. pub aya::programs::XdpError::NetlinkError::io_error: std::io::error::Error
  6055. impl core::convert::From<aya::programs::xdp::XdpError> for aya::programs::ProgramError
  6056. pub fn aya::programs::ProgramError::from(source: aya::programs::xdp::XdpError) -> Self
  6057. impl core::error::Error for aya::programs::xdp::XdpError
  6058. pub fn aya::programs::xdp::XdpError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  6059. impl core::fmt::Debug for aya::programs::xdp::XdpError
  6060. pub fn aya::programs::xdp::XdpError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6061. impl core::fmt::Display for aya::programs::xdp::XdpError
  6062. pub fn aya::programs::xdp::XdpError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6063. impl core::marker::Send for aya::programs::xdp::XdpError
  6064. impl core::marker::Sync for aya::programs::xdp::XdpError
  6065. impl core::marker::Unpin for aya::programs::xdp::XdpError
  6066. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::xdp::XdpError
  6067. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::xdp::XdpError
  6068. impl<T, U> core::convert::Into<U> for aya::programs::xdp::XdpError where U: core::convert::From<T>
  6069. pub fn aya::programs::xdp::XdpError::into(self) -> U
  6070. impl<T, U> core::convert::TryFrom<U> for aya::programs::xdp::XdpError where U: core::convert::Into<T>
  6071. pub type aya::programs::xdp::XdpError::Error = core::convert::Infallible
  6072. pub fn aya::programs::xdp::XdpError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6073. impl<T, U> core::convert::TryInto<U> for aya::programs::xdp::XdpError where U: core::convert::TryFrom<T>
  6074. pub type aya::programs::xdp::XdpError::Error = <U as core::convert::TryFrom<T>>::Error
  6075. pub fn aya::programs::xdp::XdpError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6076. impl<T> alloc::string::ToString for aya::programs::xdp::XdpError where T: core::fmt::Display + core::marker::Sized
  6077. pub fn aya::programs::xdp::XdpError::to_string(&self) -> alloc::string::String
  6078. impl<T> core::any::Any for aya::programs::xdp::XdpError where T: 'static + core::marker::Sized
  6079. pub fn aya::programs::xdp::XdpError::type_id(&self) -> core::any::TypeId
  6080. impl<T> core::borrow::Borrow<T> for aya::programs::xdp::XdpError where T: core::marker::Sized
  6081. pub fn aya::programs::xdp::XdpError::borrow(&self) -> &T
  6082. impl<T> core::borrow::BorrowMut<T> for aya::programs::xdp::XdpError where T: core::marker::Sized
  6083. pub fn aya::programs::xdp::XdpError::borrow_mut(&mut self) -> &mut T
  6084. impl<T> core::convert::From<T> for aya::programs::xdp::XdpError
  6085. pub fn aya::programs::xdp::XdpError::from(t: T) -> T
  6086. pub struct aya::programs::BtfTracePoint
  6087. impl aya::programs::tp_btf::BtfTracePoint
  6088. pub fn aya::programs::tp_btf::BtfTracePoint::attach(&mut self) -> core::result::Result<aya::programs::tp_btf::BtfTracePointLinkId, aya::programs::ProgramError>
  6089. pub fn aya::programs::tp_btf::BtfTracePoint::detach(&mut self, link_id: aya::programs::tp_btf::BtfTracePointLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  6090. pub fn aya::programs::tp_btf::BtfTracePoint::load(&mut self, tracepoint: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError>
  6091. pub fn aya::programs::tp_btf::BtfTracePoint::take_link(&mut self, link_id: aya::programs::tp_btf::BtfTracePointLinkId) -> core::result::Result<aya::programs::tp_btf::BtfTracePointLink, aya::programs::ProgramError>
  6092. impl aya::programs::tp_btf::BtfTracePoint
  6093. pub fn aya::programs::tp_btf::BtfTracePoint::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  6094. impl aya::programs::tp_btf::BtfTracePoint
  6095. pub fn aya::programs::tp_btf::BtfTracePoint::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  6096. impl aya::programs::tp_btf::BtfTracePoint
  6097. pub fn aya::programs::tp_btf::BtfTracePoint::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  6098. impl aya::programs::tp_btf::BtfTracePoint
  6099. pub fn aya::programs::tp_btf::BtfTracePoint::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  6100. pub fn aya::programs::tp_btf::BtfTracePoint::unpin(self) -> core::result::Result<(), std::io::error::Error>
  6101. impl aya::programs::tp_btf::BtfTracePoint
  6102. pub fn aya::programs::tp_btf::BtfTracePoint::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6103. impl core::fmt::Debug for aya::programs::tp_btf::BtfTracePoint
  6104. pub fn aya::programs::tp_btf::BtfTracePoint::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6105. impl core::ops::drop::Drop for aya::programs::tp_btf::BtfTracePoint
  6106. pub fn aya::programs::tp_btf::BtfTracePoint::drop(&mut self)
  6107. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::tp_btf::BtfTracePoint
  6108. pub type &'a aya::programs::tp_btf::BtfTracePoint::Error = aya::programs::ProgramError
  6109. pub fn &'a aya::programs::tp_btf::BtfTracePoint::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::tp_btf::BtfTracePoint, aya::programs::ProgramError>
  6110. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::tp_btf::BtfTracePoint
  6111. pub type &'a mut aya::programs::tp_btf::BtfTracePoint::Error = aya::programs::ProgramError
  6112. pub fn &'a mut aya::programs::tp_btf::BtfTracePoint::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::tp_btf::BtfTracePoint, aya::programs::ProgramError>
  6113. impl core::marker::Send for aya::programs::tp_btf::BtfTracePoint
  6114. impl core::marker::Sync for aya::programs::tp_btf::BtfTracePoint
  6115. impl core::marker::Unpin for aya::programs::tp_btf::BtfTracePoint
  6116. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tp_btf::BtfTracePoint
  6117. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tp_btf::BtfTracePoint
  6118. impl<T, U> core::convert::Into<U> for aya::programs::tp_btf::BtfTracePoint where U: core::convert::From<T>
  6119. pub fn aya::programs::tp_btf::BtfTracePoint::into(self) -> U
  6120. impl<T, U> core::convert::TryFrom<U> for aya::programs::tp_btf::BtfTracePoint where U: core::convert::Into<T>
  6121. pub type aya::programs::tp_btf::BtfTracePoint::Error = core::convert::Infallible
  6122. pub fn aya::programs::tp_btf::BtfTracePoint::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6123. impl<T, U> core::convert::TryInto<U> for aya::programs::tp_btf::BtfTracePoint where U: core::convert::TryFrom<T>
  6124. pub type aya::programs::tp_btf::BtfTracePoint::Error = <U as core::convert::TryFrom<T>>::Error
  6125. pub fn aya::programs::tp_btf::BtfTracePoint::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6126. impl<T> core::any::Any for aya::programs::tp_btf::BtfTracePoint where T: 'static + core::marker::Sized
  6127. pub fn aya::programs::tp_btf::BtfTracePoint::type_id(&self) -> core::any::TypeId
  6128. impl<T> core::borrow::Borrow<T> for aya::programs::tp_btf::BtfTracePoint where T: core::marker::Sized
  6129. pub fn aya::programs::tp_btf::BtfTracePoint::borrow(&self) -> &T
  6130. impl<T> core::borrow::BorrowMut<T> for aya::programs::tp_btf::BtfTracePoint where T: core::marker::Sized
  6131. pub fn aya::programs::tp_btf::BtfTracePoint::borrow_mut(&mut self) -> &mut T
  6132. impl<T> core::convert::From<T> for aya::programs::tp_btf::BtfTracePoint
  6133. pub fn aya::programs::tp_btf::BtfTracePoint::from(t: T) -> T
  6134. pub struct aya::programs::CgroupDevice
  6135. impl aya::programs::cgroup_device::CgroupDevice
  6136. pub fn aya::programs::cgroup_device::CgroupDevice::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T) -> core::result::Result<aya::programs::cgroup_device::CgroupDeviceLinkId, aya::programs::ProgramError>
  6137. pub fn aya::programs::cgroup_device::CgroupDevice::detach(&mut self, link_id: aya::programs::cgroup_device::CgroupDeviceLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  6138. pub fn aya::programs::cgroup_device::CgroupDevice::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6139. pub fn aya::programs::cgroup_device::CgroupDevice::take_link(&mut self, link_id: aya::programs::cgroup_device::CgroupDeviceLinkId) -> core::result::Result<aya::programs::cgroup_device::CgroupDeviceLink, aya::programs::ProgramError>
  6140. impl aya::programs::cgroup_device::CgroupDevice
  6141. pub fn aya::programs::cgroup_device::CgroupDevice::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  6142. impl aya::programs::cgroup_device::CgroupDevice
  6143. pub fn aya::programs::cgroup_device::CgroupDevice::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  6144. impl aya::programs::cgroup_device::CgroupDevice
  6145. pub fn aya::programs::cgroup_device::CgroupDevice::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  6146. impl aya::programs::cgroup_device::CgroupDevice
  6147. pub fn aya::programs::cgroup_device::CgroupDevice::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  6148. pub fn aya::programs::cgroup_device::CgroupDevice::unpin(self) -> core::result::Result<(), std::io::error::Error>
  6149. impl aya::programs::cgroup_device::CgroupDevice
  6150. pub fn aya::programs::cgroup_device::CgroupDevice::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6151. impl core::fmt::Debug for aya::programs::cgroup_device::CgroupDevice
  6152. pub fn aya::programs::cgroup_device::CgroupDevice::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6153. impl core::ops::drop::Drop for aya::programs::cgroup_device::CgroupDevice
  6154. pub fn aya::programs::cgroup_device::CgroupDevice::drop(&mut self)
  6155. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_device::CgroupDevice
  6156. pub type &'a aya::programs::cgroup_device::CgroupDevice::Error = aya::programs::ProgramError
  6157. pub fn &'a aya::programs::cgroup_device::CgroupDevice::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_device::CgroupDevice, aya::programs::ProgramError>
  6158. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_device::CgroupDevice
  6159. pub type &'a mut aya::programs::cgroup_device::CgroupDevice::Error = aya::programs::ProgramError
  6160. pub fn &'a mut aya::programs::cgroup_device::CgroupDevice::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_device::CgroupDevice, aya::programs::ProgramError>
  6161. impl core::marker::Send for aya::programs::cgroup_device::CgroupDevice
  6162. impl core::marker::Sync for aya::programs::cgroup_device::CgroupDevice
  6163. impl core::marker::Unpin for aya::programs::cgroup_device::CgroupDevice
  6164. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_device::CgroupDevice
  6165. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_device::CgroupDevice
  6166. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_device::CgroupDevice where U: core::convert::From<T>
  6167. pub fn aya::programs::cgroup_device::CgroupDevice::into(self) -> U
  6168. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_device::CgroupDevice where U: core::convert::Into<T>
  6169. pub type aya::programs::cgroup_device::CgroupDevice::Error = core::convert::Infallible
  6170. pub fn aya::programs::cgroup_device::CgroupDevice::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6171. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_device::CgroupDevice where U: core::convert::TryFrom<T>
  6172. pub type aya::programs::cgroup_device::CgroupDevice::Error = <U as core::convert::TryFrom<T>>::Error
  6173. pub fn aya::programs::cgroup_device::CgroupDevice::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6174. impl<T> core::any::Any for aya::programs::cgroup_device::CgroupDevice where T: 'static + core::marker::Sized
  6175. pub fn aya::programs::cgroup_device::CgroupDevice::type_id(&self) -> core::any::TypeId
  6176. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_device::CgroupDevice where T: core::marker::Sized
  6177. pub fn aya::programs::cgroup_device::CgroupDevice::borrow(&self) -> &T
  6178. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_device::CgroupDevice where T: core::marker::Sized
  6179. pub fn aya::programs::cgroup_device::CgroupDevice::borrow_mut(&mut self) -> &mut T
  6180. impl<T> core::convert::From<T> for aya::programs::cgroup_device::CgroupDevice
  6181. pub fn aya::programs::cgroup_device::CgroupDevice::from(t: T) -> T
  6182. pub struct aya::programs::CgroupSkb
  6183. impl aya::programs::cgroup_skb::CgroupSkb
  6184. pub fn aya::programs::cgroup_skb::CgroupSkb::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T, attach_type: aya::programs::cgroup_skb::CgroupSkbAttachType) -> core::result::Result<aya::programs::cgroup_skb::CgroupSkbLinkId, aya::programs::ProgramError>
  6185. pub fn aya::programs::cgroup_skb::CgroupSkb::detach(&mut self, link_id: aya::programs::cgroup_skb::CgroupSkbLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  6186. pub fn aya::programs::cgroup_skb::CgroupSkb::expected_attach_type(&self) -> &core::option::Option<aya::programs::cgroup_skb::CgroupSkbAttachType>
  6187. pub fn aya::programs::cgroup_skb::CgroupSkb::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, expected_attach_type: aya::programs::cgroup_skb::CgroupSkbAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  6188. pub fn aya::programs::cgroup_skb::CgroupSkb::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6189. pub fn aya::programs::cgroup_skb::CgroupSkb::take_link(&mut self, link_id: aya::programs::cgroup_skb::CgroupSkbLinkId) -> core::result::Result<aya::programs::cgroup_skb::CgroupSkbLink, aya::programs::ProgramError>
  6190. impl aya::programs::cgroup_skb::CgroupSkb
  6191. pub fn aya::programs::cgroup_skb::CgroupSkb::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  6192. impl aya::programs::cgroup_skb::CgroupSkb
  6193. pub fn aya::programs::cgroup_skb::CgroupSkb::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  6194. impl aya::programs::cgroup_skb::CgroupSkb
  6195. pub fn aya::programs::cgroup_skb::CgroupSkb::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  6196. pub fn aya::programs::cgroup_skb::CgroupSkb::unpin(self) -> core::result::Result<(), std::io::error::Error>
  6197. impl aya::programs::cgroup_skb::CgroupSkb
  6198. pub fn aya::programs::cgroup_skb::CgroupSkb::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6199. impl core::fmt::Debug for aya::programs::cgroup_skb::CgroupSkb
  6200. pub fn aya::programs::cgroup_skb::CgroupSkb::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6201. impl core::ops::drop::Drop for aya::programs::cgroup_skb::CgroupSkb
  6202. pub fn aya::programs::cgroup_skb::CgroupSkb::drop(&mut self)
  6203. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_skb::CgroupSkb
  6204. pub type &'a aya::programs::cgroup_skb::CgroupSkb::Error = aya::programs::ProgramError
  6205. pub fn &'a aya::programs::cgroup_skb::CgroupSkb::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_skb::CgroupSkb, aya::programs::ProgramError>
  6206. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_skb::CgroupSkb
  6207. pub type &'a mut aya::programs::cgroup_skb::CgroupSkb::Error = aya::programs::ProgramError
  6208. pub fn &'a mut aya::programs::cgroup_skb::CgroupSkb::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_skb::CgroupSkb, aya::programs::ProgramError>
  6209. impl core::marker::Send for aya::programs::cgroup_skb::CgroupSkb
  6210. impl core::marker::Sync for aya::programs::cgroup_skb::CgroupSkb
  6211. impl core::marker::Unpin for aya::programs::cgroup_skb::CgroupSkb
  6212. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_skb::CgroupSkb
  6213. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_skb::CgroupSkb
  6214. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_skb::CgroupSkb where U: core::convert::From<T>
  6215. pub fn aya::programs::cgroup_skb::CgroupSkb::into(self) -> U
  6216. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_skb::CgroupSkb where U: core::convert::Into<T>
  6217. pub type aya::programs::cgroup_skb::CgroupSkb::Error = core::convert::Infallible
  6218. pub fn aya::programs::cgroup_skb::CgroupSkb::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6219. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_skb::CgroupSkb where U: core::convert::TryFrom<T>
  6220. pub type aya::programs::cgroup_skb::CgroupSkb::Error = <U as core::convert::TryFrom<T>>::Error
  6221. pub fn aya::programs::cgroup_skb::CgroupSkb::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6222. impl<T> core::any::Any for aya::programs::cgroup_skb::CgroupSkb where T: 'static + core::marker::Sized
  6223. pub fn aya::programs::cgroup_skb::CgroupSkb::type_id(&self) -> core::any::TypeId
  6224. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_skb::CgroupSkb where T: core::marker::Sized
  6225. pub fn aya::programs::cgroup_skb::CgroupSkb::borrow(&self) -> &T
  6226. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_skb::CgroupSkb where T: core::marker::Sized
  6227. pub fn aya::programs::cgroup_skb::CgroupSkb::borrow_mut(&mut self) -> &mut T
  6228. impl<T> core::convert::From<T> for aya::programs::cgroup_skb::CgroupSkb
  6229. pub fn aya::programs::cgroup_skb::CgroupSkb::from(t: T) -> T
  6230. pub struct aya::programs::CgroupSock
  6231. impl aya::programs::cgroup_sock::CgroupSock
  6232. pub fn aya::programs::cgroup_sock::CgroupSock::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T) -> core::result::Result<aya::programs::cgroup_sock::CgroupSockLinkId, aya::programs::ProgramError>
  6233. pub fn aya::programs::cgroup_sock::CgroupSock::detach(&mut self, link_id: aya::programs::cgroup_sock::CgroupSockLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  6234. pub fn aya::programs::cgroup_sock::CgroupSock::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, attach_type: aya_obj::programs::cgroup_sock::CgroupSockAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  6235. pub fn aya::programs::cgroup_sock::CgroupSock::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6236. pub fn aya::programs::cgroup_sock::CgroupSock::take_link(&mut self, link_id: aya::programs::cgroup_sock::CgroupSockLinkId) -> core::result::Result<aya::programs::cgroup_sock::CgroupSockLink, aya::programs::ProgramError>
  6237. impl aya::programs::cgroup_sock::CgroupSock
  6238. pub fn aya::programs::cgroup_sock::CgroupSock::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  6239. impl aya::programs::cgroup_sock::CgroupSock
  6240. pub fn aya::programs::cgroup_sock::CgroupSock::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  6241. impl aya::programs::cgroup_sock::CgroupSock
  6242. pub fn aya::programs::cgroup_sock::CgroupSock::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  6243. pub fn aya::programs::cgroup_sock::CgroupSock::unpin(self) -> core::result::Result<(), std::io::error::Error>
  6244. impl aya::programs::cgroup_sock::CgroupSock
  6245. pub fn aya::programs::cgroup_sock::CgroupSock::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6246. impl core::fmt::Debug for aya::programs::cgroup_sock::CgroupSock
  6247. pub fn aya::programs::cgroup_sock::CgroupSock::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6248. impl core::ops::drop::Drop for aya::programs::cgroup_sock::CgroupSock
  6249. pub fn aya::programs::cgroup_sock::CgroupSock::drop(&mut self)
  6250. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sock::CgroupSock
  6251. pub type &'a aya::programs::cgroup_sock::CgroupSock::Error = aya::programs::ProgramError
  6252. pub fn &'a aya::programs::cgroup_sock::CgroupSock::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sock::CgroupSock, aya::programs::ProgramError>
  6253. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sock::CgroupSock
  6254. pub type &'a mut aya::programs::cgroup_sock::CgroupSock::Error = aya::programs::ProgramError
  6255. pub fn &'a mut aya::programs::cgroup_sock::CgroupSock::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sock::CgroupSock, aya::programs::ProgramError>
  6256. impl core::marker::Send for aya::programs::cgroup_sock::CgroupSock
  6257. impl core::marker::Sync for aya::programs::cgroup_sock::CgroupSock
  6258. impl core::marker::Unpin for aya::programs::cgroup_sock::CgroupSock
  6259. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sock::CgroupSock
  6260. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sock::CgroupSock
  6261. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sock::CgroupSock where U: core::convert::From<T>
  6262. pub fn aya::programs::cgroup_sock::CgroupSock::into(self) -> U
  6263. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sock::CgroupSock where U: core::convert::Into<T>
  6264. pub type aya::programs::cgroup_sock::CgroupSock::Error = core::convert::Infallible
  6265. pub fn aya::programs::cgroup_sock::CgroupSock::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6266. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sock::CgroupSock where U: core::convert::TryFrom<T>
  6267. pub type aya::programs::cgroup_sock::CgroupSock::Error = <U as core::convert::TryFrom<T>>::Error
  6268. pub fn aya::programs::cgroup_sock::CgroupSock::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6269. impl<T> core::any::Any for aya::programs::cgroup_sock::CgroupSock where T: 'static + core::marker::Sized
  6270. pub fn aya::programs::cgroup_sock::CgroupSock::type_id(&self) -> core::any::TypeId
  6271. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sock::CgroupSock where T: core::marker::Sized
  6272. pub fn aya::programs::cgroup_sock::CgroupSock::borrow(&self) -> &T
  6273. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sock::CgroupSock where T: core::marker::Sized
  6274. pub fn aya::programs::cgroup_sock::CgroupSock::borrow_mut(&mut self) -> &mut T
  6275. impl<T> core::convert::From<T> for aya::programs::cgroup_sock::CgroupSock
  6276. pub fn aya::programs::cgroup_sock::CgroupSock::from(t: T) -> T
  6277. pub struct aya::programs::CgroupSockAddr
  6278. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  6279. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T) -> core::result::Result<aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId, aya::programs::ProgramError>
  6280. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::detach(&mut self, link_id: aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  6281. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, attach_type: aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  6282. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6283. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::take_link(&mut self, link_id: aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId) -> core::result::Result<aya::programs::cgroup_sock_addr::CgroupSockAddrLink, aya::programs::ProgramError>
  6284. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  6285. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  6286. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  6287. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  6288. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  6289. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  6290. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::unpin(self) -> core::result::Result<(), std::io::error::Error>
  6291. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  6292. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6293. impl core::fmt::Debug for aya::programs::cgroup_sock_addr::CgroupSockAddr
  6294. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6295. impl core::ops::drop::Drop for aya::programs::cgroup_sock_addr::CgroupSockAddr
  6296. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::drop(&mut self)
  6297. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sock_addr::CgroupSockAddr
  6298. pub type &'a aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = aya::programs::ProgramError
  6299. pub fn &'a aya::programs::cgroup_sock_addr::CgroupSockAddr::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sock_addr::CgroupSockAddr, aya::programs::ProgramError>
  6300. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr
  6301. pub type &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = aya::programs::ProgramError
  6302. pub fn &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr, aya::programs::ProgramError>
  6303. impl core::marker::Send for aya::programs::cgroup_sock_addr::CgroupSockAddr
  6304. impl core::marker::Sync for aya::programs::cgroup_sock_addr::CgroupSockAddr
  6305. impl core::marker::Unpin for aya::programs::cgroup_sock_addr::CgroupSockAddr
  6306. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sock_addr::CgroupSockAddr
  6307. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sock_addr::CgroupSockAddr
  6308. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sock_addr::CgroupSockAddr where U: core::convert::From<T>
  6309. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::into(self) -> U
  6310. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sock_addr::CgroupSockAddr where U: core::convert::Into<T>
  6311. pub type aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = core::convert::Infallible
  6312. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6313. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sock_addr::CgroupSockAddr where U: core::convert::TryFrom<T>
  6314. pub type aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = <U as core::convert::TryFrom<T>>::Error
  6315. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6316. impl<T> core::any::Any for aya::programs::cgroup_sock_addr::CgroupSockAddr where T: 'static + core::marker::Sized
  6317. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::type_id(&self) -> core::any::TypeId
  6318. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sock_addr::CgroupSockAddr where T: core::marker::Sized
  6319. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::borrow(&self) -> &T
  6320. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sock_addr::CgroupSockAddr where T: core::marker::Sized
  6321. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::borrow_mut(&mut self) -> &mut T
  6322. impl<T> core::convert::From<T> for aya::programs::cgroup_sock_addr::CgroupSockAddr
  6323. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::from(t: T) -> T
  6324. pub struct aya::programs::CgroupSockopt
  6325. impl aya::programs::cgroup_sockopt::CgroupSockopt
  6326. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T) -> core::result::Result<aya::programs::cgroup_sockopt::CgroupSockoptLinkId, aya::programs::ProgramError>
  6327. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::detach(&mut self, link_id: aya::programs::cgroup_sockopt::CgroupSockoptLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  6328. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, attach_type: aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  6329. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6330. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::take_link(&mut self, link_id: aya::programs::cgroup_sockopt::CgroupSockoptLinkId) -> core::result::Result<aya::programs::cgroup_sockopt::CgroupSockoptLink, aya::programs::ProgramError>
  6331. impl aya::programs::cgroup_sockopt::CgroupSockopt
  6332. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  6333. impl aya::programs::cgroup_sockopt::CgroupSockopt
  6334. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  6335. impl aya::programs::cgroup_sockopt::CgroupSockopt
  6336. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  6337. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::unpin(self) -> core::result::Result<(), std::io::error::Error>
  6338. impl aya::programs::cgroup_sockopt::CgroupSockopt
  6339. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6340. impl core::fmt::Debug for aya::programs::cgroup_sockopt::CgroupSockopt
  6341. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6342. impl core::ops::drop::Drop for aya::programs::cgroup_sockopt::CgroupSockopt
  6343. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::drop(&mut self)
  6344. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sockopt::CgroupSockopt
  6345. pub type &'a aya::programs::cgroup_sockopt::CgroupSockopt::Error = aya::programs::ProgramError
  6346. pub fn &'a aya::programs::cgroup_sockopt::CgroupSockopt::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sockopt::CgroupSockopt, aya::programs::ProgramError>
  6347. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sockopt::CgroupSockopt
  6348. pub type &'a mut aya::programs::cgroup_sockopt::CgroupSockopt::Error = aya::programs::ProgramError
  6349. pub fn &'a mut aya::programs::cgroup_sockopt::CgroupSockopt::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sockopt::CgroupSockopt, aya::programs::ProgramError>
  6350. impl core::marker::Send for aya::programs::cgroup_sockopt::CgroupSockopt
  6351. impl core::marker::Sync for aya::programs::cgroup_sockopt::CgroupSockopt
  6352. impl core::marker::Unpin for aya::programs::cgroup_sockopt::CgroupSockopt
  6353. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sockopt::CgroupSockopt
  6354. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sockopt::CgroupSockopt
  6355. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sockopt::CgroupSockopt where U: core::convert::From<T>
  6356. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::into(self) -> U
  6357. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sockopt::CgroupSockopt where U: core::convert::Into<T>
  6358. pub type aya::programs::cgroup_sockopt::CgroupSockopt::Error = core::convert::Infallible
  6359. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6360. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sockopt::CgroupSockopt where U: core::convert::TryFrom<T>
  6361. pub type aya::programs::cgroup_sockopt::CgroupSockopt::Error = <U as core::convert::TryFrom<T>>::Error
  6362. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6363. impl<T> core::any::Any for aya::programs::cgroup_sockopt::CgroupSockopt where T: 'static + core::marker::Sized
  6364. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::type_id(&self) -> core::any::TypeId
  6365. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sockopt::CgroupSockopt where T: core::marker::Sized
  6366. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::borrow(&self) -> &T
  6367. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sockopt::CgroupSockopt where T: core::marker::Sized
  6368. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::borrow_mut(&mut self) -> &mut T
  6369. impl<T> core::convert::From<T> for aya::programs::cgroup_sockopt::CgroupSockopt
  6370. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::from(t: T) -> T
  6371. pub struct aya::programs::CgroupSysctl
  6372. impl aya::programs::cgroup_sysctl::CgroupSysctl
  6373. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T) -> core::result::Result<aya::programs::cgroup_sysctl::CgroupSysctlLinkId, aya::programs::ProgramError>
  6374. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::detach(&mut self, link_id: aya::programs::cgroup_sysctl::CgroupSysctlLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  6375. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6376. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::take_link(&mut self, link_id: aya::programs::cgroup_sysctl::CgroupSysctlLinkId) -> core::result::Result<aya::programs::cgroup_sysctl::CgroupSysctlLink, aya::programs::ProgramError>
  6377. impl aya::programs::cgroup_sysctl::CgroupSysctl
  6378. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  6379. impl aya::programs::cgroup_sysctl::CgroupSysctl
  6380. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  6381. impl aya::programs::cgroup_sysctl::CgroupSysctl
  6382. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  6383. impl aya::programs::cgroup_sysctl::CgroupSysctl
  6384. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  6385. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::unpin(self) -> core::result::Result<(), std::io::error::Error>
  6386. impl aya::programs::cgroup_sysctl::CgroupSysctl
  6387. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6388. impl core::fmt::Debug for aya::programs::cgroup_sysctl::CgroupSysctl
  6389. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6390. impl core::ops::drop::Drop for aya::programs::cgroup_sysctl::CgroupSysctl
  6391. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::drop(&mut self)
  6392. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sysctl::CgroupSysctl
  6393. pub type &'a aya::programs::cgroup_sysctl::CgroupSysctl::Error = aya::programs::ProgramError
  6394. pub fn &'a aya::programs::cgroup_sysctl::CgroupSysctl::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sysctl::CgroupSysctl, aya::programs::ProgramError>
  6395. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sysctl::CgroupSysctl
  6396. pub type &'a mut aya::programs::cgroup_sysctl::CgroupSysctl::Error = aya::programs::ProgramError
  6397. pub fn &'a mut aya::programs::cgroup_sysctl::CgroupSysctl::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sysctl::CgroupSysctl, aya::programs::ProgramError>
  6398. impl core::marker::Send for aya::programs::cgroup_sysctl::CgroupSysctl
  6399. impl core::marker::Sync for aya::programs::cgroup_sysctl::CgroupSysctl
  6400. impl core::marker::Unpin for aya::programs::cgroup_sysctl::CgroupSysctl
  6401. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sysctl::CgroupSysctl
  6402. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sysctl::CgroupSysctl
  6403. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sysctl::CgroupSysctl where U: core::convert::From<T>
  6404. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::into(self) -> U
  6405. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sysctl::CgroupSysctl where U: core::convert::Into<T>
  6406. pub type aya::programs::cgroup_sysctl::CgroupSysctl::Error = core::convert::Infallible
  6407. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6408. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sysctl::CgroupSysctl where U: core::convert::TryFrom<T>
  6409. pub type aya::programs::cgroup_sysctl::CgroupSysctl::Error = <U as core::convert::TryFrom<T>>::Error
  6410. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6411. impl<T> core::any::Any for aya::programs::cgroup_sysctl::CgroupSysctl where T: 'static + core::marker::Sized
  6412. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::type_id(&self) -> core::any::TypeId
  6413. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sysctl::CgroupSysctl where T: core::marker::Sized
  6414. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::borrow(&self) -> &T
  6415. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sysctl::CgroupSysctl where T: core::marker::Sized
  6416. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::borrow_mut(&mut self) -> &mut T
  6417. impl<T> core::convert::From<T> for aya::programs::cgroup_sysctl::CgroupSysctl
  6418. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::from(t: T) -> T
  6419. pub struct aya::programs::Extension
  6420. impl aya::programs::extension::Extension
  6421. pub fn aya::programs::extension::Extension::attach(&mut self) -> core::result::Result<aya::programs::extension::ExtensionLinkId, aya::programs::ProgramError>
  6422. pub fn aya::programs::extension::Extension::attach_to_program(&mut self, program: &aya::programs::ProgramFd, func_name: &str) -> core::result::Result<aya::programs::extension::ExtensionLinkId, aya::programs::ProgramError>
  6423. pub fn aya::programs::extension::Extension::detach(&mut self, link_id: aya::programs::extension::ExtensionLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  6424. pub fn aya::programs::extension::Extension::load(&mut self, program: aya::programs::ProgramFd, func_name: &str) -> core::result::Result<(), aya::programs::ProgramError>
  6425. pub fn aya::programs::extension::Extension::take_link(&mut self, link_id: aya::programs::extension::ExtensionLinkId) -> core::result::Result<aya::programs::extension::ExtensionLink, aya::programs::ProgramError>
  6426. impl aya::programs::extension::Extension
  6427. pub fn aya::programs::extension::Extension::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  6428. impl aya::programs::extension::Extension
  6429. pub fn aya::programs::extension::Extension::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  6430. impl aya::programs::extension::Extension
  6431. pub fn aya::programs::extension::Extension::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  6432. impl aya::programs::extension::Extension
  6433. pub fn aya::programs::extension::Extension::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  6434. pub fn aya::programs::extension::Extension::unpin(self) -> core::result::Result<(), std::io::error::Error>
  6435. impl aya::programs::extension::Extension
  6436. pub fn aya::programs::extension::Extension::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6437. impl core::fmt::Debug for aya::programs::extension::Extension
  6438. pub fn aya::programs::extension::Extension::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6439. impl core::ops::drop::Drop for aya::programs::extension::Extension
  6440. pub fn aya::programs::extension::Extension::drop(&mut self)
  6441. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::extension::Extension
  6442. pub type &'a aya::programs::extension::Extension::Error = aya::programs::ProgramError
  6443. pub fn &'a aya::programs::extension::Extension::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::extension::Extension, aya::programs::ProgramError>
  6444. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::extension::Extension
  6445. pub type &'a mut aya::programs::extension::Extension::Error = aya::programs::ProgramError
  6446. pub fn &'a mut aya::programs::extension::Extension::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::extension::Extension, aya::programs::ProgramError>
  6447. impl core::marker::Send for aya::programs::extension::Extension
  6448. impl core::marker::Sync for aya::programs::extension::Extension
  6449. impl core::marker::Unpin for aya::programs::extension::Extension
  6450. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::extension::Extension
  6451. impl core::panic::unwind_safe::UnwindSafe for aya::programs::extension::Extension
  6452. impl<T, U> core::convert::Into<U> for aya::programs::extension::Extension where U: core::convert::From<T>
  6453. pub fn aya::programs::extension::Extension::into(self) -> U
  6454. impl<T, U> core::convert::TryFrom<U> for aya::programs::extension::Extension where U: core::convert::Into<T>
  6455. pub type aya::programs::extension::Extension::Error = core::convert::Infallible
  6456. pub fn aya::programs::extension::Extension::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6457. impl<T, U> core::convert::TryInto<U> for aya::programs::extension::Extension where U: core::convert::TryFrom<T>
  6458. pub type aya::programs::extension::Extension::Error = <U as core::convert::TryFrom<T>>::Error
  6459. pub fn aya::programs::extension::Extension::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6460. impl<T> core::any::Any for aya::programs::extension::Extension where T: 'static + core::marker::Sized
  6461. pub fn aya::programs::extension::Extension::type_id(&self) -> core::any::TypeId
  6462. impl<T> core::borrow::Borrow<T> for aya::programs::extension::Extension where T: core::marker::Sized
  6463. pub fn aya::programs::extension::Extension::borrow(&self) -> &T
  6464. impl<T> core::borrow::BorrowMut<T> for aya::programs::extension::Extension where T: core::marker::Sized
  6465. pub fn aya::programs::extension::Extension::borrow_mut(&mut self) -> &mut T
  6466. impl<T> core::convert::From<T> for aya::programs::extension::Extension
  6467. pub fn aya::programs::extension::Extension::from(t: T) -> T
  6468. pub struct aya::programs::FEntry
  6469. impl aya::programs::fentry::FEntry
  6470. pub fn aya::programs::fentry::FEntry::attach(&mut self) -> core::result::Result<aya::programs::fentry::FEntryLinkId, aya::programs::ProgramError>
  6471. pub fn aya::programs::fentry::FEntry::detach(&mut self, link_id: aya::programs::fentry::FEntryLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  6472. pub fn aya::programs::fentry::FEntry::load(&mut self, fn_name: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError>
  6473. pub fn aya::programs::fentry::FEntry::take_link(&mut self, link_id: aya::programs::fentry::FEntryLinkId) -> core::result::Result<aya::programs::fentry::FEntryLink, aya::programs::ProgramError>
  6474. impl aya::programs::fentry::FEntry
  6475. pub fn aya::programs::fentry::FEntry::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  6476. impl aya::programs::fentry::FEntry
  6477. pub fn aya::programs::fentry::FEntry::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  6478. impl aya::programs::fentry::FEntry
  6479. pub fn aya::programs::fentry::FEntry::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  6480. impl aya::programs::fentry::FEntry
  6481. pub fn aya::programs::fentry::FEntry::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  6482. pub fn aya::programs::fentry::FEntry::unpin(self) -> core::result::Result<(), std::io::error::Error>
  6483. impl aya::programs::fentry::FEntry
  6484. pub fn aya::programs::fentry::FEntry::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6485. impl core::fmt::Debug for aya::programs::fentry::FEntry
  6486. pub fn aya::programs::fentry::FEntry::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6487. impl core::ops::drop::Drop for aya::programs::fentry::FEntry
  6488. pub fn aya::programs::fentry::FEntry::drop(&mut self)
  6489. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::fentry::FEntry
  6490. pub type &'a aya::programs::fentry::FEntry::Error = aya::programs::ProgramError
  6491. pub fn &'a aya::programs::fentry::FEntry::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::fentry::FEntry, aya::programs::ProgramError>
  6492. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::fentry::FEntry
  6493. pub type &'a mut aya::programs::fentry::FEntry::Error = aya::programs::ProgramError
  6494. pub fn &'a mut aya::programs::fentry::FEntry::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::fentry::FEntry, aya::programs::ProgramError>
  6495. impl core::marker::Send for aya::programs::fentry::FEntry
  6496. impl core::marker::Sync for aya::programs::fentry::FEntry
  6497. impl core::marker::Unpin for aya::programs::fentry::FEntry
  6498. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::fentry::FEntry
  6499. impl core::panic::unwind_safe::UnwindSafe for aya::programs::fentry::FEntry
  6500. impl<T, U> core::convert::Into<U> for aya::programs::fentry::FEntry where U: core::convert::From<T>
  6501. pub fn aya::programs::fentry::FEntry::into(self) -> U
  6502. impl<T, U> core::convert::TryFrom<U> for aya::programs::fentry::FEntry where U: core::convert::Into<T>
  6503. pub type aya::programs::fentry::FEntry::Error = core::convert::Infallible
  6504. pub fn aya::programs::fentry::FEntry::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6505. impl<T, U> core::convert::TryInto<U> for aya::programs::fentry::FEntry where U: core::convert::TryFrom<T>
  6506. pub type aya::programs::fentry::FEntry::Error = <U as core::convert::TryFrom<T>>::Error
  6507. pub fn aya::programs::fentry::FEntry::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6508. impl<T> core::any::Any for aya::programs::fentry::FEntry where T: 'static + core::marker::Sized
  6509. pub fn aya::programs::fentry::FEntry::type_id(&self) -> core::any::TypeId
  6510. impl<T> core::borrow::Borrow<T> for aya::programs::fentry::FEntry where T: core::marker::Sized
  6511. pub fn aya::programs::fentry::FEntry::borrow(&self) -> &T
  6512. impl<T> core::borrow::BorrowMut<T> for aya::programs::fentry::FEntry where T: core::marker::Sized
  6513. pub fn aya::programs::fentry::FEntry::borrow_mut(&mut self) -> &mut T
  6514. impl<T> core::convert::From<T> for aya::programs::fentry::FEntry
  6515. pub fn aya::programs::fentry::FEntry::from(t: T) -> T
  6516. pub struct aya::programs::FExit
  6517. impl aya::programs::fexit::FExit
  6518. pub fn aya::programs::fexit::FExit::attach(&mut self) -> core::result::Result<aya::programs::fexit::FExitLinkId, aya::programs::ProgramError>
  6519. pub fn aya::programs::fexit::FExit::detach(&mut self, link_id: aya::programs::fexit::FExitLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  6520. pub fn aya::programs::fexit::FExit::load(&mut self, fn_name: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError>
  6521. pub fn aya::programs::fexit::FExit::take_link(&mut self, link_id: aya::programs::fexit::FExitLinkId) -> core::result::Result<aya::programs::fexit::FExitLink, aya::programs::ProgramError>
  6522. impl aya::programs::fexit::FExit
  6523. pub fn aya::programs::fexit::FExit::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  6524. impl aya::programs::fexit::FExit
  6525. pub fn aya::programs::fexit::FExit::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  6526. impl aya::programs::fexit::FExit
  6527. pub fn aya::programs::fexit::FExit::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  6528. impl aya::programs::fexit::FExit
  6529. pub fn aya::programs::fexit::FExit::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  6530. pub fn aya::programs::fexit::FExit::unpin(self) -> core::result::Result<(), std::io::error::Error>
  6531. impl aya::programs::fexit::FExit
  6532. pub fn aya::programs::fexit::FExit::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6533. impl core::fmt::Debug for aya::programs::fexit::FExit
  6534. pub fn aya::programs::fexit::FExit::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6535. impl core::ops::drop::Drop for aya::programs::fexit::FExit
  6536. pub fn aya::programs::fexit::FExit::drop(&mut self)
  6537. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::fexit::FExit
  6538. pub type &'a aya::programs::fexit::FExit::Error = aya::programs::ProgramError
  6539. pub fn &'a aya::programs::fexit::FExit::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::fexit::FExit, aya::programs::ProgramError>
  6540. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::fexit::FExit
  6541. pub type &'a mut aya::programs::fexit::FExit::Error = aya::programs::ProgramError
  6542. pub fn &'a mut aya::programs::fexit::FExit::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::fexit::FExit, aya::programs::ProgramError>
  6543. impl core::marker::Send for aya::programs::fexit::FExit
  6544. impl core::marker::Sync for aya::programs::fexit::FExit
  6545. impl core::marker::Unpin for aya::programs::fexit::FExit
  6546. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::fexit::FExit
  6547. impl core::panic::unwind_safe::UnwindSafe for aya::programs::fexit::FExit
  6548. impl<T, U> core::convert::Into<U> for aya::programs::fexit::FExit where U: core::convert::From<T>
  6549. pub fn aya::programs::fexit::FExit::into(self) -> U
  6550. impl<T, U> core::convert::TryFrom<U> for aya::programs::fexit::FExit where U: core::convert::Into<T>
  6551. pub type aya::programs::fexit::FExit::Error = core::convert::Infallible
  6552. pub fn aya::programs::fexit::FExit::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6553. impl<T, U> core::convert::TryInto<U> for aya::programs::fexit::FExit where U: core::convert::TryFrom<T>
  6554. pub type aya::programs::fexit::FExit::Error = <U as core::convert::TryFrom<T>>::Error
  6555. pub fn aya::programs::fexit::FExit::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6556. impl<T> core::any::Any for aya::programs::fexit::FExit where T: 'static + core::marker::Sized
  6557. pub fn aya::programs::fexit::FExit::type_id(&self) -> core::any::TypeId
  6558. impl<T> core::borrow::Borrow<T> for aya::programs::fexit::FExit where T: core::marker::Sized
  6559. pub fn aya::programs::fexit::FExit::borrow(&self) -> &T
  6560. impl<T> core::borrow::BorrowMut<T> for aya::programs::fexit::FExit where T: core::marker::Sized
  6561. pub fn aya::programs::fexit::FExit::borrow_mut(&mut self) -> &mut T
  6562. impl<T> core::convert::From<T> for aya::programs::fexit::FExit
  6563. pub fn aya::programs::fexit::FExit::from(t: T) -> T
  6564. pub struct aya::programs::KProbe
  6565. impl aya::programs::kprobe::KProbe
  6566. pub fn aya::programs::kprobe::KProbe::attach<T: core::convert::AsRef<std::ffi::os_str::OsStr>>(&mut self, fn_name: T, offset: u64) -> core::result::Result<aya::programs::kprobe::KProbeLinkId, aya::programs::ProgramError>
  6567. pub fn aya::programs::kprobe::KProbe::detach(&mut self, link_id: aya::programs::kprobe::KProbeLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  6568. pub fn aya::programs::kprobe::KProbe::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, kind: aya::programs::ProbeKind) -> core::result::Result<Self, aya::programs::ProgramError>
  6569. pub fn aya::programs::kprobe::KProbe::kind(&self) -> aya::programs::ProbeKind
  6570. pub fn aya::programs::kprobe::KProbe::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6571. pub fn aya::programs::kprobe::KProbe::take_link(&mut self, link_id: aya::programs::kprobe::KProbeLinkId) -> core::result::Result<aya::programs::kprobe::KProbeLink, aya::programs::ProgramError>
  6572. impl aya::programs::kprobe::KProbe
  6573. pub fn aya::programs::kprobe::KProbe::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  6574. impl aya::programs::kprobe::KProbe
  6575. pub fn aya::programs::kprobe::KProbe::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  6576. impl aya::programs::kprobe::KProbe
  6577. pub fn aya::programs::kprobe::KProbe::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  6578. pub fn aya::programs::kprobe::KProbe::unpin(self) -> core::result::Result<(), std::io::error::Error>
  6579. impl aya::programs::kprobe::KProbe
  6580. pub fn aya::programs::kprobe::KProbe::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6581. impl core::fmt::Debug for aya::programs::kprobe::KProbe
  6582. pub fn aya::programs::kprobe::KProbe::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6583. impl core::ops::drop::Drop for aya::programs::kprobe::KProbe
  6584. pub fn aya::programs::kprobe::KProbe::drop(&mut self)
  6585. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::kprobe::KProbe
  6586. pub type &'a aya::programs::kprobe::KProbe::Error = aya::programs::ProgramError
  6587. pub fn &'a aya::programs::kprobe::KProbe::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::kprobe::KProbe, aya::programs::ProgramError>
  6588. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::kprobe::KProbe
  6589. pub type &'a mut aya::programs::kprobe::KProbe::Error = aya::programs::ProgramError
  6590. pub fn &'a mut aya::programs::kprobe::KProbe::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::kprobe::KProbe, aya::programs::ProgramError>
  6591. impl core::marker::Send for aya::programs::kprobe::KProbe
  6592. impl core::marker::Sync for aya::programs::kprobe::KProbe
  6593. impl core::marker::Unpin for aya::programs::kprobe::KProbe
  6594. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::kprobe::KProbe
  6595. impl core::panic::unwind_safe::UnwindSafe for aya::programs::kprobe::KProbe
  6596. impl<T, U> core::convert::Into<U> for aya::programs::kprobe::KProbe where U: core::convert::From<T>
  6597. pub fn aya::programs::kprobe::KProbe::into(self) -> U
  6598. impl<T, U> core::convert::TryFrom<U> for aya::programs::kprobe::KProbe where U: core::convert::Into<T>
  6599. pub type aya::programs::kprobe::KProbe::Error = core::convert::Infallible
  6600. pub fn aya::programs::kprobe::KProbe::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6601. impl<T, U> core::convert::TryInto<U> for aya::programs::kprobe::KProbe where U: core::convert::TryFrom<T>
  6602. pub type aya::programs::kprobe::KProbe::Error = <U as core::convert::TryFrom<T>>::Error
  6603. pub fn aya::programs::kprobe::KProbe::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6604. impl<T> core::any::Any for aya::programs::kprobe::KProbe where T: 'static + core::marker::Sized
  6605. pub fn aya::programs::kprobe::KProbe::type_id(&self) -> core::any::TypeId
  6606. impl<T> core::borrow::Borrow<T> for aya::programs::kprobe::KProbe where T: core::marker::Sized
  6607. pub fn aya::programs::kprobe::KProbe::borrow(&self) -> &T
  6608. impl<T> core::borrow::BorrowMut<T> for aya::programs::kprobe::KProbe where T: core::marker::Sized
  6609. pub fn aya::programs::kprobe::KProbe::borrow_mut(&mut self) -> &mut T
  6610. impl<T> core::convert::From<T> for aya::programs::kprobe::KProbe
  6611. pub fn aya::programs::kprobe::KProbe::from(t: T) -> T
  6612. pub struct aya::programs::LircMode2
  6613. impl aya::programs::lirc_mode2::LircMode2
  6614. pub fn aya::programs::lirc_mode2::LircMode2::attach<T: std::os::fd::owned::AsFd>(&mut self, lircdev: T) -> core::result::Result<aya::programs::lirc_mode2::LircLinkId, aya::programs::ProgramError>
  6615. pub fn aya::programs::lirc_mode2::LircMode2::detach(&mut self, link_id: aya::programs::lirc_mode2::LircLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  6616. pub fn aya::programs::lirc_mode2::LircMode2::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6617. pub fn aya::programs::lirc_mode2::LircMode2::query<T: std::os::fd::owned::AsFd>(target_fd: T) -> core::result::Result<alloc::vec::Vec<aya::programs::lirc_mode2::LircLink>, aya::programs::ProgramError>
  6618. pub fn aya::programs::lirc_mode2::LircMode2::take_link(&mut self, link_id: aya::programs::lirc_mode2::LircLinkId) -> core::result::Result<aya::programs::lirc_mode2::LircLink, aya::programs::ProgramError>
  6619. impl aya::programs::lirc_mode2::LircMode2
  6620. pub fn aya::programs::lirc_mode2::LircMode2::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  6621. impl aya::programs::lirc_mode2::LircMode2
  6622. pub fn aya::programs::lirc_mode2::LircMode2::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  6623. impl aya::programs::lirc_mode2::LircMode2
  6624. pub fn aya::programs::lirc_mode2::LircMode2::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  6625. impl aya::programs::lirc_mode2::LircMode2
  6626. pub fn aya::programs::lirc_mode2::LircMode2::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  6627. pub fn aya::programs::lirc_mode2::LircMode2::unpin(self) -> core::result::Result<(), std::io::error::Error>
  6628. impl aya::programs::lirc_mode2::LircMode2
  6629. pub fn aya::programs::lirc_mode2::LircMode2::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6630. impl core::fmt::Debug for aya::programs::lirc_mode2::LircMode2
  6631. pub fn aya::programs::lirc_mode2::LircMode2::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6632. impl core::ops::drop::Drop for aya::programs::lirc_mode2::LircMode2
  6633. pub fn aya::programs::lirc_mode2::LircMode2::drop(&mut self)
  6634. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::lirc_mode2::LircMode2
  6635. pub type &'a aya::programs::lirc_mode2::LircMode2::Error = aya::programs::ProgramError
  6636. pub fn &'a aya::programs::lirc_mode2::LircMode2::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::lirc_mode2::LircMode2, aya::programs::ProgramError>
  6637. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::lirc_mode2::LircMode2
  6638. pub type &'a mut aya::programs::lirc_mode2::LircMode2::Error = aya::programs::ProgramError
  6639. pub fn &'a mut aya::programs::lirc_mode2::LircMode2::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::lirc_mode2::LircMode2, aya::programs::ProgramError>
  6640. impl core::marker::Send for aya::programs::lirc_mode2::LircMode2
  6641. impl core::marker::Sync for aya::programs::lirc_mode2::LircMode2
  6642. impl core::marker::Unpin for aya::programs::lirc_mode2::LircMode2
  6643. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::lirc_mode2::LircMode2
  6644. impl core::panic::unwind_safe::UnwindSafe for aya::programs::lirc_mode2::LircMode2
  6645. impl<T, U> core::convert::Into<U> for aya::programs::lirc_mode2::LircMode2 where U: core::convert::From<T>
  6646. pub fn aya::programs::lirc_mode2::LircMode2::into(self) -> U
  6647. impl<T, U> core::convert::TryFrom<U> for aya::programs::lirc_mode2::LircMode2 where U: core::convert::Into<T>
  6648. pub type aya::programs::lirc_mode2::LircMode2::Error = core::convert::Infallible
  6649. pub fn aya::programs::lirc_mode2::LircMode2::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6650. impl<T, U> core::convert::TryInto<U> for aya::programs::lirc_mode2::LircMode2 where U: core::convert::TryFrom<T>
  6651. pub type aya::programs::lirc_mode2::LircMode2::Error = <U as core::convert::TryFrom<T>>::Error
  6652. pub fn aya::programs::lirc_mode2::LircMode2::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6653. impl<T> core::any::Any for aya::programs::lirc_mode2::LircMode2 where T: 'static + core::marker::Sized
  6654. pub fn aya::programs::lirc_mode2::LircMode2::type_id(&self) -> core::any::TypeId
  6655. impl<T> core::borrow::Borrow<T> for aya::programs::lirc_mode2::LircMode2 where T: core::marker::Sized
  6656. pub fn aya::programs::lirc_mode2::LircMode2::borrow(&self) -> &T
  6657. impl<T> core::borrow::BorrowMut<T> for aya::programs::lirc_mode2::LircMode2 where T: core::marker::Sized
  6658. pub fn aya::programs::lirc_mode2::LircMode2::borrow_mut(&mut self) -> &mut T
  6659. impl<T> core::convert::From<T> for aya::programs::lirc_mode2::LircMode2
  6660. pub fn aya::programs::lirc_mode2::LircMode2::from(t: T) -> T
  6661. pub struct aya::programs::Lsm
  6662. impl aya::programs::lsm::Lsm
  6663. pub fn aya::programs::lsm::Lsm::attach(&mut self) -> core::result::Result<aya::programs::lsm::LsmLinkId, aya::programs::ProgramError>
  6664. pub fn aya::programs::lsm::Lsm::detach(&mut self, link_id: aya::programs::lsm::LsmLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  6665. pub fn aya::programs::lsm::Lsm::load(&mut self, lsm_hook_name: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError>
  6666. pub fn aya::programs::lsm::Lsm::take_link(&mut self, link_id: aya::programs::lsm::LsmLinkId) -> core::result::Result<aya::programs::lsm::LsmLink, aya::programs::ProgramError>
  6667. impl aya::programs::lsm::Lsm
  6668. pub fn aya::programs::lsm::Lsm::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  6669. impl aya::programs::lsm::Lsm
  6670. pub fn aya::programs::lsm::Lsm::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  6671. impl aya::programs::lsm::Lsm
  6672. pub fn aya::programs::lsm::Lsm::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  6673. impl aya::programs::lsm::Lsm
  6674. pub fn aya::programs::lsm::Lsm::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  6675. pub fn aya::programs::lsm::Lsm::unpin(self) -> core::result::Result<(), std::io::error::Error>
  6676. impl aya::programs::lsm::Lsm
  6677. pub fn aya::programs::lsm::Lsm::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6678. impl core::fmt::Debug for aya::programs::lsm::Lsm
  6679. pub fn aya::programs::lsm::Lsm::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6680. impl core::ops::drop::Drop for aya::programs::lsm::Lsm
  6681. pub fn aya::programs::lsm::Lsm::drop(&mut self)
  6682. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::lsm::Lsm
  6683. pub type &'a aya::programs::lsm::Lsm::Error = aya::programs::ProgramError
  6684. pub fn &'a aya::programs::lsm::Lsm::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::lsm::Lsm, aya::programs::ProgramError>
  6685. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::lsm::Lsm
  6686. pub type &'a mut aya::programs::lsm::Lsm::Error = aya::programs::ProgramError
  6687. pub fn &'a mut aya::programs::lsm::Lsm::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::lsm::Lsm, aya::programs::ProgramError>
  6688. impl core::marker::Send for aya::programs::lsm::Lsm
  6689. impl core::marker::Sync for aya::programs::lsm::Lsm
  6690. impl core::marker::Unpin for aya::programs::lsm::Lsm
  6691. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::lsm::Lsm
  6692. impl core::panic::unwind_safe::UnwindSafe for aya::programs::lsm::Lsm
  6693. impl<T, U> core::convert::Into<U> for aya::programs::lsm::Lsm where U: core::convert::From<T>
  6694. pub fn aya::programs::lsm::Lsm::into(self) -> U
  6695. impl<T, U> core::convert::TryFrom<U> for aya::programs::lsm::Lsm where U: core::convert::Into<T>
  6696. pub type aya::programs::lsm::Lsm::Error = core::convert::Infallible
  6697. pub fn aya::programs::lsm::Lsm::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6698. impl<T, U> core::convert::TryInto<U> for aya::programs::lsm::Lsm where U: core::convert::TryFrom<T>
  6699. pub type aya::programs::lsm::Lsm::Error = <U as core::convert::TryFrom<T>>::Error
  6700. pub fn aya::programs::lsm::Lsm::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6701. impl<T> core::any::Any for aya::programs::lsm::Lsm where T: 'static + core::marker::Sized
  6702. pub fn aya::programs::lsm::Lsm::type_id(&self) -> core::any::TypeId
  6703. impl<T> core::borrow::Borrow<T> for aya::programs::lsm::Lsm where T: core::marker::Sized
  6704. pub fn aya::programs::lsm::Lsm::borrow(&self) -> &T
  6705. impl<T> core::borrow::BorrowMut<T> for aya::programs::lsm::Lsm where T: core::marker::Sized
  6706. pub fn aya::programs::lsm::Lsm::borrow_mut(&mut self) -> &mut T
  6707. impl<T> core::convert::From<T> for aya::programs::lsm::Lsm
  6708. pub fn aya::programs::lsm::Lsm::from(t: T) -> T
  6709. pub struct aya::programs::PerfEvent
  6710. impl aya::programs::perf_event::PerfEvent
  6711. pub fn aya::programs::perf_event::PerfEvent::attach(&mut self, perf_type: aya::programs::perf_event::PerfTypeId, config: u64, scope: aya::programs::perf_event::PerfEventScope, sample_policy: aya::programs::perf_event::SamplePolicy, inherit: bool) -> core::result::Result<aya::programs::perf_event::PerfEventLinkId, aya::programs::ProgramError>
  6712. pub fn aya::programs::perf_event::PerfEvent::detach(&mut self, link_id: aya::programs::perf_event::PerfEventLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  6713. pub fn aya::programs::perf_event::PerfEvent::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6714. pub fn aya::programs::perf_event::PerfEvent::take_link(&mut self, link_id: aya::programs::perf_event::PerfEventLinkId) -> core::result::Result<aya::programs::perf_event::PerfEventLink, aya::programs::ProgramError>
  6715. impl aya::programs::perf_event::PerfEvent
  6716. pub fn aya::programs::perf_event::PerfEvent::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  6717. impl aya::programs::perf_event::PerfEvent
  6718. pub fn aya::programs::perf_event::PerfEvent::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  6719. impl aya::programs::perf_event::PerfEvent
  6720. pub fn aya::programs::perf_event::PerfEvent::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  6721. impl aya::programs::perf_event::PerfEvent
  6722. pub fn aya::programs::perf_event::PerfEvent::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  6723. pub fn aya::programs::perf_event::PerfEvent::unpin(self) -> core::result::Result<(), std::io::error::Error>
  6724. impl aya::programs::perf_event::PerfEvent
  6725. pub fn aya::programs::perf_event::PerfEvent::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6726. impl core::fmt::Debug for aya::programs::perf_event::PerfEvent
  6727. pub fn aya::programs::perf_event::PerfEvent::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6728. impl core::ops::drop::Drop for aya::programs::perf_event::PerfEvent
  6729. pub fn aya::programs::perf_event::PerfEvent::drop(&mut self)
  6730. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::perf_event::PerfEvent
  6731. pub type &'a aya::programs::perf_event::PerfEvent::Error = aya::programs::ProgramError
  6732. pub fn &'a aya::programs::perf_event::PerfEvent::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::perf_event::PerfEvent, aya::programs::ProgramError>
  6733. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::perf_event::PerfEvent
  6734. pub type &'a mut aya::programs::perf_event::PerfEvent::Error = aya::programs::ProgramError
  6735. pub fn &'a mut aya::programs::perf_event::PerfEvent::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::perf_event::PerfEvent, aya::programs::ProgramError>
  6736. impl core::marker::Send for aya::programs::perf_event::PerfEvent
  6737. impl core::marker::Sync for aya::programs::perf_event::PerfEvent
  6738. impl core::marker::Unpin for aya::programs::perf_event::PerfEvent
  6739. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::PerfEvent
  6740. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::PerfEvent
  6741. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::PerfEvent where U: core::convert::From<T>
  6742. pub fn aya::programs::perf_event::PerfEvent::into(self) -> U
  6743. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::PerfEvent where U: core::convert::Into<T>
  6744. pub type aya::programs::perf_event::PerfEvent::Error = core::convert::Infallible
  6745. pub fn aya::programs::perf_event::PerfEvent::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6746. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_event::PerfEvent where U: core::convert::TryFrom<T>
  6747. pub type aya::programs::perf_event::PerfEvent::Error = <U as core::convert::TryFrom<T>>::Error
  6748. pub fn aya::programs::perf_event::PerfEvent::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6749. impl<T> core::any::Any for aya::programs::perf_event::PerfEvent where T: 'static + core::marker::Sized
  6750. pub fn aya::programs::perf_event::PerfEvent::type_id(&self) -> core::any::TypeId
  6751. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::PerfEvent where T: core::marker::Sized
  6752. pub fn aya::programs::perf_event::PerfEvent::borrow(&self) -> &T
  6753. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::PerfEvent where T: core::marker::Sized
  6754. pub fn aya::programs::perf_event::PerfEvent::borrow_mut(&mut self) -> &mut T
  6755. impl<T> core::convert::From<T> for aya::programs::perf_event::PerfEvent
  6756. pub fn aya::programs::perf_event::PerfEvent::from(t: T) -> T
  6757. pub struct aya::programs::ProgramFd(_)
  6758. impl aya::programs::ProgramFd
  6759. pub fn aya::programs::ProgramFd::try_clone(&self) -> std::io::error::Result<Self>
  6760. impl core::fmt::Debug for aya::programs::ProgramFd
  6761. pub fn aya::programs::ProgramFd::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6762. impl std::os::fd::owned::AsFd for aya::programs::ProgramFd
  6763. pub fn aya::programs::ProgramFd::as_fd(&self) -> std::os::fd::owned::BorrowedFd<'_>
  6764. impl core::marker::Send for aya::programs::ProgramFd
  6765. impl core::marker::Sync for aya::programs::ProgramFd
  6766. impl core::marker::Unpin for aya::programs::ProgramFd
  6767. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::ProgramFd
  6768. impl core::panic::unwind_safe::UnwindSafe for aya::programs::ProgramFd
  6769. impl<T, U> core::convert::Into<U> for aya::programs::ProgramFd where U: core::convert::From<T>
  6770. pub fn aya::programs::ProgramFd::into(self) -> U
  6771. impl<T, U> core::convert::TryFrom<U> for aya::programs::ProgramFd where U: core::convert::Into<T>
  6772. pub type aya::programs::ProgramFd::Error = core::convert::Infallible
  6773. pub fn aya::programs::ProgramFd::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6774. impl<T, U> core::convert::TryInto<U> for aya::programs::ProgramFd where U: core::convert::TryFrom<T>
  6775. pub type aya::programs::ProgramFd::Error = <U as core::convert::TryFrom<T>>::Error
  6776. pub fn aya::programs::ProgramFd::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6777. impl<T> core::any::Any for aya::programs::ProgramFd where T: 'static + core::marker::Sized
  6778. pub fn aya::programs::ProgramFd::type_id(&self) -> core::any::TypeId
  6779. impl<T> core::borrow::Borrow<T> for aya::programs::ProgramFd where T: core::marker::Sized
  6780. pub fn aya::programs::ProgramFd::borrow(&self) -> &T
  6781. impl<T> core::borrow::BorrowMut<T> for aya::programs::ProgramFd where T: core::marker::Sized
  6782. pub fn aya::programs::ProgramFd::borrow_mut(&mut self) -> &mut T
  6783. impl<T> core::convert::From<T> for aya::programs::ProgramFd
  6784. pub fn aya::programs::ProgramFd::from(t: T) -> T
  6785. pub struct aya::programs::ProgramInfo(_)
  6786. impl aya::programs::ProgramInfo
  6787. pub fn aya::programs::ProgramInfo::btf_id(&self) -> core::option::Option<core::num::nonzero::NonZeroU32>
  6788. pub fn aya::programs::ProgramInfo::fd(&self) -> core::result::Result<aya::programs::ProgramFd, aya::programs::ProgramError>
  6789. pub fn aya::programs::ProgramInfo::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  6790. pub fn aya::programs::ProgramInfo::gpl_compatible(&self) -> bool
  6791. pub fn aya::programs::ProgramInfo::id(&self) -> u32
  6792. pub fn aya::programs::ProgramInfo::loaded_at(&self) -> std::time::SystemTime
  6793. pub fn aya::programs::ProgramInfo::map_ids(&self) -> core::result::Result<alloc::vec::Vec<u32>, aya::programs::ProgramError>
  6794. pub fn aya::programs::ProgramInfo::memory_locked(&self) -> core::result::Result<u32, aya::programs::ProgramError>
  6795. pub fn aya::programs::ProgramInfo::name(&self) -> &[u8]
  6796. pub fn aya::programs::ProgramInfo::name_as_str(&self) -> core::option::Option<&str>
  6797. pub fn aya::programs::ProgramInfo::program_type(&self) -> u32
  6798. pub fn aya::programs::ProgramInfo::size_jitted(&self) -> u32
  6799. pub fn aya::programs::ProgramInfo::size_translated(&self) -> u32
  6800. pub fn aya::programs::ProgramInfo::tag(&self) -> u64
  6801. pub fn aya::programs::ProgramInfo::verified_instruction_count(&self) -> u32
  6802. impl core::fmt::Debug for aya::programs::ProgramInfo
  6803. pub fn aya::programs::ProgramInfo::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6804. impl core::marker::Send for aya::programs::ProgramInfo
  6805. impl core::marker::Sync for aya::programs::ProgramInfo
  6806. impl core::marker::Unpin for aya::programs::ProgramInfo
  6807. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::ProgramInfo
  6808. impl core::panic::unwind_safe::UnwindSafe for aya::programs::ProgramInfo
  6809. impl<T, U> core::convert::Into<U> for aya::programs::ProgramInfo where U: core::convert::From<T>
  6810. pub fn aya::programs::ProgramInfo::into(self) -> U
  6811. impl<T, U> core::convert::TryFrom<U> for aya::programs::ProgramInfo where U: core::convert::Into<T>
  6812. pub type aya::programs::ProgramInfo::Error = core::convert::Infallible
  6813. pub fn aya::programs::ProgramInfo::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6814. impl<T, U> core::convert::TryInto<U> for aya::programs::ProgramInfo where U: core::convert::TryFrom<T>
  6815. pub type aya::programs::ProgramInfo::Error = <U as core::convert::TryFrom<T>>::Error
  6816. pub fn aya::programs::ProgramInfo::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6817. impl<T> core::any::Any for aya::programs::ProgramInfo where T: 'static + core::marker::Sized
  6818. pub fn aya::programs::ProgramInfo::type_id(&self) -> core::any::TypeId
  6819. impl<T> core::borrow::Borrow<T> for aya::programs::ProgramInfo where T: core::marker::Sized
  6820. pub fn aya::programs::ProgramInfo::borrow(&self) -> &T
  6821. impl<T> core::borrow::BorrowMut<T> for aya::programs::ProgramInfo where T: core::marker::Sized
  6822. pub fn aya::programs::ProgramInfo::borrow_mut(&mut self) -> &mut T
  6823. impl<T> core::convert::From<T> for aya::programs::ProgramInfo
  6824. pub fn aya::programs::ProgramInfo::from(t: T) -> T
  6825. pub struct aya::programs::RawTracePoint
  6826. impl aya::programs::RawTracePoint
  6827. pub fn aya::programs::RawTracePoint::attach(&mut self, tp_name: &str) -> core::result::Result<RawTracePointLinkId, aya::programs::ProgramError>
  6828. pub fn aya::programs::RawTracePoint::detach(&mut self, link_id: RawTracePointLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  6829. pub fn aya::programs::RawTracePoint::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6830. pub fn aya::programs::RawTracePoint::take_link(&mut self, link_id: RawTracePointLinkId) -> core::result::Result<RawTracePointLink, aya::programs::ProgramError>
  6831. impl aya::programs::RawTracePoint
  6832. pub fn aya::programs::RawTracePoint::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  6833. impl aya::programs::RawTracePoint
  6834. pub fn aya::programs::RawTracePoint::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  6835. impl aya::programs::RawTracePoint
  6836. pub fn aya::programs::RawTracePoint::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  6837. impl aya::programs::RawTracePoint
  6838. pub fn aya::programs::RawTracePoint::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  6839. pub fn aya::programs::RawTracePoint::unpin(self) -> core::result::Result<(), std::io::error::Error>
  6840. impl aya::programs::RawTracePoint
  6841. pub fn aya::programs::RawTracePoint::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6842. impl core::fmt::Debug for aya::programs::RawTracePoint
  6843. pub fn aya::programs::RawTracePoint::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6844. impl core::ops::drop::Drop for aya::programs::RawTracePoint
  6845. pub fn aya::programs::RawTracePoint::drop(&mut self)
  6846. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::RawTracePoint
  6847. pub type &'a aya::programs::RawTracePoint::Error = aya::programs::ProgramError
  6848. pub fn &'a aya::programs::RawTracePoint::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::RawTracePoint, aya::programs::ProgramError>
  6849. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::RawTracePoint
  6850. pub type &'a mut aya::programs::RawTracePoint::Error = aya::programs::ProgramError
  6851. pub fn &'a mut aya::programs::RawTracePoint::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::RawTracePoint, aya::programs::ProgramError>
  6852. impl core::marker::Send for aya::programs::RawTracePoint
  6853. impl core::marker::Sync for aya::programs::RawTracePoint
  6854. impl core::marker::Unpin for aya::programs::RawTracePoint
  6855. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::RawTracePoint
  6856. impl core::panic::unwind_safe::UnwindSafe for aya::programs::RawTracePoint
  6857. impl<T, U> core::convert::Into<U> for aya::programs::RawTracePoint where U: core::convert::From<T>
  6858. pub fn aya::programs::RawTracePoint::into(self) -> U
  6859. impl<T, U> core::convert::TryFrom<U> for aya::programs::RawTracePoint where U: core::convert::Into<T>
  6860. pub type aya::programs::RawTracePoint::Error = core::convert::Infallible
  6861. pub fn aya::programs::RawTracePoint::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6862. impl<T, U> core::convert::TryInto<U> for aya::programs::RawTracePoint where U: core::convert::TryFrom<T>
  6863. pub type aya::programs::RawTracePoint::Error = <U as core::convert::TryFrom<T>>::Error
  6864. pub fn aya::programs::RawTracePoint::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6865. impl<T> core::any::Any for aya::programs::RawTracePoint where T: 'static + core::marker::Sized
  6866. pub fn aya::programs::RawTracePoint::type_id(&self) -> core::any::TypeId
  6867. impl<T> core::borrow::Borrow<T> for aya::programs::RawTracePoint where T: core::marker::Sized
  6868. pub fn aya::programs::RawTracePoint::borrow(&self) -> &T
  6869. impl<T> core::borrow::BorrowMut<T> for aya::programs::RawTracePoint where T: core::marker::Sized
  6870. pub fn aya::programs::RawTracePoint::borrow_mut(&mut self) -> &mut T
  6871. impl<T> core::convert::From<T> for aya::programs::RawTracePoint
  6872. pub fn aya::programs::RawTracePoint::from(t: T) -> T
  6873. pub struct aya::programs::SchedClassifier
  6874. impl aya::programs::tc::SchedClassifier
  6875. pub fn aya::programs::tc::SchedClassifier::attach(&mut self, interface: &str, attach_type: aya::programs::tc::TcAttachType) -> core::result::Result<aya::programs::tc::SchedClassifierLinkId, aya::programs::ProgramError>
  6876. pub fn aya::programs::tc::SchedClassifier::attach_to_link(&mut self, link: aya::programs::tc::SchedClassifierLink) -> core::result::Result<aya::programs::tc::SchedClassifierLinkId, aya::programs::ProgramError>
  6877. pub fn aya::programs::tc::SchedClassifier::attach_with_options(&mut self, interface: &str, attach_type: aya::programs::tc::TcAttachType, options: aya::programs::tc::TcOptions) -> core::result::Result<aya::programs::tc::SchedClassifierLinkId, aya::programs::ProgramError>
  6878. pub fn aya::programs::tc::SchedClassifier::detach(&mut self, link_id: aya::programs::tc::SchedClassifierLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  6879. pub fn aya::programs::tc::SchedClassifier::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  6880. pub fn aya::programs::tc::SchedClassifier::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6881. pub fn aya::programs::tc::SchedClassifier::take_link(&mut self, link_id: aya::programs::tc::SchedClassifierLinkId) -> core::result::Result<aya::programs::tc::SchedClassifierLink, aya::programs::ProgramError>
  6882. impl aya::programs::tc::SchedClassifier
  6883. pub fn aya::programs::tc::SchedClassifier::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  6884. impl aya::programs::tc::SchedClassifier
  6885. pub fn aya::programs::tc::SchedClassifier::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  6886. impl aya::programs::tc::SchedClassifier
  6887. pub fn aya::programs::tc::SchedClassifier::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  6888. pub fn aya::programs::tc::SchedClassifier::unpin(self) -> core::result::Result<(), std::io::error::Error>
  6889. impl aya::programs::tc::SchedClassifier
  6890. pub fn aya::programs::tc::SchedClassifier::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6891. impl core::fmt::Debug for aya::programs::tc::SchedClassifier
  6892. pub fn aya::programs::tc::SchedClassifier::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6893. impl core::ops::drop::Drop for aya::programs::tc::SchedClassifier
  6894. pub fn aya::programs::tc::SchedClassifier::drop(&mut self)
  6895. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::tc::SchedClassifier
  6896. pub type &'a aya::programs::tc::SchedClassifier::Error = aya::programs::ProgramError
  6897. pub fn &'a aya::programs::tc::SchedClassifier::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::tc::SchedClassifier, aya::programs::ProgramError>
  6898. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::tc::SchedClassifier
  6899. pub type &'a mut aya::programs::tc::SchedClassifier::Error = aya::programs::ProgramError
  6900. pub fn &'a mut aya::programs::tc::SchedClassifier::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::tc::SchedClassifier, aya::programs::ProgramError>
  6901. impl core::marker::Send for aya::programs::tc::SchedClassifier
  6902. impl core::marker::Sync for aya::programs::tc::SchedClassifier
  6903. impl core::marker::Unpin for aya::programs::tc::SchedClassifier
  6904. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::SchedClassifier
  6905. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tc::SchedClassifier
  6906. impl<T, U> core::convert::Into<U> for aya::programs::tc::SchedClassifier where U: core::convert::From<T>
  6907. pub fn aya::programs::tc::SchedClassifier::into(self) -> U
  6908. impl<T, U> core::convert::TryFrom<U> for aya::programs::tc::SchedClassifier where U: core::convert::Into<T>
  6909. pub type aya::programs::tc::SchedClassifier::Error = core::convert::Infallible
  6910. pub fn aya::programs::tc::SchedClassifier::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6911. impl<T, U> core::convert::TryInto<U> for aya::programs::tc::SchedClassifier where U: core::convert::TryFrom<T>
  6912. pub type aya::programs::tc::SchedClassifier::Error = <U as core::convert::TryFrom<T>>::Error
  6913. pub fn aya::programs::tc::SchedClassifier::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6914. impl<T> core::any::Any for aya::programs::tc::SchedClassifier where T: 'static + core::marker::Sized
  6915. pub fn aya::programs::tc::SchedClassifier::type_id(&self) -> core::any::TypeId
  6916. impl<T> core::borrow::Borrow<T> for aya::programs::tc::SchedClassifier where T: core::marker::Sized
  6917. pub fn aya::programs::tc::SchedClassifier::borrow(&self) -> &T
  6918. impl<T> core::borrow::BorrowMut<T> for aya::programs::tc::SchedClassifier where T: core::marker::Sized
  6919. pub fn aya::programs::tc::SchedClassifier::borrow_mut(&mut self) -> &mut T
  6920. impl<T> core::convert::From<T> for aya::programs::tc::SchedClassifier
  6921. pub fn aya::programs::tc::SchedClassifier::from(t: T) -> T
  6922. pub struct aya::programs::SkLookup
  6923. impl aya::programs::SkLookup
  6924. pub fn aya::programs::SkLookup::attach<T: std::os::fd::owned::AsFd>(&mut self, netns: T) -> core::result::Result<SkLookupLinkId, aya::programs::ProgramError>
  6925. pub fn aya::programs::SkLookup::detach(&mut self, link_id: SkLookupLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  6926. pub fn aya::programs::SkLookup::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6927. pub fn aya::programs::SkLookup::take_link(&mut self, link_id: SkLookupLinkId) -> core::result::Result<SkLookupLink, aya::programs::ProgramError>
  6928. impl aya::programs::SkLookup
  6929. pub fn aya::programs::SkLookup::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  6930. impl aya::programs::SkLookup
  6931. pub fn aya::programs::SkLookup::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  6932. impl aya::programs::SkLookup
  6933. pub fn aya::programs::SkLookup::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  6934. impl aya::programs::SkLookup
  6935. pub fn aya::programs::SkLookup::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  6936. pub fn aya::programs::SkLookup::unpin(self) -> core::result::Result<(), std::io::error::Error>
  6937. impl aya::programs::SkLookup
  6938. pub fn aya::programs::SkLookup::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6939. impl core::fmt::Debug for aya::programs::SkLookup
  6940. pub fn aya::programs::SkLookup::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6941. impl core::ops::drop::Drop for aya::programs::SkLookup
  6942. pub fn aya::programs::SkLookup::drop(&mut self)
  6943. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::SkLookup
  6944. pub type &'a aya::programs::SkLookup::Error = aya::programs::ProgramError
  6945. pub fn &'a aya::programs::SkLookup::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::SkLookup, aya::programs::ProgramError>
  6946. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::SkLookup
  6947. pub type &'a mut aya::programs::SkLookup::Error = aya::programs::ProgramError
  6948. pub fn &'a mut aya::programs::SkLookup::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::SkLookup, aya::programs::ProgramError>
  6949. impl core::marker::Send for aya::programs::SkLookup
  6950. impl core::marker::Sync for aya::programs::SkLookup
  6951. impl core::marker::Unpin for aya::programs::SkLookup
  6952. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::SkLookup
  6953. impl core::panic::unwind_safe::UnwindSafe for aya::programs::SkLookup
  6954. impl<T, U> core::convert::Into<U> for aya::programs::SkLookup where U: core::convert::From<T>
  6955. pub fn aya::programs::SkLookup::into(self) -> U
  6956. impl<T, U> core::convert::TryFrom<U> for aya::programs::SkLookup where U: core::convert::Into<T>
  6957. pub type aya::programs::SkLookup::Error = core::convert::Infallible
  6958. pub fn aya::programs::SkLookup::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6959. impl<T, U> core::convert::TryInto<U> for aya::programs::SkLookup where U: core::convert::TryFrom<T>
  6960. pub type aya::programs::SkLookup::Error = <U as core::convert::TryFrom<T>>::Error
  6961. pub fn aya::programs::SkLookup::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6962. impl<T> core::any::Any for aya::programs::SkLookup where T: 'static + core::marker::Sized
  6963. pub fn aya::programs::SkLookup::type_id(&self) -> core::any::TypeId
  6964. impl<T> core::borrow::Borrow<T> for aya::programs::SkLookup where T: core::marker::Sized
  6965. pub fn aya::programs::SkLookup::borrow(&self) -> &T
  6966. impl<T> core::borrow::BorrowMut<T> for aya::programs::SkLookup where T: core::marker::Sized
  6967. pub fn aya::programs::SkLookup::borrow_mut(&mut self) -> &mut T
  6968. impl<T> core::convert::From<T> for aya::programs::SkLookup
  6969. pub fn aya::programs::SkLookup::from(t: T) -> T
  6970. pub struct aya::programs::SkMsg
  6971. impl aya::programs::SkMsg
  6972. pub fn aya::programs::SkMsg::attach(&mut self, map: &aya::maps::sock::SockMapFd) -> core::result::Result<SkMsgLinkId, aya::programs::ProgramError>
  6973. pub fn aya::programs::SkMsg::detach(&mut self, link_id: SkMsgLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  6974. pub fn aya::programs::SkMsg::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6975. pub fn aya::programs::SkMsg::take_link(&mut self, link_id: SkMsgLinkId) -> core::result::Result<SkMsgLink, aya::programs::ProgramError>
  6976. impl aya::programs::SkMsg
  6977. pub fn aya::programs::SkMsg::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  6978. impl aya::programs::SkMsg
  6979. pub fn aya::programs::SkMsg::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  6980. impl aya::programs::SkMsg
  6981. pub fn aya::programs::SkMsg::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  6982. impl aya::programs::SkMsg
  6983. pub fn aya::programs::SkMsg::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  6984. pub fn aya::programs::SkMsg::unpin(self) -> core::result::Result<(), std::io::error::Error>
  6985. impl aya::programs::SkMsg
  6986. pub fn aya::programs::SkMsg::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6987. impl core::fmt::Debug for aya::programs::SkMsg
  6988. pub fn aya::programs::SkMsg::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6989. impl core::ops::drop::Drop for aya::programs::SkMsg
  6990. pub fn aya::programs::SkMsg::drop(&mut self)
  6991. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::SkMsg
  6992. pub type &'a aya::programs::SkMsg::Error = aya::programs::ProgramError
  6993. pub fn &'a aya::programs::SkMsg::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::SkMsg, aya::programs::ProgramError>
  6994. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::SkMsg
  6995. pub type &'a mut aya::programs::SkMsg::Error = aya::programs::ProgramError
  6996. pub fn &'a mut aya::programs::SkMsg::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::SkMsg, aya::programs::ProgramError>
  6997. impl core::marker::Send for aya::programs::SkMsg
  6998. impl core::marker::Sync for aya::programs::SkMsg
  6999. impl core::marker::Unpin for aya::programs::SkMsg
  7000. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::SkMsg
  7001. impl core::panic::unwind_safe::UnwindSafe for aya::programs::SkMsg
  7002. impl<T, U> core::convert::Into<U> for aya::programs::SkMsg where U: core::convert::From<T>
  7003. pub fn aya::programs::SkMsg::into(self) -> U
  7004. impl<T, U> core::convert::TryFrom<U> for aya::programs::SkMsg where U: core::convert::Into<T>
  7005. pub type aya::programs::SkMsg::Error = core::convert::Infallible
  7006. pub fn aya::programs::SkMsg::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7007. impl<T, U> core::convert::TryInto<U> for aya::programs::SkMsg where U: core::convert::TryFrom<T>
  7008. pub type aya::programs::SkMsg::Error = <U as core::convert::TryFrom<T>>::Error
  7009. pub fn aya::programs::SkMsg::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7010. impl<T> core::any::Any for aya::programs::SkMsg where T: 'static + core::marker::Sized
  7011. pub fn aya::programs::SkMsg::type_id(&self) -> core::any::TypeId
  7012. impl<T> core::borrow::Borrow<T> for aya::programs::SkMsg where T: core::marker::Sized
  7013. pub fn aya::programs::SkMsg::borrow(&self) -> &T
  7014. impl<T> core::borrow::BorrowMut<T> for aya::programs::SkMsg where T: core::marker::Sized
  7015. pub fn aya::programs::SkMsg::borrow_mut(&mut self) -> &mut T
  7016. impl<T> core::convert::From<T> for aya::programs::SkMsg
  7017. pub fn aya::programs::SkMsg::from(t: T) -> T
  7018. pub struct aya::programs::SkSkb
  7019. impl aya::programs::SkSkb
  7020. pub fn aya::programs::SkSkb::attach(&mut self, map: &aya::maps::sock::SockMapFd) -> core::result::Result<SkSkbLinkId, aya::programs::ProgramError>
  7021. pub fn aya::programs::SkSkb::detach(&mut self, link_id: SkSkbLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  7022. pub fn aya::programs::SkSkb::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, kind: aya::programs::SkSkbKind) -> core::result::Result<Self, aya::programs::ProgramError>
  7023. pub fn aya::programs::SkSkb::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  7024. pub fn aya::programs::SkSkb::take_link(&mut self, link_id: SkSkbLinkId) -> core::result::Result<SkSkbLink, aya::programs::ProgramError>
  7025. impl aya::programs::SkSkb
  7026. pub fn aya::programs::SkSkb::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  7027. impl aya::programs::SkSkb
  7028. pub fn aya::programs::SkSkb::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  7029. impl aya::programs::SkSkb
  7030. pub fn aya::programs::SkSkb::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  7031. pub fn aya::programs::SkSkb::unpin(self) -> core::result::Result<(), std::io::error::Error>
  7032. impl aya::programs::SkSkb
  7033. pub fn aya::programs::SkSkb::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  7034. impl core::fmt::Debug for aya::programs::SkSkb
  7035. pub fn aya::programs::SkSkb::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7036. impl core::ops::drop::Drop for aya::programs::SkSkb
  7037. pub fn aya::programs::SkSkb::drop(&mut self)
  7038. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::SkSkb
  7039. pub type &'a aya::programs::SkSkb::Error = aya::programs::ProgramError
  7040. pub fn &'a aya::programs::SkSkb::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::SkSkb, aya::programs::ProgramError>
  7041. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::SkSkb
  7042. pub type &'a mut aya::programs::SkSkb::Error = aya::programs::ProgramError
  7043. pub fn &'a mut aya::programs::SkSkb::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::SkSkb, aya::programs::ProgramError>
  7044. impl core::marker::Send for aya::programs::SkSkb
  7045. impl core::marker::Sync for aya::programs::SkSkb
  7046. impl core::marker::Unpin for aya::programs::SkSkb
  7047. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::SkSkb
  7048. impl core::panic::unwind_safe::UnwindSafe for aya::programs::SkSkb
  7049. impl<T, U> core::convert::Into<U> for aya::programs::SkSkb where U: core::convert::From<T>
  7050. pub fn aya::programs::SkSkb::into(self) -> U
  7051. impl<T, U> core::convert::TryFrom<U> for aya::programs::SkSkb where U: core::convert::Into<T>
  7052. pub type aya::programs::SkSkb::Error = core::convert::Infallible
  7053. pub fn aya::programs::SkSkb::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7054. impl<T, U> core::convert::TryInto<U> for aya::programs::SkSkb where U: core::convert::TryFrom<T>
  7055. pub type aya::programs::SkSkb::Error = <U as core::convert::TryFrom<T>>::Error
  7056. pub fn aya::programs::SkSkb::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7057. impl<T> core::any::Any for aya::programs::SkSkb where T: 'static + core::marker::Sized
  7058. pub fn aya::programs::SkSkb::type_id(&self) -> core::any::TypeId
  7059. impl<T> core::borrow::Borrow<T> for aya::programs::SkSkb where T: core::marker::Sized
  7060. pub fn aya::programs::SkSkb::borrow(&self) -> &T
  7061. impl<T> core::borrow::BorrowMut<T> for aya::programs::SkSkb where T: core::marker::Sized
  7062. pub fn aya::programs::SkSkb::borrow_mut(&mut self) -> &mut T
  7063. impl<T> core::convert::From<T> for aya::programs::SkSkb
  7064. pub fn aya::programs::SkSkb::from(t: T) -> T
  7065. pub struct aya::programs::SockOps
  7066. impl aya::programs::SockOps
  7067. pub fn aya::programs::SockOps::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T) -> core::result::Result<SockOpsLinkId, aya::programs::ProgramError>
  7068. pub fn aya::programs::SockOps::detach(&mut self, link_id: SockOpsLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  7069. pub fn aya::programs::SockOps::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  7070. pub fn aya::programs::SockOps::take_link(&mut self, link_id: SockOpsLinkId) -> core::result::Result<SockOpsLink, aya::programs::ProgramError>
  7071. impl aya::programs::SockOps
  7072. pub fn aya::programs::SockOps::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  7073. impl aya::programs::SockOps
  7074. pub fn aya::programs::SockOps::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  7075. impl aya::programs::SockOps
  7076. pub fn aya::programs::SockOps::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  7077. impl aya::programs::SockOps
  7078. pub fn aya::programs::SockOps::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  7079. pub fn aya::programs::SockOps::unpin(self) -> core::result::Result<(), std::io::error::Error>
  7080. impl aya::programs::SockOps
  7081. pub fn aya::programs::SockOps::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  7082. impl core::fmt::Debug for aya::programs::SockOps
  7083. pub fn aya::programs::SockOps::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7084. impl core::ops::drop::Drop for aya::programs::SockOps
  7085. pub fn aya::programs::SockOps::drop(&mut self)
  7086. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::SockOps
  7087. pub type &'a aya::programs::SockOps::Error = aya::programs::ProgramError
  7088. pub fn &'a aya::programs::SockOps::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::SockOps, aya::programs::ProgramError>
  7089. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::SockOps
  7090. pub type &'a mut aya::programs::SockOps::Error = aya::programs::ProgramError
  7091. pub fn &'a mut aya::programs::SockOps::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::SockOps, aya::programs::ProgramError>
  7092. impl core::marker::Send for aya::programs::SockOps
  7093. impl core::marker::Sync for aya::programs::SockOps
  7094. impl core::marker::Unpin for aya::programs::SockOps
  7095. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::SockOps
  7096. impl core::panic::unwind_safe::UnwindSafe for aya::programs::SockOps
  7097. impl<T, U> core::convert::Into<U> for aya::programs::SockOps where U: core::convert::From<T>
  7098. pub fn aya::programs::SockOps::into(self) -> U
  7099. impl<T, U> core::convert::TryFrom<U> for aya::programs::SockOps where U: core::convert::Into<T>
  7100. pub type aya::programs::SockOps::Error = core::convert::Infallible
  7101. pub fn aya::programs::SockOps::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7102. impl<T, U> core::convert::TryInto<U> for aya::programs::SockOps where U: core::convert::TryFrom<T>
  7103. pub type aya::programs::SockOps::Error = <U as core::convert::TryFrom<T>>::Error
  7104. pub fn aya::programs::SockOps::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7105. impl<T> core::any::Any for aya::programs::SockOps where T: 'static + core::marker::Sized
  7106. pub fn aya::programs::SockOps::type_id(&self) -> core::any::TypeId
  7107. impl<T> core::borrow::Borrow<T> for aya::programs::SockOps where T: core::marker::Sized
  7108. pub fn aya::programs::SockOps::borrow(&self) -> &T
  7109. impl<T> core::borrow::BorrowMut<T> for aya::programs::SockOps where T: core::marker::Sized
  7110. pub fn aya::programs::SockOps::borrow_mut(&mut self) -> &mut T
  7111. impl<T> core::convert::From<T> for aya::programs::SockOps
  7112. pub fn aya::programs::SockOps::from(t: T) -> T
  7113. pub struct aya::programs::SocketFilter
  7114. impl aya::programs::SocketFilter
  7115. pub fn aya::programs::SocketFilter::attach<T: std::os::fd::owned::AsFd>(&mut self, socket: T) -> core::result::Result<SocketFilterLinkId, aya::programs::ProgramError>
  7116. pub fn aya::programs::SocketFilter::detach(&mut self, link_id: SocketFilterLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  7117. pub fn aya::programs::SocketFilter::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  7118. pub fn aya::programs::SocketFilter::take_link(&mut self, link_id: SocketFilterLinkId) -> core::result::Result<SocketFilterLink, aya::programs::ProgramError>
  7119. impl aya::programs::SocketFilter
  7120. pub fn aya::programs::SocketFilter::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  7121. impl aya::programs::SocketFilter
  7122. pub fn aya::programs::SocketFilter::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  7123. impl aya::programs::SocketFilter
  7124. pub fn aya::programs::SocketFilter::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  7125. impl aya::programs::SocketFilter
  7126. pub fn aya::programs::SocketFilter::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  7127. pub fn aya::programs::SocketFilter::unpin(self) -> core::result::Result<(), std::io::error::Error>
  7128. impl aya::programs::SocketFilter
  7129. pub fn aya::programs::SocketFilter::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  7130. impl core::fmt::Debug for aya::programs::SocketFilter
  7131. pub fn aya::programs::SocketFilter::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7132. impl core::ops::drop::Drop for aya::programs::SocketFilter
  7133. pub fn aya::programs::SocketFilter::drop(&mut self)
  7134. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::SocketFilter
  7135. pub type &'a aya::programs::SocketFilter::Error = aya::programs::ProgramError
  7136. pub fn &'a aya::programs::SocketFilter::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::SocketFilter, aya::programs::ProgramError>
  7137. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::SocketFilter
  7138. pub type &'a mut aya::programs::SocketFilter::Error = aya::programs::ProgramError
  7139. pub fn &'a mut aya::programs::SocketFilter::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::SocketFilter, aya::programs::ProgramError>
  7140. impl core::marker::Send for aya::programs::SocketFilter
  7141. impl core::marker::Sync for aya::programs::SocketFilter
  7142. impl core::marker::Unpin for aya::programs::SocketFilter
  7143. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::SocketFilter
  7144. impl core::panic::unwind_safe::UnwindSafe for aya::programs::SocketFilter
  7145. impl<T, U> core::convert::Into<U> for aya::programs::SocketFilter where U: core::convert::From<T>
  7146. pub fn aya::programs::SocketFilter::into(self) -> U
  7147. impl<T, U> core::convert::TryFrom<U> for aya::programs::SocketFilter where U: core::convert::Into<T>
  7148. pub type aya::programs::SocketFilter::Error = core::convert::Infallible
  7149. pub fn aya::programs::SocketFilter::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7150. impl<T, U> core::convert::TryInto<U> for aya::programs::SocketFilter where U: core::convert::TryFrom<T>
  7151. pub type aya::programs::SocketFilter::Error = <U as core::convert::TryFrom<T>>::Error
  7152. pub fn aya::programs::SocketFilter::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7153. impl<T> core::any::Any for aya::programs::SocketFilter where T: 'static + core::marker::Sized
  7154. pub fn aya::programs::SocketFilter::type_id(&self) -> core::any::TypeId
  7155. impl<T> core::borrow::Borrow<T> for aya::programs::SocketFilter where T: core::marker::Sized
  7156. pub fn aya::programs::SocketFilter::borrow(&self) -> &T
  7157. impl<T> core::borrow::BorrowMut<T> for aya::programs::SocketFilter where T: core::marker::Sized
  7158. pub fn aya::programs::SocketFilter::borrow_mut(&mut self) -> &mut T
  7159. impl<T> core::convert::From<T> for aya::programs::SocketFilter
  7160. pub fn aya::programs::SocketFilter::from(t: T) -> T
  7161. pub struct aya::programs::TracePoint
  7162. impl aya::programs::trace_point::TracePoint
  7163. pub fn aya::programs::trace_point::TracePoint::attach(&mut self, category: &str, name: &str) -> core::result::Result<aya::programs::trace_point::TracePointLinkId, aya::programs::ProgramError>
  7164. pub fn aya::programs::trace_point::TracePoint::detach(&mut self, link_id: aya::programs::trace_point::TracePointLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  7165. pub fn aya::programs::trace_point::TracePoint::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  7166. pub fn aya::programs::trace_point::TracePoint::take_link(&mut self, link_id: aya::programs::trace_point::TracePointLinkId) -> core::result::Result<aya::programs::trace_point::TracePointLink, aya::programs::ProgramError>
  7167. impl aya::programs::trace_point::TracePoint
  7168. pub fn aya::programs::trace_point::TracePoint::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  7169. impl aya::programs::trace_point::TracePoint
  7170. pub fn aya::programs::trace_point::TracePoint::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  7171. impl aya::programs::trace_point::TracePoint
  7172. pub fn aya::programs::trace_point::TracePoint::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  7173. impl aya::programs::trace_point::TracePoint
  7174. pub fn aya::programs::trace_point::TracePoint::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  7175. pub fn aya::programs::trace_point::TracePoint::unpin(self) -> core::result::Result<(), std::io::error::Error>
  7176. impl aya::programs::trace_point::TracePoint
  7177. pub fn aya::programs::trace_point::TracePoint::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  7178. impl core::fmt::Debug for aya::programs::trace_point::TracePoint
  7179. pub fn aya::programs::trace_point::TracePoint::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7180. impl core::ops::drop::Drop for aya::programs::trace_point::TracePoint
  7181. pub fn aya::programs::trace_point::TracePoint::drop(&mut self)
  7182. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::trace_point::TracePoint
  7183. pub type &'a aya::programs::trace_point::TracePoint::Error = aya::programs::ProgramError
  7184. pub fn &'a aya::programs::trace_point::TracePoint::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::trace_point::TracePoint, aya::programs::ProgramError>
  7185. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::trace_point::TracePoint
  7186. pub type &'a mut aya::programs::trace_point::TracePoint::Error = aya::programs::ProgramError
  7187. pub fn &'a mut aya::programs::trace_point::TracePoint::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::trace_point::TracePoint, aya::programs::ProgramError>
  7188. impl core::marker::Send for aya::programs::trace_point::TracePoint
  7189. impl core::marker::Sync for aya::programs::trace_point::TracePoint
  7190. impl core::marker::Unpin for aya::programs::trace_point::TracePoint
  7191. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::trace_point::TracePoint
  7192. impl core::panic::unwind_safe::UnwindSafe for aya::programs::trace_point::TracePoint
  7193. impl<T, U> core::convert::Into<U> for aya::programs::trace_point::TracePoint where U: core::convert::From<T>
  7194. pub fn aya::programs::trace_point::TracePoint::into(self) -> U
  7195. impl<T, U> core::convert::TryFrom<U> for aya::programs::trace_point::TracePoint where U: core::convert::Into<T>
  7196. pub type aya::programs::trace_point::TracePoint::Error = core::convert::Infallible
  7197. pub fn aya::programs::trace_point::TracePoint::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7198. impl<T, U> core::convert::TryInto<U> for aya::programs::trace_point::TracePoint where U: core::convert::TryFrom<T>
  7199. pub type aya::programs::trace_point::TracePoint::Error = <U as core::convert::TryFrom<T>>::Error
  7200. pub fn aya::programs::trace_point::TracePoint::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7201. impl<T> core::any::Any for aya::programs::trace_point::TracePoint where T: 'static + core::marker::Sized
  7202. pub fn aya::programs::trace_point::TracePoint::type_id(&self) -> core::any::TypeId
  7203. impl<T> core::borrow::Borrow<T> for aya::programs::trace_point::TracePoint where T: core::marker::Sized
  7204. pub fn aya::programs::trace_point::TracePoint::borrow(&self) -> &T
  7205. impl<T> core::borrow::BorrowMut<T> for aya::programs::trace_point::TracePoint where T: core::marker::Sized
  7206. pub fn aya::programs::trace_point::TracePoint::borrow_mut(&mut self) -> &mut T
  7207. impl<T> core::convert::From<T> for aya::programs::trace_point::TracePoint
  7208. pub fn aya::programs::trace_point::TracePoint::from(t: T) -> T
  7209. pub struct aya::programs::UProbe
  7210. impl aya::programs::uprobe::UProbe
  7211. pub fn aya::programs::uprobe::UProbe::attach<T: core::convert::AsRef<std::path::Path>>(&mut self, fn_name: core::option::Option<&str>, offset: u64, target: T, pid: core::option::Option<libc::unix::pid_t>) -> core::result::Result<aya::programs::uprobe::UProbeLinkId, aya::programs::ProgramError>
  7212. pub fn aya::programs::uprobe::UProbe::detach(&mut self, link_id: aya::programs::uprobe::UProbeLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  7213. pub fn aya::programs::uprobe::UProbe::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, kind: aya::programs::ProbeKind) -> core::result::Result<Self, aya::programs::ProgramError>
  7214. pub fn aya::programs::uprobe::UProbe::kind(&self) -> aya::programs::ProbeKind
  7215. pub fn aya::programs::uprobe::UProbe::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  7216. pub fn aya::programs::uprobe::UProbe::take_link(&mut self, link_id: aya::programs::uprobe::UProbeLinkId) -> core::result::Result<aya::programs::uprobe::UProbeLink, aya::programs::ProgramError>
  7217. impl aya::programs::uprobe::UProbe
  7218. pub fn aya::programs::uprobe::UProbe::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  7219. impl aya::programs::uprobe::UProbe
  7220. pub fn aya::programs::uprobe::UProbe::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  7221. impl aya::programs::uprobe::UProbe
  7222. pub fn aya::programs::uprobe::UProbe::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  7223. pub fn aya::programs::uprobe::UProbe::unpin(self) -> core::result::Result<(), std::io::error::Error>
  7224. impl aya::programs::uprobe::UProbe
  7225. pub fn aya::programs::uprobe::UProbe::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  7226. impl core::fmt::Debug for aya::programs::uprobe::UProbe
  7227. pub fn aya::programs::uprobe::UProbe::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7228. impl core::ops::drop::Drop for aya::programs::uprobe::UProbe
  7229. pub fn aya::programs::uprobe::UProbe::drop(&mut self)
  7230. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::uprobe::UProbe
  7231. pub type &'a aya::programs::uprobe::UProbe::Error = aya::programs::ProgramError
  7232. pub fn &'a aya::programs::uprobe::UProbe::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::uprobe::UProbe, aya::programs::ProgramError>
  7233. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::uprobe::UProbe
  7234. pub type &'a mut aya::programs::uprobe::UProbe::Error = aya::programs::ProgramError
  7235. pub fn &'a mut aya::programs::uprobe::UProbe::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::uprobe::UProbe, aya::programs::ProgramError>
  7236. impl core::marker::Send for aya::programs::uprobe::UProbe
  7237. impl core::marker::Sync for aya::programs::uprobe::UProbe
  7238. impl core::marker::Unpin for aya::programs::uprobe::UProbe
  7239. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::uprobe::UProbe
  7240. impl core::panic::unwind_safe::UnwindSafe for aya::programs::uprobe::UProbe
  7241. impl<T, U> core::convert::Into<U> for aya::programs::uprobe::UProbe where U: core::convert::From<T>
  7242. pub fn aya::programs::uprobe::UProbe::into(self) -> U
  7243. impl<T, U> core::convert::TryFrom<U> for aya::programs::uprobe::UProbe where U: core::convert::Into<T>
  7244. pub type aya::programs::uprobe::UProbe::Error = core::convert::Infallible
  7245. pub fn aya::programs::uprobe::UProbe::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7246. impl<T, U> core::convert::TryInto<U> for aya::programs::uprobe::UProbe where U: core::convert::TryFrom<T>
  7247. pub type aya::programs::uprobe::UProbe::Error = <U as core::convert::TryFrom<T>>::Error
  7248. pub fn aya::programs::uprobe::UProbe::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7249. impl<T> core::any::Any for aya::programs::uprobe::UProbe where T: 'static + core::marker::Sized
  7250. pub fn aya::programs::uprobe::UProbe::type_id(&self) -> core::any::TypeId
  7251. impl<T> core::borrow::Borrow<T> for aya::programs::uprobe::UProbe where T: core::marker::Sized
  7252. pub fn aya::programs::uprobe::UProbe::borrow(&self) -> &T
  7253. impl<T> core::borrow::BorrowMut<T> for aya::programs::uprobe::UProbe where T: core::marker::Sized
  7254. pub fn aya::programs::uprobe::UProbe::borrow_mut(&mut self) -> &mut T
  7255. impl<T> core::convert::From<T> for aya::programs::uprobe::UProbe
  7256. pub fn aya::programs::uprobe::UProbe::from(t: T) -> T
  7257. pub struct aya::programs::Xdp
  7258. impl aya::programs::xdp::Xdp
  7259. pub fn aya::programs::xdp::Xdp::attach(&mut self, interface: &str, flags: aya::programs::xdp::XdpFlags) -> core::result::Result<aya::programs::xdp::XdpLinkId, aya::programs::ProgramError>
  7260. pub fn aya::programs::xdp::Xdp::attach_to_if_index(&mut self, if_index: u32, flags: aya::programs::xdp::XdpFlags) -> core::result::Result<aya::programs::xdp::XdpLinkId, aya::programs::ProgramError>
  7261. pub fn aya::programs::xdp::Xdp::attach_to_link(&mut self, link: aya::programs::xdp::XdpLink) -> core::result::Result<aya::programs::xdp::XdpLinkId, aya::programs::ProgramError>
  7262. pub fn aya::programs::xdp::Xdp::detach(&mut self, link_id: aya::programs::xdp::XdpLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  7263. pub fn aya::programs::xdp::Xdp::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, attach_type: aya_obj::programs::xdp::XdpAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  7264. pub fn aya::programs::xdp::Xdp::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  7265. pub fn aya::programs::xdp::Xdp::take_link(&mut self, link_id: aya::programs::xdp::XdpLinkId) -> core::result::Result<aya::programs::xdp::XdpLink, aya::programs::ProgramError>
  7266. impl aya::programs::xdp::Xdp
  7267. pub fn aya::programs::xdp::Xdp::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  7268. impl aya::programs::xdp::Xdp
  7269. pub fn aya::programs::xdp::Xdp::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  7270. impl aya::programs::xdp::Xdp
  7271. pub fn aya::programs::xdp::Xdp::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  7272. pub fn aya::programs::xdp::Xdp::unpin(self) -> core::result::Result<(), std::io::error::Error>
  7273. impl aya::programs::xdp::Xdp
  7274. pub fn aya::programs::xdp::Xdp::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  7275. impl core::fmt::Debug for aya::programs::xdp::Xdp
  7276. pub fn aya::programs::xdp::Xdp::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7277. impl core::ops::drop::Drop for aya::programs::xdp::Xdp
  7278. pub fn aya::programs::xdp::Xdp::drop(&mut self)
  7279. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::xdp::Xdp
  7280. pub type &'a aya::programs::xdp::Xdp::Error = aya::programs::ProgramError
  7281. pub fn &'a aya::programs::xdp::Xdp::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::xdp::Xdp, aya::programs::ProgramError>
  7282. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::xdp::Xdp
  7283. pub type &'a mut aya::programs::xdp::Xdp::Error = aya::programs::ProgramError
  7284. pub fn &'a mut aya::programs::xdp::Xdp::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::xdp::Xdp, aya::programs::ProgramError>
  7285. impl core::marker::Send for aya::programs::xdp::Xdp
  7286. impl core::marker::Sync for aya::programs::xdp::Xdp
  7287. impl core::marker::Unpin for aya::programs::xdp::Xdp
  7288. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::xdp::Xdp
  7289. impl core::panic::unwind_safe::UnwindSafe for aya::programs::xdp::Xdp
  7290. impl<T, U> core::convert::Into<U> for aya::programs::xdp::Xdp where U: core::convert::From<T>
  7291. pub fn aya::programs::xdp::Xdp::into(self) -> U
  7292. impl<T, U> core::convert::TryFrom<U> for aya::programs::xdp::Xdp where U: core::convert::Into<T>
  7293. pub type aya::programs::xdp::Xdp::Error = core::convert::Infallible
  7294. pub fn aya::programs::xdp::Xdp::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7295. impl<T, U> core::convert::TryInto<U> for aya::programs::xdp::Xdp where U: core::convert::TryFrom<T>
  7296. pub type aya::programs::xdp::Xdp::Error = <U as core::convert::TryFrom<T>>::Error
  7297. pub fn aya::programs::xdp::Xdp::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7298. impl<T> core::any::Any for aya::programs::xdp::Xdp where T: 'static + core::marker::Sized
  7299. pub fn aya::programs::xdp::Xdp::type_id(&self) -> core::any::TypeId
  7300. impl<T> core::borrow::Borrow<T> for aya::programs::xdp::Xdp where T: core::marker::Sized
  7301. pub fn aya::programs::xdp::Xdp::borrow(&self) -> &T
  7302. impl<T> core::borrow::BorrowMut<T> for aya::programs::xdp::Xdp where T: core::marker::Sized
  7303. pub fn aya::programs::xdp::Xdp::borrow_mut(&mut self) -> &mut T
  7304. impl<T> core::convert::From<T> for aya::programs::xdp::Xdp
  7305. pub fn aya::programs::xdp::Xdp::from(t: T) -> T
  7306. pub struct aya::programs::XdpFlags(_)
  7307. impl aya::programs::xdp::XdpFlags
  7308. pub const aya::programs::xdp::XdpFlags::DRV_MODE: Self
  7309. pub const aya::programs::xdp::XdpFlags::HW_MODE: Self
  7310. pub const aya::programs::xdp::XdpFlags::REPLACE: Self
  7311. pub const aya::programs::xdp::XdpFlags::SKB_MODE: Self
  7312. pub const aya::programs::xdp::XdpFlags::UPDATE_IF_NOEXIST: Self
  7313. impl aya::programs::xdp::XdpFlags
  7314. pub const fn aya::programs::xdp::XdpFlags::all() -> Self
  7315. pub const fn aya::programs::xdp::XdpFlags::bits(&self) -> u32
  7316. pub const fn aya::programs::xdp::XdpFlags::complement(self) -> Self
  7317. pub const fn aya::programs::xdp::XdpFlags::contains(&self, other: Self) -> bool
  7318. pub const fn aya::programs::xdp::XdpFlags::difference(self, other: Self) -> Self
  7319. pub const fn aya::programs::xdp::XdpFlags::empty() -> Self
  7320. pub const fn aya::programs::xdp::XdpFlags::from_bits(bits: u32) -> core::option::Option<Self>
  7321. pub const fn aya::programs::xdp::XdpFlags::from_bits_retain(bits: u32) -> Self
  7322. pub const fn aya::programs::xdp::XdpFlags::from_bits_truncate(bits: u32) -> Self
  7323. pub fn aya::programs::xdp::XdpFlags::from_name(name: &str) -> core::option::Option<Self>
  7324. pub fn aya::programs::xdp::XdpFlags::insert(&mut self, other: Self)
  7325. pub const fn aya::programs::xdp::XdpFlags::intersection(self, other: Self) -> Self
  7326. pub const fn aya::programs::xdp::XdpFlags::intersects(&self, other: Self) -> bool
  7327. pub const fn aya::programs::xdp::XdpFlags::is_all(&self) -> bool
  7328. pub const fn aya::programs::xdp::XdpFlags::is_empty(&self) -> bool
  7329. pub fn aya::programs::xdp::XdpFlags::remove(&mut self, other: Self)
  7330. pub fn aya::programs::xdp::XdpFlags::set(&mut self, other: Self, value: bool)
  7331. pub const fn aya::programs::xdp::XdpFlags::symmetric_difference(self, other: Self) -> Self
  7332. pub fn aya::programs::xdp::XdpFlags::toggle(&mut self, other: Self)
  7333. pub const fn aya::programs::xdp::XdpFlags::union(self, other: Self) -> Self
  7334. impl aya::programs::xdp::XdpFlags
  7335. pub const fn aya::programs::xdp::XdpFlags::iter(&self) -> bitflags::iter::Iter<aya::programs::xdp::XdpFlags>
  7336. pub const fn aya::programs::xdp::XdpFlags::iter_names(&self) -> bitflags::iter::IterNames<aya::programs::xdp::XdpFlags>
  7337. impl bitflags::traits::Flags for aya::programs::xdp::XdpFlags
  7338. pub type aya::programs::xdp::XdpFlags::Bits = u32
  7339. pub const aya::programs::xdp::XdpFlags::FLAGS: &'static [bitflags::traits::Flag<aya::programs::xdp::XdpFlags>]
  7340. pub fn aya::programs::xdp::XdpFlags::bits(&self) -> u32
  7341. pub fn aya::programs::xdp::XdpFlags::from_bits_retain(bits: u32) -> aya::programs::xdp::XdpFlags
  7342. impl bitflags::traits::PublicFlags for aya::programs::xdp::XdpFlags
  7343. pub type aya::programs::xdp::XdpFlags::Internal = InternalBitFlags
  7344. pub type aya::programs::xdp::XdpFlags::Primitive = u32
  7345. impl core::clone::Clone for aya::programs::xdp::XdpFlags
  7346. pub fn aya::programs::xdp::XdpFlags::clone(&self) -> aya::programs::xdp::XdpFlags
  7347. impl core::default::Default for aya::programs::xdp::XdpFlags
  7348. pub fn aya::programs::xdp::XdpFlags::default() -> aya::programs::xdp::XdpFlags
  7349. impl core::fmt::Binary for aya::programs::xdp::XdpFlags
  7350. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7351. impl core::fmt::Debug for aya::programs::xdp::XdpFlags
  7352. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7353. impl core::fmt::LowerHex for aya::programs::xdp::XdpFlags
  7354. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7355. impl core::fmt::Octal for aya::programs::xdp::XdpFlags
  7356. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7357. impl core::fmt::UpperHex for aya::programs::xdp::XdpFlags
  7358. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7359. impl core::iter::traits::collect::Extend<aya::programs::xdp::XdpFlags> for aya::programs::xdp::XdpFlags
  7360. pub fn aya::programs::xdp::XdpFlags::extend<T: core::iter::traits::collect::IntoIterator<Item = Self>>(&mut self, iterator: T)
  7361. impl core::iter::traits::collect::FromIterator<aya::programs::xdp::XdpFlags> for aya::programs::xdp::XdpFlags
  7362. pub fn aya::programs::xdp::XdpFlags::from_iter<T: core::iter::traits::collect::IntoIterator<Item = Self>>(iterator: T) -> Self
  7363. impl core::iter::traits::collect::IntoIterator for aya::programs::xdp::XdpFlags
  7364. pub type aya::programs::xdp::XdpFlags::IntoIter = bitflags::iter::Iter<aya::programs::xdp::XdpFlags>
  7365. pub type aya::programs::xdp::XdpFlags::Item = aya::programs::xdp::XdpFlags
  7366. pub fn aya::programs::xdp::XdpFlags::into_iter(self) -> Self::IntoIter
  7367. impl core::marker::Copy for aya::programs::xdp::XdpFlags
  7368. impl core::ops::arith::Sub for aya::programs::xdp::XdpFlags
  7369. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  7370. pub fn aya::programs::xdp::XdpFlags::sub(self, other: Self) -> Self
  7371. impl core::ops::arith::SubAssign for aya::programs::xdp::XdpFlags
  7372. pub fn aya::programs::xdp::XdpFlags::sub_assign(&mut self, other: Self)
  7373. impl core::ops::bit::BitAnd for aya::programs::xdp::XdpFlags
  7374. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  7375. pub fn aya::programs::xdp::XdpFlags::bitand(self, other: Self) -> Self
  7376. impl core::ops::bit::BitAndAssign for aya::programs::xdp::XdpFlags
  7377. pub fn aya::programs::xdp::XdpFlags::bitand_assign(&mut self, other: Self)
  7378. impl core::ops::bit::BitOr for aya::programs::xdp::XdpFlags
  7379. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  7380. pub fn aya::programs::xdp::XdpFlags::bitor(self, other: aya::programs::xdp::XdpFlags) -> Self
  7381. impl core::ops::bit::BitOrAssign for aya::programs::xdp::XdpFlags
  7382. pub fn aya::programs::xdp::XdpFlags::bitor_assign(&mut self, other: Self)
  7383. impl core::ops::bit::BitXor for aya::programs::xdp::XdpFlags
  7384. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  7385. pub fn aya::programs::xdp::XdpFlags::bitxor(self, other: Self) -> Self
  7386. impl core::ops::bit::BitXorAssign for aya::programs::xdp::XdpFlags
  7387. pub fn aya::programs::xdp::XdpFlags::bitxor_assign(&mut self, other: Self)
  7388. impl core::ops::bit::Not for aya::programs::xdp::XdpFlags
  7389. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  7390. pub fn aya::programs::xdp::XdpFlags::not(self) -> Self
  7391. impl core::marker::Send for aya::programs::xdp::XdpFlags
  7392. impl core::marker::Sync for aya::programs::xdp::XdpFlags
  7393. impl core::marker::Unpin for aya::programs::xdp::XdpFlags
  7394. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::xdp::XdpFlags
  7395. impl core::panic::unwind_safe::UnwindSafe for aya::programs::xdp::XdpFlags
  7396. impl<T, U> core::convert::Into<U> for aya::programs::xdp::XdpFlags where U: core::convert::From<T>
  7397. pub fn aya::programs::xdp::XdpFlags::into(self) -> U
  7398. impl<T, U> core::convert::TryFrom<U> for aya::programs::xdp::XdpFlags where U: core::convert::Into<T>
  7399. pub type aya::programs::xdp::XdpFlags::Error = core::convert::Infallible
  7400. pub fn aya::programs::xdp::XdpFlags::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7401. impl<T, U> core::convert::TryInto<U> for aya::programs::xdp::XdpFlags where U: core::convert::TryFrom<T>
  7402. pub type aya::programs::xdp::XdpFlags::Error = <U as core::convert::TryFrom<T>>::Error
  7403. pub fn aya::programs::xdp::XdpFlags::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7404. impl<T> alloc::borrow::ToOwned for aya::programs::xdp::XdpFlags where T: core::clone::Clone
  7405. pub type aya::programs::xdp::XdpFlags::Owned = T
  7406. pub fn aya::programs::xdp::XdpFlags::clone_into(&self, target: &mut T)
  7407. pub fn aya::programs::xdp::XdpFlags::to_owned(&self) -> T
  7408. impl<T> core::any::Any for aya::programs::xdp::XdpFlags where T: 'static + core::marker::Sized
  7409. pub fn aya::programs::xdp::XdpFlags::type_id(&self) -> core::any::TypeId
  7410. impl<T> core::borrow::Borrow<T> for aya::programs::xdp::XdpFlags where T: core::marker::Sized
  7411. pub fn aya::programs::xdp::XdpFlags::borrow(&self) -> &T
  7412. impl<T> core::borrow::BorrowMut<T> for aya::programs::xdp::XdpFlags where T: core::marker::Sized
  7413. pub fn aya::programs::xdp::XdpFlags::borrow_mut(&mut self) -> &mut T
  7414. impl<T> core::convert::From<T> for aya::programs::xdp::XdpFlags
  7415. pub fn aya::programs::xdp::XdpFlags::from(t: T) -> T
  7416. pub trait aya::programs::Link: core::fmt::Debug + 'static
  7417. pub type aya::programs::Link::Id: core::fmt::Debug + core::hash::Hash + core::cmp::Eq + core::cmp::PartialEq
  7418. pub fn aya::programs::Link::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  7419. pub fn aya::programs::Link::id(&self) -> Self::Id
  7420. impl aya::programs::links::Link for aya::programs::cgroup_device::CgroupDeviceLink
  7421. pub type aya::programs::cgroup_device::CgroupDeviceLink::Id = aya::programs::cgroup_device::CgroupDeviceLinkId
  7422. pub fn aya::programs::cgroup_device::CgroupDeviceLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  7423. pub fn aya::programs::cgroup_device::CgroupDeviceLink::id(&self) -> Self::Id
  7424. impl aya::programs::links::Link for aya::programs::cgroup_skb::CgroupSkbLink
  7425. pub type aya::programs::cgroup_skb::CgroupSkbLink::Id = aya::programs::cgroup_skb::CgroupSkbLinkId
  7426. pub fn aya::programs::cgroup_skb::CgroupSkbLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  7427. pub fn aya::programs::cgroup_skb::CgroupSkbLink::id(&self) -> Self::Id
  7428. impl aya::programs::links::Link for aya::programs::cgroup_sock::CgroupSockLink
  7429. pub type aya::programs::cgroup_sock::CgroupSockLink::Id = aya::programs::cgroup_sock::CgroupSockLinkId
  7430. pub fn aya::programs::cgroup_sock::CgroupSockLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  7431. pub fn aya::programs::cgroup_sock::CgroupSockLink::id(&self) -> Self::Id
  7432. impl aya::programs::links::Link for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  7433. pub type aya::programs::cgroup_sock_addr::CgroupSockAddrLink::Id = aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  7434. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  7435. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::id(&self) -> Self::Id
  7436. impl aya::programs::links::Link for aya::programs::cgroup_sockopt::CgroupSockoptLink
  7437. pub type aya::programs::cgroup_sockopt::CgroupSockoptLink::Id = aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  7438. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  7439. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::id(&self) -> Self::Id
  7440. impl aya::programs::links::Link for aya::programs::cgroup_sysctl::CgroupSysctlLink
  7441. pub type aya::programs::cgroup_sysctl::CgroupSysctlLink::Id = aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  7442. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  7443. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::id(&self) -> Self::Id
  7444. impl aya::programs::links::Link for aya::programs::extension::ExtensionLink
  7445. pub type aya::programs::extension::ExtensionLink::Id = aya::programs::extension::ExtensionLinkId
  7446. pub fn aya::programs::extension::ExtensionLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  7447. pub fn aya::programs::extension::ExtensionLink::id(&self) -> Self::Id
  7448. impl aya::programs::links::Link for aya::programs::fentry::FEntryLink
  7449. pub type aya::programs::fentry::FEntryLink::Id = aya::programs::fentry::FEntryLinkId
  7450. pub fn aya::programs::fentry::FEntryLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  7451. pub fn aya::programs::fentry::FEntryLink::id(&self) -> Self::Id
  7452. impl aya::programs::links::Link for aya::programs::fexit::FExitLink
  7453. pub type aya::programs::fexit::FExitLink::Id = aya::programs::fexit::FExitLinkId
  7454. pub fn aya::programs::fexit::FExitLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  7455. pub fn aya::programs::fexit::FExitLink::id(&self) -> Self::Id
  7456. impl aya::programs::links::Link for aya::programs::kprobe::KProbeLink
  7457. pub type aya::programs::kprobe::KProbeLink::Id = aya::programs::kprobe::KProbeLinkId
  7458. pub fn aya::programs::kprobe::KProbeLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  7459. pub fn aya::programs::kprobe::KProbeLink::id(&self) -> Self::Id
  7460. impl aya::programs::links::Link for aya::programs::links::FdLink
  7461. pub type aya::programs::links::FdLink::Id = aya::programs::links::FdLinkId
  7462. pub fn aya::programs::links::FdLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  7463. pub fn aya::programs::links::FdLink::id(&self) -> Self::Id
  7464. impl aya::programs::links::Link for aya::programs::links::ProgAttachLink
  7465. pub type aya::programs::links::ProgAttachLink::Id = aya::programs::links::ProgAttachLinkId
  7466. pub fn aya::programs::links::ProgAttachLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  7467. pub fn aya::programs::links::ProgAttachLink::id(&self) -> Self::Id
  7468. impl aya::programs::links::Link for aya::programs::lirc_mode2::LircLink
  7469. pub type aya::programs::lirc_mode2::LircLink::Id = aya::programs::lirc_mode2::LircLinkId
  7470. pub fn aya::programs::lirc_mode2::LircLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  7471. pub fn aya::programs::lirc_mode2::LircLink::id(&self) -> Self::Id
  7472. impl aya::programs::links::Link for aya::programs::lsm::LsmLink
  7473. pub type aya::programs::lsm::LsmLink::Id = aya::programs::lsm::LsmLinkId
  7474. pub fn aya::programs::lsm::LsmLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  7475. pub fn aya::programs::lsm::LsmLink::id(&self) -> Self::Id
  7476. impl aya::programs::links::Link for aya::programs::perf_attach::PerfLink
  7477. pub type aya::programs::perf_attach::PerfLink::Id = aya::programs::perf_attach::PerfLinkId
  7478. pub fn aya::programs::perf_attach::PerfLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  7479. pub fn aya::programs::perf_attach::PerfLink::id(&self) -> Self::Id
  7480. impl aya::programs::links::Link for aya::programs::perf_event::PerfEventLink
  7481. pub type aya::programs::perf_event::PerfEventLink::Id = aya::programs::perf_event::PerfEventLinkId
  7482. pub fn aya::programs::perf_event::PerfEventLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  7483. pub fn aya::programs::perf_event::PerfEventLink::id(&self) -> Self::Id
  7484. impl aya::programs::links::Link for aya::programs::tc::SchedClassifierLink
  7485. pub type aya::programs::tc::SchedClassifierLink::Id = aya::programs::tc::SchedClassifierLinkId
  7486. pub fn aya::programs::tc::SchedClassifierLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  7487. pub fn aya::programs::tc::SchedClassifierLink::id(&self) -> Self::Id
  7488. impl aya::programs::links::Link for aya::programs::tp_btf::BtfTracePointLink
  7489. pub type aya::programs::tp_btf::BtfTracePointLink::Id = aya::programs::tp_btf::BtfTracePointLinkId
  7490. pub fn aya::programs::tp_btf::BtfTracePointLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  7491. pub fn aya::programs::tp_btf::BtfTracePointLink::id(&self) -> Self::Id
  7492. impl aya::programs::links::Link for aya::programs::trace_point::TracePointLink
  7493. pub type aya::programs::trace_point::TracePointLink::Id = aya::programs::trace_point::TracePointLinkId
  7494. pub fn aya::programs::trace_point::TracePointLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  7495. pub fn aya::programs::trace_point::TracePointLink::id(&self) -> Self::Id
  7496. impl aya::programs::links::Link for aya::programs::uprobe::UProbeLink
  7497. pub type aya::programs::uprobe::UProbeLink::Id = aya::programs::uprobe::UProbeLinkId
  7498. pub fn aya::programs::uprobe::UProbeLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  7499. pub fn aya::programs::uprobe::UProbeLink::id(&self) -> Self::Id
  7500. impl aya::programs::links::Link for aya::programs::xdp::XdpLink
  7501. pub type aya::programs::xdp::XdpLink::Id = aya::programs::xdp::XdpLinkId
  7502. pub fn aya::programs::xdp::XdpLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  7503. pub fn aya::programs::xdp::XdpLink::id(&self) -> Self::Id
  7504. pub fn aya::programs::loaded_programs() -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>>
  7505. pub mod aya::util
  7506. pub struct aya::util::KernelVersion
  7507. impl aya::util::KernelVersion
  7508. pub fn aya::util::KernelVersion::code(self) -> u32
  7509. pub fn aya::util::KernelVersion::current() -> core::result::Result<Self, impl core::error::Error>
  7510. pub fn aya::util::KernelVersion::new(major: u8, minor: u8, patch: u16) -> Self
  7511. impl core::clone::Clone for aya::util::KernelVersion
  7512. pub fn aya::util::KernelVersion::clone(&self) -> aya::util::KernelVersion
  7513. impl core::cmp::Eq for aya::util::KernelVersion
  7514. impl core::cmp::PartialEq for aya::util::KernelVersion
  7515. pub fn aya::util::KernelVersion::eq(&self, other: &aya::util::KernelVersion) -> bool
  7516. impl core::cmp::PartialOrd for aya::util::KernelVersion
  7517. pub fn aya::util::KernelVersion::partial_cmp(&self, other: &aya::util::KernelVersion) -> core::option::Option<core::cmp::Ordering>
  7518. impl core::fmt::Debug for aya::util::KernelVersion
  7519. pub fn aya::util::KernelVersion::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7520. impl core::marker::Copy for aya::util::KernelVersion
  7521. impl core::marker::StructuralPartialEq for aya::util::KernelVersion
  7522. impl core::marker::Send for aya::util::KernelVersion
  7523. impl core::marker::Sync for aya::util::KernelVersion
  7524. impl core::marker::Unpin for aya::util::KernelVersion
  7525. impl core::panic::unwind_safe::RefUnwindSafe for aya::util::KernelVersion
  7526. impl core::panic::unwind_safe::UnwindSafe for aya::util::KernelVersion
  7527. impl<T, U> core::convert::Into<U> for aya::util::KernelVersion where U: core::convert::From<T>
  7528. pub fn aya::util::KernelVersion::into(self) -> U
  7529. impl<T, U> core::convert::TryFrom<U> for aya::util::KernelVersion where U: core::convert::Into<T>
  7530. pub type aya::util::KernelVersion::Error = core::convert::Infallible
  7531. pub fn aya::util::KernelVersion::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7532. impl<T, U> core::convert::TryInto<U> for aya::util::KernelVersion where U: core::convert::TryFrom<T>
  7533. pub type aya::util::KernelVersion::Error = <U as core::convert::TryFrom<T>>::Error
  7534. pub fn aya::util::KernelVersion::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7535. impl<T> alloc::borrow::ToOwned for aya::util::KernelVersion where T: core::clone::Clone
  7536. pub type aya::util::KernelVersion::Owned = T
  7537. pub fn aya::util::KernelVersion::clone_into(&self, target: &mut T)
  7538. pub fn aya::util::KernelVersion::to_owned(&self) -> T
  7539. impl<T> core::any::Any for aya::util::KernelVersion where T: 'static + core::marker::Sized
  7540. pub fn aya::util::KernelVersion::type_id(&self) -> core::any::TypeId
  7541. impl<T> core::borrow::Borrow<T> for aya::util::KernelVersion where T: core::marker::Sized
  7542. pub fn aya::util::KernelVersion::borrow(&self) -> &T
  7543. impl<T> core::borrow::BorrowMut<T> for aya::util::KernelVersion where T: core::marker::Sized
  7544. pub fn aya::util::KernelVersion::borrow_mut(&mut self) -> &mut T
  7545. impl<T> core::convert::From<T> for aya::util::KernelVersion
  7546. pub fn aya::util::KernelVersion::from(t: T) -> T
  7547. pub fn aya::util::kernel_symbols() -> core::result::Result<alloc::collections::btree::map::BTreeMap<u64, alloc::string::String>, std::io::error::Error>
  7548. pub fn aya::util::nr_cpus() -> core::result::Result<usize, std::io::error::Error>
  7549. pub fn aya::util::online_cpus() -> core::result::Result<alloc::vec::Vec<u32>, std::io::error::Error>
  7550. pub fn aya::util::syscall_prefix() -> core::result::Result<&'static str, std::io::error::Error>
  7551. pub macro aya::include_bytes_aligned!
  7552. pub enum aya::BpfError
  7553. pub aya::BpfError::BtfError(aya_obj::btf::btf::BtfError)
  7554. pub aya::BpfError::BtfRelocationError(aya_obj::btf::relocation::BtfRelocationError)
  7555. pub aya::BpfError::FileError
  7556. pub aya::BpfError::FileError::error: std::io::error::Error
  7557. pub aya::BpfError::FileError::path: std::path::PathBuf
  7558. pub aya::BpfError::MapError(aya::maps::MapError)
  7559. pub aya::BpfError::NoBTF
  7560. pub aya::BpfError::ParseError(aya_obj::obj::ParseError)
  7561. pub aya::BpfError::ProgramError(aya::programs::ProgramError)
  7562. pub aya::BpfError::RelocationError(aya_obj::relocation::BpfRelocationError)
  7563. pub aya::BpfError::UnexpectedPinningType
  7564. pub aya::BpfError::UnexpectedPinningType::name: u32
  7565. impl core::convert::From<aya::maps::MapError> for aya::BpfError
  7566. pub fn aya::BpfError::from(source: aya::maps::MapError) -> Self
  7567. impl core::convert::From<aya::programs::ProgramError> for aya::BpfError
  7568. pub fn aya::BpfError::from(source: aya::programs::ProgramError) -> Self
  7569. impl core::convert::From<aya_obj::btf::btf::BtfError> for aya::BpfError
  7570. pub fn aya::BpfError::from(source: aya_obj::btf::btf::BtfError) -> Self
  7571. impl core::convert::From<aya_obj::btf::relocation::BtfRelocationError> for aya::BpfError
  7572. pub fn aya::BpfError::from(source: aya_obj::btf::relocation::BtfRelocationError) -> Self
  7573. impl core::convert::From<aya_obj::obj::ParseError> for aya::BpfError
  7574. pub fn aya::BpfError::from(source: aya_obj::obj::ParseError) -> Self
  7575. impl core::convert::From<aya_obj::relocation::BpfRelocationError> for aya::BpfError
  7576. pub fn aya::BpfError::from(source: aya_obj::relocation::BpfRelocationError) -> Self
  7577. impl core::error::Error for aya::BpfError
  7578. pub fn aya::BpfError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  7579. impl core::fmt::Debug for aya::BpfError
  7580. pub fn aya::BpfError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7581. impl core::fmt::Display for aya::BpfError
  7582. pub fn aya::BpfError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7583. impl core::marker::Send for aya::BpfError
  7584. impl core::marker::Sync for aya::BpfError
  7585. impl core::marker::Unpin for aya::BpfError
  7586. impl !core::panic::unwind_safe::RefUnwindSafe for aya::BpfError
  7587. impl !core::panic::unwind_safe::UnwindSafe for aya::BpfError
  7588. impl<T, U> core::convert::Into<U> for aya::BpfError where U: core::convert::From<T>
  7589. pub fn aya::BpfError::into(self) -> U
  7590. impl<T, U> core::convert::TryFrom<U> for aya::BpfError where U: core::convert::Into<T>
  7591. pub type aya::BpfError::Error = core::convert::Infallible
  7592. pub fn aya::BpfError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7593. impl<T, U> core::convert::TryInto<U> for aya::BpfError where U: core::convert::TryFrom<T>
  7594. pub type aya::BpfError::Error = <U as core::convert::TryFrom<T>>::Error
  7595. pub fn aya::BpfError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7596. impl<T> alloc::string::ToString for aya::BpfError where T: core::fmt::Display + core::marker::Sized
  7597. pub fn aya::BpfError::to_string(&self) -> alloc::string::String
  7598. impl<T> core::any::Any for aya::BpfError where T: 'static + core::marker::Sized
  7599. pub fn aya::BpfError::type_id(&self) -> core::any::TypeId
  7600. impl<T> core::borrow::Borrow<T> for aya::BpfError where T: core::marker::Sized
  7601. pub fn aya::BpfError::borrow(&self) -> &T
  7602. impl<T> core::borrow::BorrowMut<T> for aya::BpfError where T: core::marker::Sized
  7603. pub fn aya::BpfError::borrow_mut(&mut self) -> &mut T
  7604. impl<T> core::convert::From<T> for aya::BpfError
  7605. pub fn aya::BpfError::from(t: T) -> T
  7606. pub struct aya::Bpf
  7607. impl aya::Bpf
  7608. pub fn aya::Bpf::load(data: &[u8]) -> core::result::Result<Self, aya::BpfError>
  7609. pub fn aya::Bpf::load_file<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::BpfError>
  7610. pub fn aya::Bpf::map(&self, name: &str) -> core::option::Option<&aya::maps::Map>
  7611. pub fn aya::Bpf::map_mut(&mut self, name: &str) -> core::option::Option<&mut aya::maps::Map>
  7612. pub fn aya::Bpf::maps(&self) -> impl core::iter::traits::iterator::Iterator<Item = (&str, &aya::maps::Map)>
  7613. pub fn aya::Bpf::maps_mut(&mut self) -> impl core::iter::traits::iterator::Iterator<Item = (&str, &mut aya::maps::Map)>
  7614. pub fn aya::Bpf::program(&self, name: &str) -> core::option::Option<&aya::programs::Program>
  7615. pub fn aya::Bpf::program_mut(&mut self, name: &str) -> core::option::Option<&mut aya::programs::Program>
  7616. pub fn aya::Bpf::programs(&self) -> impl core::iter::traits::iterator::Iterator<Item = (&str, &aya::programs::Program)>
  7617. pub fn aya::Bpf::programs_mut(&mut self) -> impl core::iter::traits::iterator::Iterator<Item = (&str, &mut aya::programs::Program)>
  7618. pub fn aya::Bpf::take_map(&mut self, name: &str) -> core::option::Option<aya::maps::Map>
  7619. impl core::fmt::Debug for aya::Bpf
  7620. pub fn aya::Bpf::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7621. impl core::marker::Send for aya::Bpf
  7622. impl core::marker::Sync for aya::Bpf
  7623. impl core::marker::Unpin for aya::Bpf
  7624. impl core::panic::unwind_safe::RefUnwindSafe for aya::Bpf
  7625. impl core::panic::unwind_safe::UnwindSafe for aya::Bpf
  7626. impl<T, U> core::convert::Into<U> for aya::Bpf where U: core::convert::From<T>
  7627. pub fn aya::Bpf::into(self) -> U
  7628. impl<T, U> core::convert::TryFrom<U> for aya::Bpf where U: core::convert::Into<T>
  7629. pub type aya::Bpf::Error = core::convert::Infallible
  7630. pub fn aya::Bpf::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7631. impl<T, U> core::convert::TryInto<U> for aya::Bpf where U: core::convert::TryFrom<T>
  7632. pub type aya::Bpf::Error = <U as core::convert::TryFrom<T>>::Error
  7633. pub fn aya::Bpf::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7634. impl<T> core::any::Any for aya::Bpf where T: 'static + core::marker::Sized
  7635. pub fn aya::Bpf::type_id(&self) -> core::any::TypeId
  7636. impl<T> core::borrow::Borrow<T> for aya::Bpf where T: core::marker::Sized
  7637. pub fn aya::Bpf::borrow(&self) -> &T
  7638. impl<T> core::borrow::BorrowMut<T> for aya::Bpf where T: core::marker::Sized
  7639. pub fn aya::Bpf::borrow_mut(&mut self) -> &mut T
  7640. impl<T> core::convert::From<T> for aya::Bpf
  7641. pub fn aya::Bpf::from(t: T) -> T
  7642. pub struct aya::BpfLoader<'a>
  7643. impl<'a> aya::BpfLoader<'a>
  7644. pub fn aya::BpfLoader<'a>::allow_unsupported_maps(&mut self) -> &mut aya::BpfLoader<'a>
  7645. pub fn aya::BpfLoader<'a>::btf(&mut self, btf: core::option::Option<&'a aya_obj::btf::btf::Btf>) -> &mut aya::BpfLoader<'a>
  7646. pub fn aya::BpfLoader<'a>::extension(&mut self, name: &'a str) -> &mut aya::BpfLoader<'a>
  7647. pub fn aya::BpfLoader<'a>::load(&mut self, data: &[u8]) -> core::result::Result<aya::Bpf, aya::BpfError>
  7648. pub fn aya::BpfLoader<'a>::load_file<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<aya::Bpf, aya::BpfError>
  7649. pub fn aya::BpfLoader<'a>::map_pin_path<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> &mut aya::BpfLoader<'a>
  7650. pub fn aya::BpfLoader<'a>::new() -> Self
  7651. pub fn aya::BpfLoader<'a>::set_global<T: core::convert::Into<aya::GlobalData<'a>>>(&mut self, name: &'a str, value: T, must_exist: bool) -> &mut aya::BpfLoader<'a>
  7652. pub fn aya::BpfLoader<'a>::set_max_entries(&mut self, name: &'a str, size: u32) -> &mut aya::BpfLoader<'a>
  7653. pub fn aya::BpfLoader<'a>::verifier_log_level(&mut self, level: aya::VerifierLogLevel) -> &mut aya::BpfLoader<'a>
  7654. impl core::default::Default for aya::BpfLoader<'_>
  7655. pub fn aya::BpfLoader<'_>::default() -> Self
  7656. impl<'a> core::fmt::Debug for aya::BpfLoader<'a>
  7657. pub fn aya::BpfLoader<'a>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7658. impl<'a> core::marker::Send for aya::BpfLoader<'a>
  7659. impl<'a> core::marker::Sync for aya::BpfLoader<'a>
  7660. impl<'a> core::marker::Unpin for aya::BpfLoader<'a>
  7661. impl<'a> core::panic::unwind_safe::RefUnwindSafe for aya::BpfLoader<'a>
  7662. impl<'a> core::panic::unwind_safe::UnwindSafe for aya::BpfLoader<'a>
  7663. impl<T, U> core::convert::Into<U> for aya::BpfLoader<'a> where U: core::convert::From<T>
  7664. pub fn aya::BpfLoader<'a>::into(self) -> U
  7665. impl<T, U> core::convert::TryFrom<U> for aya::BpfLoader<'a> where U: core::convert::Into<T>
  7666. pub type aya::BpfLoader<'a>::Error = core::convert::Infallible
  7667. pub fn aya::BpfLoader<'a>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7668. impl<T, U> core::convert::TryInto<U> for aya::BpfLoader<'a> where U: core::convert::TryFrom<T>
  7669. pub type aya::BpfLoader<'a>::Error = <U as core::convert::TryFrom<T>>::Error
  7670. pub fn aya::BpfLoader<'a>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7671. impl<T> core::any::Any for aya::BpfLoader<'a> where T: 'static + core::marker::Sized
  7672. pub fn aya::BpfLoader<'a>::type_id(&self) -> core::any::TypeId
  7673. impl<T> core::borrow::Borrow<T> for aya::BpfLoader<'a> where T: core::marker::Sized
  7674. pub fn aya::BpfLoader<'a>::borrow(&self) -> &T
  7675. impl<T> core::borrow::BorrowMut<T> for aya::BpfLoader<'a> where T: core::marker::Sized
  7676. pub fn aya::BpfLoader<'a>::borrow_mut(&mut self) -> &mut T
  7677. impl<T> core::convert::From<T> for aya::BpfLoader<'a>
  7678. pub fn aya::BpfLoader<'a>::from(t: T) -> T
  7679. pub struct aya::GlobalData<'a>
  7680. impl<'a, T: aya::Pod> core::convert::From<&'a T> for aya::GlobalData<'a>
  7681. pub fn aya::GlobalData<'a>::from(v: &'a T) -> Self
  7682. impl<'a, T: aya::Pod> core::convert::From<&'a [T]> for aya::GlobalData<'a>
  7683. pub fn aya::GlobalData<'a>::from(s: &'a [T]) -> Self
  7684. impl<'a> core::marker::Send for aya::GlobalData<'a>
  7685. impl<'a> core::marker::Sync for aya::GlobalData<'a>
  7686. impl<'a> core::marker::Unpin for aya::GlobalData<'a>
  7687. impl<'a> core::panic::unwind_safe::RefUnwindSafe for aya::GlobalData<'a>
  7688. impl<'a> core::panic::unwind_safe::UnwindSafe for aya::GlobalData<'a>
  7689. impl<T, U> core::convert::Into<U> for aya::GlobalData<'a> where U: core::convert::From<T>
  7690. pub fn aya::GlobalData<'a>::into(self) -> U
  7691. impl<T, U> core::convert::TryFrom<U> for aya::GlobalData<'a> where U: core::convert::Into<T>
  7692. pub type aya::GlobalData<'a>::Error = core::convert::Infallible
  7693. pub fn aya::GlobalData<'a>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7694. impl<T, U> core::convert::TryInto<U> for aya::GlobalData<'a> where U: core::convert::TryFrom<T>
  7695. pub type aya::GlobalData<'a>::Error = <U as core::convert::TryFrom<T>>::Error
  7696. pub fn aya::GlobalData<'a>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7697. impl<T> core::any::Any for aya::GlobalData<'a> where T: 'static + core::marker::Sized
  7698. pub fn aya::GlobalData<'a>::type_id(&self) -> core::any::TypeId
  7699. impl<T> core::borrow::Borrow<T> for aya::GlobalData<'a> where T: core::marker::Sized
  7700. pub fn aya::GlobalData<'a>::borrow(&self) -> &T
  7701. impl<T> core::borrow::BorrowMut<T> for aya::GlobalData<'a> where T: core::marker::Sized
  7702. pub fn aya::GlobalData<'a>::borrow_mut(&mut self) -> &mut T
  7703. impl<T> core::convert::From<T> for aya::GlobalData<'a>
  7704. pub fn aya::GlobalData<'a>::from(t: T) -> T
  7705. pub struct aya::VerifierLogLevel(_)
  7706. impl aya::VerifierLogLevel
  7707. pub const aya::VerifierLogLevel::DEBUG: Self
  7708. pub const aya::VerifierLogLevel::DISABLE: Self
  7709. pub const aya::VerifierLogLevel::STATS: Self
  7710. pub const aya::VerifierLogLevel::VERBOSE: Self
  7711. impl aya::VerifierLogLevel
  7712. pub const fn aya::VerifierLogLevel::all() -> Self
  7713. pub const fn aya::VerifierLogLevel::bits(&self) -> u32
  7714. pub const fn aya::VerifierLogLevel::complement(self) -> Self
  7715. pub const fn aya::VerifierLogLevel::contains(&self, other: Self) -> bool
  7716. pub const fn aya::VerifierLogLevel::difference(self, other: Self) -> Self
  7717. pub const fn aya::VerifierLogLevel::empty() -> Self
  7718. pub const fn aya::VerifierLogLevel::from_bits(bits: u32) -> core::option::Option<Self>
  7719. pub const fn aya::VerifierLogLevel::from_bits_retain(bits: u32) -> Self
  7720. pub const fn aya::VerifierLogLevel::from_bits_truncate(bits: u32) -> Self
  7721. pub fn aya::VerifierLogLevel::from_name(name: &str) -> core::option::Option<Self>
  7722. pub fn aya::VerifierLogLevel::insert(&mut self, other: Self)
  7723. pub const fn aya::VerifierLogLevel::intersection(self, other: Self) -> Self
  7724. pub const fn aya::VerifierLogLevel::intersects(&self, other: Self) -> bool
  7725. pub const fn aya::VerifierLogLevel::is_all(&self) -> bool
  7726. pub const fn aya::VerifierLogLevel::is_empty(&self) -> bool
  7727. pub fn aya::VerifierLogLevel::remove(&mut self, other: Self)
  7728. pub fn aya::VerifierLogLevel::set(&mut self, other: Self, value: bool)
  7729. pub const fn aya::VerifierLogLevel::symmetric_difference(self, other: Self) -> Self
  7730. pub fn aya::VerifierLogLevel::toggle(&mut self, other: Self)
  7731. pub const fn aya::VerifierLogLevel::union(self, other: Self) -> Self
  7732. impl aya::VerifierLogLevel
  7733. pub const fn aya::VerifierLogLevel::iter(&self) -> bitflags::iter::Iter<aya::VerifierLogLevel>
  7734. pub const fn aya::VerifierLogLevel::iter_names(&self) -> bitflags::iter::IterNames<aya::VerifierLogLevel>
  7735. impl bitflags::traits::Flags for aya::VerifierLogLevel
  7736. pub type aya::VerifierLogLevel::Bits = u32
  7737. pub const aya::VerifierLogLevel::FLAGS: &'static [bitflags::traits::Flag<aya::VerifierLogLevel>]
  7738. pub fn aya::VerifierLogLevel::bits(&self) -> u32
  7739. pub fn aya::VerifierLogLevel::from_bits_retain(bits: u32) -> aya::VerifierLogLevel
  7740. impl bitflags::traits::PublicFlags for aya::VerifierLogLevel
  7741. pub type aya::VerifierLogLevel::Internal = InternalBitFlags
  7742. pub type aya::VerifierLogLevel::Primitive = u32
  7743. impl core::clone::Clone for aya::VerifierLogLevel
  7744. pub fn aya::VerifierLogLevel::clone(&self) -> aya::VerifierLogLevel
  7745. impl core::default::Default for aya::VerifierLogLevel
  7746. pub fn aya::VerifierLogLevel::default() -> Self
  7747. impl core::fmt::Binary for aya::VerifierLogLevel
  7748. pub fn aya::VerifierLogLevel::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7749. impl core::fmt::Debug for aya::VerifierLogLevel
  7750. pub fn aya::VerifierLogLevel::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7751. impl core::fmt::LowerHex for aya::VerifierLogLevel
  7752. pub fn aya::VerifierLogLevel::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7753. impl core::fmt::Octal for aya::VerifierLogLevel
  7754. pub fn aya::VerifierLogLevel::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7755. impl core::fmt::UpperHex for aya::VerifierLogLevel
  7756. pub fn aya::VerifierLogLevel::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7757. impl core::iter::traits::collect::Extend<aya::VerifierLogLevel> for aya::VerifierLogLevel
  7758. pub fn aya::VerifierLogLevel::extend<T: core::iter::traits::collect::IntoIterator<Item = Self>>(&mut self, iterator: T)
  7759. impl core::iter::traits::collect::FromIterator<aya::VerifierLogLevel> for aya::VerifierLogLevel
  7760. pub fn aya::VerifierLogLevel::from_iter<T: core::iter::traits::collect::IntoIterator<Item = Self>>(iterator: T) -> Self
  7761. impl core::iter::traits::collect::IntoIterator for aya::VerifierLogLevel
  7762. pub type aya::VerifierLogLevel::IntoIter = bitflags::iter::Iter<aya::VerifierLogLevel>
  7763. pub type aya::VerifierLogLevel::Item = aya::VerifierLogLevel
  7764. pub fn aya::VerifierLogLevel::into_iter(self) -> Self::IntoIter
  7765. impl core::marker::Copy for aya::VerifierLogLevel
  7766. impl core::ops::arith::Sub for aya::VerifierLogLevel
  7767. pub type aya::VerifierLogLevel::Output = aya::VerifierLogLevel
  7768. pub fn aya::VerifierLogLevel::sub(self, other: Self) -> Self
  7769. impl core::ops::arith::SubAssign for aya::VerifierLogLevel
  7770. pub fn aya::VerifierLogLevel::sub_assign(&mut self, other: Self)
  7771. impl core::ops::bit::BitAnd for aya::VerifierLogLevel
  7772. pub type aya::VerifierLogLevel::Output = aya::VerifierLogLevel
  7773. pub fn aya::VerifierLogLevel::bitand(self, other: Self) -> Self
  7774. impl core::ops::bit::BitAndAssign for aya::VerifierLogLevel
  7775. pub fn aya::VerifierLogLevel::bitand_assign(&mut self, other: Self)
  7776. impl core::ops::bit::BitOr for aya::VerifierLogLevel
  7777. pub type aya::VerifierLogLevel::Output = aya::VerifierLogLevel
  7778. pub fn aya::VerifierLogLevel::bitor(self, other: aya::VerifierLogLevel) -> Self
  7779. impl core::ops::bit::BitOrAssign for aya::VerifierLogLevel
  7780. pub fn aya::VerifierLogLevel::bitor_assign(&mut self, other: Self)
  7781. impl core::ops::bit::BitXor for aya::VerifierLogLevel
  7782. pub type aya::VerifierLogLevel::Output = aya::VerifierLogLevel
  7783. pub fn aya::VerifierLogLevel::bitxor(self, other: Self) -> Self
  7784. impl core::ops::bit::BitXorAssign for aya::VerifierLogLevel
  7785. pub fn aya::VerifierLogLevel::bitxor_assign(&mut self, other: Self)
  7786. impl core::ops::bit::Not for aya::VerifierLogLevel
  7787. pub type aya::VerifierLogLevel::Output = aya::VerifierLogLevel
  7788. pub fn aya::VerifierLogLevel::not(self) -> Self
  7789. impl core::marker::Send for aya::VerifierLogLevel
  7790. impl core::marker::Sync for aya::VerifierLogLevel
  7791. impl core::marker::Unpin for aya::VerifierLogLevel
  7792. impl core::panic::unwind_safe::RefUnwindSafe for aya::VerifierLogLevel
  7793. impl core::panic::unwind_safe::UnwindSafe for aya::VerifierLogLevel
  7794. impl<T, U> core::convert::Into<U> for aya::VerifierLogLevel where U: core::convert::From<T>
  7795. pub fn aya::VerifierLogLevel::into(self) -> U
  7796. impl<T, U> core::convert::TryFrom<U> for aya::VerifierLogLevel where U: core::convert::Into<T>
  7797. pub type aya::VerifierLogLevel::Error = core::convert::Infallible
  7798. pub fn aya::VerifierLogLevel::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7799. impl<T, U> core::convert::TryInto<U> for aya::VerifierLogLevel where U: core::convert::TryFrom<T>
  7800. pub type aya::VerifierLogLevel::Error = <U as core::convert::TryFrom<T>>::Error
  7801. pub fn aya::VerifierLogLevel::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7802. impl<T> alloc::borrow::ToOwned for aya::VerifierLogLevel where T: core::clone::Clone
  7803. pub type aya::VerifierLogLevel::Owned = T
  7804. pub fn aya::VerifierLogLevel::clone_into(&self, target: &mut T)
  7805. pub fn aya::VerifierLogLevel::to_owned(&self) -> T
  7806. impl<T> core::any::Any for aya::VerifierLogLevel where T: 'static + core::marker::Sized
  7807. pub fn aya::VerifierLogLevel::type_id(&self) -> core::any::TypeId
  7808. impl<T> core::borrow::Borrow<T> for aya::VerifierLogLevel where T: core::marker::Sized
  7809. pub fn aya::VerifierLogLevel::borrow(&self) -> &T
  7810. impl<T> core::borrow::BorrowMut<T> for aya::VerifierLogLevel where T: core::marker::Sized
  7811. pub fn aya::VerifierLogLevel::borrow_mut(&mut self) -> &mut T
  7812. impl<T> core::convert::From<T> for aya::VerifierLogLevel
  7813. pub fn aya::VerifierLogLevel::from(t: T) -> T
  7814. pub unsafe trait aya::Pod: core::marker::Copy + 'static
  7815. impl aya::Pod for aya_obj::generated::linux_bindings_x86_64::bpf_cpumap_val
  7816. impl aya::Pod for aya_obj::generated::linux_bindings_x86_64::bpf_devmap_val
  7817. impl aya::Pod for i128
  7818. impl aya::Pod for i16
  7819. impl aya::Pod for i32
  7820. impl aya::Pod for i64
  7821. impl aya::Pod for i8
  7822. impl aya::Pod for u128
  7823. impl aya::Pod for u16
  7824. impl aya::Pod for u32
  7825. impl aya::Pod for u64
  7826. impl aya::Pod for u8
  7827. impl<K: aya::Pod> aya::Pod for aya::maps::lpm_trie::Key<K>
  7828. impl<T: aya::Pod, const N: usize> aya::Pod for [T; N]
  7829. pub fn aya::features() -> &'static aya_obj::obj::Features
  7830. pub fn aya::loaded_programs() -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>>