aya.txt 949 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536
  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::Freeze for aya::maps::array::Array<T, V> where T: core::marker::Freeze
  31. impl<T, V> core::marker::Send for aya::maps::array::Array<T, V> where T: core::marker::Send, V: core::marker::Send
  32. impl<T, V> core::marker::Sync for aya::maps::array::Array<T, V> where T: core::marker::Sync, V: core::marker::Sync
  33. impl<T, V> core::marker::Unpin for aya::maps::array::Array<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  34. 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
  35. 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
  36. impl<T, U> core::convert::Into<U> for aya::maps::array::Array<T, V> where U: core::convert::From<T>
  37. pub fn aya::maps::array::Array<T, V>::into(self) -> U
  38. impl<T, U> core::convert::TryFrom<U> for aya::maps::array::Array<T, V> where U: core::convert::Into<T>
  39. pub type aya::maps::array::Array<T, V>::Error = core::convert::Infallible
  40. pub fn aya::maps::array::Array<T, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  41. impl<T, U> core::convert::TryInto<U> for aya::maps::array::Array<T, V> where U: core::convert::TryFrom<T>
  42. pub type aya::maps::array::Array<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  43. pub fn aya::maps::array::Array<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  44. impl<T> core::any::Any for aya::maps::array::Array<T, V> where T: 'static + ?core::marker::Sized
  45. pub fn aya::maps::array::Array<T, V>::type_id(&self) -> core::any::TypeId
  46. impl<T> core::borrow::Borrow<T> for aya::maps::array::Array<T, V> where T: ?core::marker::Sized
  47. pub fn aya::maps::array::Array<T, V>::borrow(&self) -> &T
  48. impl<T> core::borrow::BorrowMut<T> for aya::maps::array::Array<T, V> where T: ?core::marker::Sized
  49. pub fn aya::maps::array::Array<T, V>::borrow_mut(&mut self) -> &mut T
  50. impl<T> core::convert::From<T> for aya::maps::array::Array<T, V>
  51. pub fn aya::maps::array::Array<T, V>::from(t: T) -> T
  52. pub struct aya::maps::array::PerCpuArray<T, V: aya::Pod>
  53. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::PerCpuArray<T, V>
  54. pub fn aya::maps::PerCpuArray<T, V>::get(&self, index: &u32, flags: u64) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  55. 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>> + '_
  56. pub fn aya::maps::PerCpuArray<T, V>::len(&self) -> u32
  57. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::PerCpuArray<T, V>
  58. pub fn aya::maps::PerCpuArray<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  59. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::PerCpuArray<T, V>
  60. 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>
  61. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::PerCpuArray<&'a aya::maps::MapData, V>
  62. pub type aya::maps::PerCpuArray<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  63. pub fn aya::maps::PerCpuArray<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  64. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V>
  65. pub type aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  66. 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>
  67. 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>
  68. pub fn aya::maps::PerCpuArray<T, V>::get(&self, index: &u32) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  69. pub fn aya::maps::PerCpuArray<T, V>::map(&self) -> &aya::maps::MapData
  70. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::PerCpuArray<aya::maps::MapData, V>
  71. pub type aya::maps::PerCpuArray<aya::maps::MapData, V>::Error = aya::maps::MapError
  72. pub fn aya::maps::PerCpuArray<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  73. impl<T, V> core::marker::Freeze for aya::maps::PerCpuArray<T, V> where T: core::marker::Freeze
  74. impl<T, V> core::marker::Send for aya::maps::PerCpuArray<T, V> where T: core::marker::Send, V: core::marker::Send
  75. impl<T, V> core::marker::Sync for aya::maps::PerCpuArray<T, V> where T: core::marker::Sync, V: core::marker::Sync
  76. impl<T, V> core::marker::Unpin for aya::maps::PerCpuArray<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  77. 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
  78. 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
  79. impl<T, U> core::convert::Into<U> for aya::maps::PerCpuArray<T, V> where U: core::convert::From<T>
  80. pub fn aya::maps::PerCpuArray<T, V>::into(self) -> U
  81. impl<T, U> core::convert::TryFrom<U> for aya::maps::PerCpuArray<T, V> where U: core::convert::Into<T>
  82. pub type aya::maps::PerCpuArray<T, V>::Error = core::convert::Infallible
  83. pub fn aya::maps::PerCpuArray<T, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  84. impl<T, U> core::convert::TryInto<U> for aya::maps::PerCpuArray<T, V> where U: core::convert::TryFrom<T>
  85. pub type aya::maps::PerCpuArray<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  86. pub fn aya::maps::PerCpuArray<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  87. impl<T> core::any::Any for aya::maps::PerCpuArray<T, V> where T: 'static + ?core::marker::Sized
  88. pub fn aya::maps::PerCpuArray<T, V>::type_id(&self) -> core::any::TypeId
  89. impl<T> core::borrow::Borrow<T> for aya::maps::PerCpuArray<T, V> where T: ?core::marker::Sized
  90. pub fn aya::maps::PerCpuArray<T, V>::borrow(&self) -> &T
  91. impl<T> core::borrow::BorrowMut<T> for aya::maps::PerCpuArray<T, V> where T: ?core::marker::Sized
  92. pub fn aya::maps::PerCpuArray<T, V>::borrow_mut(&mut self) -> &mut T
  93. impl<T> core::convert::From<T> for aya::maps::PerCpuArray<T, V>
  94. pub fn aya::maps::PerCpuArray<T, V>::from(t: T) -> T
  95. pub struct aya::maps::array::ProgramArray<T>
  96. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::ProgramArray<T>
  97. pub fn aya::maps::ProgramArray<T>::indices(&self) -> aya::maps::MapKeys<'_, u32>
  98. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::ProgramArray<T>
  99. pub fn aya::maps::ProgramArray<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  100. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::ProgramArray<T>
  101. pub fn aya::maps::ProgramArray<T>::clear_index(&mut self, index: &u32) -> core::result::Result<(), aya::maps::MapError>
  102. pub fn aya::maps::ProgramArray<T>::set(&mut self, index: u32, program: &aya::programs::ProgramFd, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  103. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::ProgramArray<aya::maps::MapData>
  104. pub type aya::maps::ProgramArray<aya::maps::MapData>::Error = aya::maps::MapError
  105. pub fn aya::maps::ProgramArray<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  106. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::ProgramArray<&'a aya::maps::MapData>
  107. pub type aya::maps::ProgramArray<&'a aya::maps::MapData>::Error = aya::maps::MapError
  108. pub fn aya::maps::ProgramArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  109. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::ProgramArray<&'a mut aya::maps::MapData>
  110. pub type aya::maps::ProgramArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  111. pub fn aya::maps::ProgramArray<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  112. impl<T> core::marker::Freeze for aya::maps::ProgramArray<T> where T: core::marker::Freeze
  113. impl<T> core::marker::Send for aya::maps::ProgramArray<T> where T: core::marker::Send
  114. impl<T> core::marker::Sync for aya::maps::ProgramArray<T> where T: core::marker::Sync
  115. impl<T> core::marker::Unpin for aya::maps::ProgramArray<T> where T: core::marker::Unpin
  116. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::ProgramArray<T> where T: core::panic::unwind_safe::RefUnwindSafe
  117. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::ProgramArray<T> where T: core::panic::unwind_safe::UnwindSafe
  118. impl<T, U> core::convert::Into<U> for aya::maps::ProgramArray<T> where U: core::convert::From<T>
  119. pub fn aya::maps::ProgramArray<T>::into(self) -> U
  120. impl<T, U> core::convert::TryFrom<U> for aya::maps::ProgramArray<T> where U: core::convert::Into<T>
  121. pub type aya::maps::ProgramArray<T>::Error = core::convert::Infallible
  122. pub fn aya::maps::ProgramArray<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  123. impl<T, U> core::convert::TryInto<U> for aya::maps::ProgramArray<T> where U: core::convert::TryFrom<T>
  124. pub type aya::maps::ProgramArray<T>::Error = <U as core::convert::TryFrom<T>>::Error
  125. pub fn aya::maps::ProgramArray<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  126. impl<T> core::any::Any for aya::maps::ProgramArray<T> where T: 'static + ?core::marker::Sized
  127. pub fn aya::maps::ProgramArray<T>::type_id(&self) -> core::any::TypeId
  128. impl<T> core::borrow::Borrow<T> for aya::maps::ProgramArray<T> where T: ?core::marker::Sized
  129. pub fn aya::maps::ProgramArray<T>::borrow(&self) -> &T
  130. impl<T> core::borrow::BorrowMut<T> for aya::maps::ProgramArray<T> where T: ?core::marker::Sized
  131. pub fn aya::maps::ProgramArray<T>::borrow_mut(&mut self) -> &mut T
  132. impl<T> core::convert::From<T> for aya::maps::ProgramArray<T>
  133. pub fn aya::maps::ProgramArray<T>::from(t: T) -> T
  134. pub mod aya::maps::bloom_filter
  135. pub struct aya::maps::bloom_filter::BloomFilter<T, V: aya::Pod>
  136. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::bloom_filter::BloomFilter<T, V>
  137. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::contains(&self, value: &V, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  138. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::bloom_filter::BloomFilter<T, V>
  139. 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>
  140. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::bloom_filter::BloomFilter<T, V>
  141. 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>
  142. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V>
  143. pub type aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  144. 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>
  145. 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>
  146. pub type aya::maps::bloom_filter::BloomFilter<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  147. 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>
  148. impl<T: core::fmt::Debug, V: core::fmt::Debug + aya::Pod> core::fmt::Debug for aya::maps::bloom_filter::BloomFilter<T, V>
  149. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  150. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::bloom_filter::BloomFilter<aya::maps::MapData, V>
  151. pub type aya::maps::bloom_filter::BloomFilter<aya::maps::MapData, V>::Error = aya::maps::MapError
  152. pub fn aya::maps::bloom_filter::BloomFilter<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  153. impl<T, V> core::marker::Freeze for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::marker::Freeze
  154. impl<T, V> core::marker::Send for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::marker::Send, V: core::marker::Send
  155. impl<T, V> core::marker::Sync for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::marker::Sync, V: core::marker::Sync
  156. impl<T, V> core::marker::Unpin for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  157. 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
  158. 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
  159. impl<T, U> core::convert::Into<U> for aya::maps::bloom_filter::BloomFilter<T, V> where U: core::convert::From<T>
  160. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::into(self) -> U
  161. impl<T, U> core::convert::TryFrom<U> for aya::maps::bloom_filter::BloomFilter<T, V> where U: core::convert::Into<T>
  162. pub type aya::maps::bloom_filter::BloomFilter<T, V>::Error = core::convert::Infallible
  163. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  164. impl<T, U> core::convert::TryInto<U> for aya::maps::bloom_filter::BloomFilter<T, V> where U: core::convert::TryFrom<T>
  165. pub type aya::maps::bloom_filter::BloomFilter<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  166. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  167. impl<T> core::any::Any for aya::maps::bloom_filter::BloomFilter<T, V> where T: 'static + ?core::marker::Sized
  168. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::type_id(&self) -> core::any::TypeId
  169. impl<T> core::borrow::Borrow<T> for aya::maps::bloom_filter::BloomFilter<T, V> where T: ?core::marker::Sized
  170. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::borrow(&self) -> &T
  171. impl<T> core::borrow::BorrowMut<T> for aya::maps::bloom_filter::BloomFilter<T, V> where T: ?core::marker::Sized
  172. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::borrow_mut(&mut self) -> &mut T
  173. impl<T> core::convert::From<T> for aya::maps::bloom_filter::BloomFilter<T, V>
  174. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::from(t: T) -> T
  175. pub mod aya::maps::hash_map
  176. pub struct aya::maps::hash_map::HashMap<T, K, V>
  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>::get(&self, key: &K, flags: u64) -> core::result::Result<V, aya::maps::MapError>
  179. pub fn aya::maps::hash_map::HashMap<T, K, V>::iter(&self) -> aya::maps::MapIter<'_, K, V, Self>
  180. pub fn aya::maps::hash_map::HashMap<T, K, V>::keys(&self) -> aya::maps::MapKeys<'_, K>
  181. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::HashMap<T, K, V>
  182. 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>
  183. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::HashMap<T, K, V>
  184. 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>
  185. pub fn aya::maps::hash_map::HashMap<T, K, V>::remove(&mut self, key: &K) -> core::result::Result<(), aya::maps::MapError>
  186. 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>
  187. pub type aya::maps::hash_map::HashMap<&'a aya::maps::MapData, K, V>::Error = aya::maps::MapError
  188. 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>
  189. 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>
  190. pub type aya::maps::hash_map::HashMap<&'a mut aya::maps::MapData, K, V>::Error = aya::maps::MapError
  191. 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>
  192. impl<K: aya::Pod, V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::hash_map::HashMap<aya::maps::MapData, K, V>
  193. pub type aya::maps::hash_map::HashMap<aya::maps::MapData, K, V>::Error = aya::maps::MapError
  194. pub fn aya::maps::hash_map::HashMap<aya::maps::MapData, K, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  195. 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>
  196. pub fn aya::maps::hash_map::HashMap<T, K, V>::get(&self, key: &K) -> core::result::Result<V, aya::maps::MapError>
  197. pub fn aya::maps::hash_map::HashMap<T, K, V>::map(&self) -> &aya::maps::MapData
  198. 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>
  199. pub fn aya::maps::hash_map::HashMap<T, K, V>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  200. impl<T, K, V> core::marker::Freeze for aya::maps::hash_map::HashMap<T, K, V> where T: core::marker::Freeze
  201. impl<T, K, V> core::marker::Send for aya::maps::hash_map::HashMap<T, K, V> where T: core::marker::Send, K: core::marker::Send, V: core::marker::Send
  202. impl<T, K, V> core::marker::Sync for aya::maps::hash_map::HashMap<T, K, V> where T: core::marker::Sync, K: core::marker::Sync, V: core::marker::Sync
  203. impl<T, K, V> core::marker::Unpin for aya::maps::hash_map::HashMap<T, K, V> where T: core::marker::Unpin, K: core::marker::Unpin, V: core::marker::Unpin
  204. impl<T, K, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::hash_map::HashMap<T, K, V> where T: core::panic::unwind_safe::RefUnwindSafe, K: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  205. impl<T, K, V> core::panic::unwind_safe::UnwindSafe for aya::maps::hash_map::HashMap<T, K, V> where T: core::panic::unwind_safe::UnwindSafe, K: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  206. impl<T, U> core::convert::Into<U> for aya::maps::hash_map::HashMap<T, K, V> where U: core::convert::From<T>
  207. pub fn aya::maps::hash_map::HashMap<T, K, V>::into(self) -> U
  208. impl<T, U> core::convert::TryFrom<U> for aya::maps::hash_map::HashMap<T, K, V> where U: core::convert::Into<T>
  209. pub type aya::maps::hash_map::HashMap<T, K, V>::Error = core::convert::Infallible
  210. 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>
  211. impl<T, U> core::convert::TryInto<U> for aya::maps::hash_map::HashMap<T, K, V> where U: core::convert::TryFrom<T>
  212. pub type aya::maps::hash_map::HashMap<T, K, V>::Error = <U as core::convert::TryFrom<T>>::Error
  213. pub fn aya::maps::hash_map::HashMap<T, K, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  214. impl<T> core::any::Any for aya::maps::hash_map::HashMap<T, K, V> where T: 'static + ?core::marker::Sized
  215. pub fn aya::maps::hash_map::HashMap<T, K, V>::type_id(&self) -> core::any::TypeId
  216. impl<T> core::borrow::Borrow<T> for aya::maps::hash_map::HashMap<T, K, V> where T: ?core::marker::Sized
  217. pub fn aya::maps::hash_map::HashMap<T, K, V>::borrow(&self) -> &T
  218. impl<T> core::borrow::BorrowMut<T> for aya::maps::hash_map::HashMap<T, K, V> where T: ?core::marker::Sized
  219. pub fn aya::maps::hash_map::HashMap<T, K, V>::borrow_mut(&mut self) -> &mut T
  220. impl<T> core::convert::From<T> for aya::maps::hash_map::HashMap<T, K, V>
  221. pub fn aya::maps::hash_map::HashMap<T, K, V>::from(t: T) -> T
  222. pub struct aya::maps::hash_map::PerCpuHashMap<T, K: aya::Pod, V: aya::Pod>
  223. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::PerCpuHashMap<T, K, V>
  224. 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>
  225. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::iter(&self) -> aya::maps::MapIter<'_, K, aya::maps::PerCpuValues<V>, Self>
  226. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::keys(&self) -> aya::maps::MapKeys<'_, K>
  227. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::PerCpuHashMap<T, K, V>
  228. 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>
  229. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::PerCpuHashMap<T, K, V>
  230. 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>
  231. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::remove(&mut self, key: &K) -> core::result::Result<(), aya::maps::MapError>
  232. 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>
  233. pub type aya::maps::hash_map::PerCpuHashMap<&'a aya::maps::MapData, K, V>::Error = aya::maps::MapError
  234. 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>
  235. 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>
  236. pub type aya::maps::hash_map::PerCpuHashMap<&'a mut aya::maps::MapData, K, V>::Error = aya::maps::MapError
  237. 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>
  238. impl<K: aya::Pod, V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::hash_map::PerCpuHashMap<aya::maps::MapData, K, V>
  239. pub type aya::maps::hash_map::PerCpuHashMap<aya::maps::MapData, K, V>::Error = aya::maps::MapError
  240. pub fn aya::maps::hash_map::PerCpuHashMap<aya::maps::MapData, K, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  241. 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>
  242. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::get(&self, key: &K) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  243. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::map(&self) -> &aya::maps::MapData
  244. impl<T, K, V> core::marker::Freeze for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: core::marker::Freeze
  245. impl<T, K, V> core::marker::Send for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: core::marker::Send, K: core::marker::Send, V: core::marker::Send
  246. impl<T, K, V> core::marker::Sync for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: core::marker::Sync, K: core::marker::Sync, V: core::marker::Sync
  247. impl<T, K, V> core::marker::Unpin for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: core::marker::Unpin, K: core::marker::Unpin, V: core::marker::Unpin
  248. impl<T, K, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: core::panic::unwind_safe::RefUnwindSafe, K: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  249. impl<T, K, V> core::panic::unwind_safe::UnwindSafe for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: core::panic::unwind_safe::UnwindSafe, K: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  250. impl<T, U> core::convert::Into<U> for aya::maps::hash_map::PerCpuHashMap<T, K, V> where U: core::convert::From<T>
  251. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::into(self) -> U
  252. impl<T, U> core::convert::TryFrom<U> for aya::maps::hash_map::PerCpuHashMap<T, K, V> where U: core::convert::Into<T>
  253. pub type aya::maps::hash_map::PerCpuHashMap<T, K, V>::Error = core::convert::Infallible
  254. 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>
  255. impl<T, U> core::convert::TryInto<U> for aya::maps::hash_map::PerCpuHashMap<T, K, V> where U: core::convert::TryFrom<T>
  256. pub type aya::maps::hash_map::PerCpuHashMap<T, K, V>::Error = <U as core::convert::TryFrom<T>>::Error
  257. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  258. impl<T> core::any::Any for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: 'static + ?core::marker::Sized
  259. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::type_id(&self) -> core::any::TypeId
  260. impl<T> core::borrow::Borrow<T> for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: ?core::marker::Sized
  261. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::borrow(&self) -> &T
  262. impl<T> core::borrow::BorrowMut<T> for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: ?core::marker::Sized
  263. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::borrow_mut(&mut self) -> &mut T
  264. impl<T> core::convert::From<T> for aya::maps::hash_map::PerCpuHashMap<T, K, V>
  265. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::from(t: T) -> T
  266. pub mod aya::maps::lpm_trie
  267. #[repr(C, packed(1))] pub struct aya::maps::lpm_trie::Key<K: aya::Pod>
  268. impl<K: aya::Pod> aya::maps::lpm_trie::Key<K>
  269. pub fn aya::maps::lpm_trie::Key<K>::data(&self) -> K
  270. pub fn aya::maps::lpm_trie::Key<K>::new(prefix_len: u32, data: K) -> Self
  271. pub fn aya::maps::lpm_trie::Key<K>::prefix_len(&self) -> u32
  272. impl<K: aya::Pod> aya::Pod for aya::maps::lpm_trie::Key<K>
  273. impl<K: aya::Pod> core::clone::Clone for aya::maps::lpm_trie::Key<K>
  274. pub fn aya::maps::lpm_trie::Key<K>::clone(&self) -> Self
  275. impl<K: aya::Pod> core::marker::Copy for aya::maps::lpm_trie::Key<K>
  276. 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>
  277. 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>
  278. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::map(&self) -> &aya::maps::MapData
  279. impl<K> core::marker::Freeze for aya::maps::lpm_trie::Key<K> where K: core::marker::Freeze
  280. impl<K> core::marker::Send for aya::maps::lpm_trie::Key<K> where K: core::marker::Send
  281. impl<K> core::marker::Sync for aya::maps::lpm_trie::Key<K> where K: core::marker::Sync
  282. impl<K> core::marker::Unpin for aya::maps::lpm_trie::Key<K> where K: core::marker::Unpin
  283. impl<K> core::panic::unwind_safe::RefUnwindSafe for aya::maps::lpm_trie::Key<K> where K: core::panic::unwind_safe::RefUnwindSafe
  284. impl<K> core::panic::unwind_safe::UnwindSafe for aya::maps::lpm_trie::Key<K> where K: core::panic::unwind_safe::UnwindSafe
  285. impl<T, U> core::convert::Into<U> for aya::maps::lpm_trie::Key<K> where U: core::convert::From<T>
  286. pub fn aya::maps::lpm_trie::Key<K>::into(self) -> U
  287. impl<T, U> core::convert::TryFrom<U> for aya::maps::lpm_trie::Key<K> where U: core::convert::Into<T>
  288. pub type aya::maps::lpm_trie::Key<K>::Error = core::convert::Infallible
  289. pub fn aya::maps::lpm_trie::Key<K>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  290. impl<T, U> core::convert::TryInto<U> for aya::maps::lpm_trie::Key<K> where U: core::convert::TryFrom<T>
  291. pub type aya::maps::lpm_trie::Key<K>::Error = <U as core::convert::TryFrom<T>>::Error
  292. pub fn aya::maps::lpm_trie::Key<K>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  293. impl<T> alloc::borrow::ToOwned for aya::maps::lpm_trie::Key<K> where T: core::clone::Clone
  294. pub type aya::maps::lpm_trie::Key<K>::Owned = T
  295. pub fn aya::maps::lpm_trie::Key<K>::clone_into(&self, target: &mut T)
  296. pub fn aya::maps::lpm_trie::Key<K>::to_owned(&self) -> T
  297. impl<T> core::any::Any for aya::maps::lpm_trie::Key<K> where T: 'static + ?core::marker::Sized
  298. pub fn aya::maps::lpm_trie::Key<K>::type_id(&self) -> core::any::TypeId
  299. impl<T> core::borrow::Borrow<T> for aya::maps::lpm_trie::Key<K> where T: ?core::marker::Sized
  300. pub fn aya::maps::lpm_trie::Key<K>::borrow(&self) -> &T
  301. impl<T> core::borrow::BorrowMut<T> for aya::maps::lpm_trie::Key<K> where T: ?core::marker::Sized
  302. pub fn aya::maps::lpm_trie::Key<K>::borrow_mut(&mut self) -> &mut T
  303. impl<T> core::clone::CloneToUninit for aya::maps::lpm_trie::Key<K> where T: core::clone::Clone
  304. pub unsafe fn aya::maps::lpm_trie::Key<K>::clone_to_uninit(&self, dest: *mut u8)
  305. impl<T> core::convert::From<T> for aya::maps::lpm_trie::Key<K>
  306. pub fn aya::maps::lpm_trie::Key<K>::from(t: T) -> T
  307. pub struct aya::maps::lpm_trie::LpmTrie<T, K, V>
  308. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::lpm_trie::LpmTrie<T, K, V>
  309. 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>
  310. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::iter(&self) -> aya::maps::MapIter<'_, aya::maps::lpm_trie::Key<K>, V, Self>
  311. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::keys(&self) -> aya::maps::MapKeys<'_, aya::maps::lpm_trie::Key<K>>
  312. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::lpm_trie::LpmTrie<T, K, V>
  313. 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>
  314. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::lpm_trie::LpmTrie<T, K, V>
  315. 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>
  316. 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>
  317. 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>
  318. pub type aya::maps::lpm_trie::LpmTrie<&'a aya::maps::MapData, K, V>::Error = aya::maps::MapError
  319. 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>
  320. 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>
  321. pub type aya::maps::lpm_trie::LpmTrie<&'a mut aya::maps::MapData, K, V>::Error = aya::maps::MapError
  322. 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>
  323. impl<K: aya::Pod, V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::lpm_trie::LpmTrie<aya::maps::MapData, K, V>
  324. pub type aya::maps::lpm_trie::LpmTrie<aya::maps::MapData, K, V>::Error = aya::maps::MapError
  325. pub fn aya::maps::lpm_trie::LpmTrie<aya::maps::MapData, K, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  326. 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>
  327. 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>
  328. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::map(&self) -> &aya::maps::MapData
  329. 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>
  330. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  331. impl<T, K, V> core::marker::Freeze for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: core::marker::Freeze
  332. impl<T, K, V> core::marker::Send for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: core::marker::Send, K: core::marker::Send, V: core::marker::Send
  333. impl<T, K, V> core::marker::Sync for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: core::marker::Sync, K: core::marker::Sync, V: core::marker::Sync
  334. impl<T, K, V> core::marker::Unpin for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: core::marker::Unpin, K: core::marker::Unpin, V: core::marker::Unpin
  335. impl<T, K, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: core::panic::unwind_safe::RefUnwindSafe, K: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  336. impl<T, K, V> core::panic::unwind_safe::UnwindSafe for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: core::panic::unwind_safe::UnwindSafe, K: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  337. impl<T, U> core::convert::Into<U> for aya::maps::lpm_trie::LpmTrie<T, K, V> where U: core::convert::From<T>
  338. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::into(self) -> U
  339. impl<T, U> core::convert::TryFrom<U> for aya::maps::lpm_trie::LpmTrie<T, K, V> where U: core::convert::Into<T>
  340. pub type aya::maps::lpm_trie::LpmTrie<T, K, V>::Error = core::convert::Infallible
  341. 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>
  342. impl<T, U> core::convert::TryInto<U> for aya::maps::lpm_trie::LpmTrie<T, K, V> where U: core::convert::TryFrom<T>
  343. pub type aya::maps::lpm_trie::LpmTrie<T, K, V>::Error = <U as core::convert::TryFrom<T>>::Error
  344. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  345. impl<T> core::any::Any for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: 'static + ?core::marker::Sized
  346. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::type_id(&self) -> core::any::TypeId
  347. impl<T> core::borrow::Borrow<T> for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: ?core::marker::Sized
  348. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::borrow(&self) -> &T
  349. impl<T> core::borrow::BorrowMut<T> for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: ?core::marker::Sized
  350. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::borrow_mut(&mut self) -> &mut T
  351. impl<T> core::convert::From<T> for aya::maps::lpm_trie::LpmTrie<T, K, V>
  352. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::from(t: T) -> T
  353. pub mod aya::maps::perf
  354. pub enum aya::maps::perf::PerfBufferError
  355. pub aya::maps::perf::PerfBufferError::IOError(std::io::error::Error)
  356. pub aya::maps::perf::PerfBufferError::InvalidPageCount
  357. pub aya::maps::perf::PerfBufferError::InvalidPageCount::page_count: usize
  358. pub aya::maps::perf::PerfBufferError::MMapError
  359. pub aya::maps::perf::PerfBufferError::MMapError::io_error: std::io::error::Error
  360. pub aya::maps::perf::PerfBufferError::MoreSpaceNeeded
  361. pub aya::maps::perf::PerfBufferError::MoreSpaceNeeded::size: usize
  362. pub aya::maps::perf::PerfBufferError::NoBuffers
  363. pub aya::maps::perf::PerfBufferError::OpenError
  364. pub aya::maps::perf::PerfBufferError::OpenError::io_error: std::io::error::Error
  365. pub aya::maps::perf::PerfBufferError::PerfEventEnableError
  366. pub aya::maps::perf::PerfBufferError::PerfEventEnableError::io_error: std::io::error::Error
  367. impl core::convert::From<std::io::error::Error> for aya::maps::perf::PerfBufferError
  368. pub fn aya::maps::perf::PerfBufferError::from(source: std::io::error::Error) -> Self
  369. impl core::error::Error for aya::maps::perf::PerfBufferError
  370. pub fn aya::maps::perf::PerfBufferError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  371. impl core::fmt::Debug for aya::maps::perf::PerfBufferError
  372. pub fn aya::maps::perf::PerfBufferError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  373. impl core::fmt::Display for aya::maps::perf::PerfBufferError
  374. pub fn aya::maps::perf::PerfBufferError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  375. impl core::marker::Freeze for aya::maps::perf::PerfBufferError
  376. impl core::marker::Send for aya::maps::perf::PerfBufferError
  377. impl core::marker::Sync for aya::maps::perf::PerfBufferError
  378. impl core::marker::Unpin for aya::maps::perf::PerfBufferError
  379. impl !core::panic::unwind_safe::RefUnwindSafe for aya::maps::perf::PerfBufferError
  380. impl !core::panic::unwind_safe::UnwindSafe for aya::maps::perf::PerfBufferError
  381. impl<T, U> core::convert::Into<U> for aya::maps::perf::PerfBufferError where U: core::convert::From<T>
  382. pub fn aya::maps::perf::PerfBufferError::into(self) -> U
  383. impl<T, U> core::convert::TryFrom<U> for aya::maps::perf::PerfBufferError where U: core::convert::Into<T>
  384. pub type aya::maps::perf::PerfBufferError::Error = core::convert::Infallible
  385. pub fn aya::maps::perf::PerfBufferError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  386. impl<T, U> core::convert::TryInto<U> for aya::maps::perf::PerfBufferError where U: core::convert::TryFrom<T>
  387. pub type aya::maps::perf::PerfBufferError::Error = <U as core::convert::TryFrom<T>>::Error
  388. pub fn aya::maps::perf::PerfBufferError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  389. impl<T> alloc::string::ToString for aya::maps::perf::PerfBufferError where T: core::fmt::Display + ?core::marker::Sized
  390. pub fn aya::maps::perf::PerfBufferError::to_string(&self) -> alloc::string::String
  391. impl<T> core::any::Any for aya::maps::perf::PerfBufferError where T: 'static + ?core::marker::Sized
  392. pub fn aya::maps::perf::PerfBufferError::type_id(&self) -> core::any::TypeId
  393. impl<T> core::borrow::Borrow<T> for aya::maps::perf::PerfBufferError where T: ?core::marker::Sized
  394. pub fn aya::maps::perf::PerfBufferError::borrow(&self) -> &T
  395. impl<T> core::borrow::BorrowMut<T> for aya::maps::perf::PerfBufferError where T: ?core::marker::Sized
  396. pub fn aya::maps::perf::PerfBufferError::borrow_mut(&mut self) -> &mut T
  397. impl<T> core::convert::From<T> for aya::maps::perf::PerfBufferError
  398. pub fn aya::maps::perf::PerfBufferError::from(t: T) -> T
  399. pub struct aya::maps::perf::AsyncPerfEventArray<T>
  400. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::perf::AsyncPerfEventArray<T>
  401. 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>
  402. pub fn aya::maps::perf::AsyncPerfEventArray<T>::pin<P: core::convert::AsRef<std::path::Path>>(&self, path: P) -> core::result::Result<(), aya::pin::PinError>
  403. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::perf::AsyncPerfEventArray<aya::maps::MapData>
  404. pub type aya::maps::perf::AsyncPerfEventArray<aya::maps::MapData>::Error = aya::maps::MapError
  405. pub fn aya::maps::perf::AsyncPerfEventArray<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  406. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::perf::AsyncPerfEventArray<&'a aya::maps::MapData>
  407. pub type aya::maps::perf::AsyncPerfEventArray<&'a aya::maps::MapData>::Error = aya::maps::MapError
  408. pub fn aya::maps::perf::AsyncPerfEventArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  409. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::perf::AsyncPerfEventArray<&'a mut aya::maps::MapData>
  410. pub type aya::maps::perf::AsyncPerfEventArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  411. 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>
  412. impl<T> core::marker::Freeze for aya::maps::perf::AsyncPerfEventArray<T>
  413. impl<T> core::marker::Send for aya::maps::perf::AsyncPerfEventArray<T> where T: core::marker::Sync + core::marker::Send
  414. impl<T> core::marker::Sync for aya::maps::perf::AsyncPerfEventArray<T> where T: core::marker::Sync + core::marker::Send
  415. impl<T> core::marker::Unpin for aya::maps::perf::AsyncPerfEventArray<T>
  416. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::perf::AsyncPerfEventArray<T> where T: core::panic::unwind_safe::RefUnwindSafe
  417. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::perf::AsyncPerfEventArray<T> where T: core::panic::unwind_safe::RefUnwindSafe
  418. impl<T, U> core::convert::Into<U> for aya::maps::perf::AsyncPerfEventArray<T> where U: core::convert::From<T>
  419. pub fn aya::maps::perf::AsyncPerfEventArray<T>::into(self) -> U
  420. impl<T, U> core::convert::TryFrom<U> for aya::maps::perf::AsyncPerfEventArray<T> where U: core::convert::Into<T>
  421. pub type aya::maps::perf::AsyncPerfEventArray<T>::Error = core::convert::Infallible
  422. pub fn aya::maps::perf::AsyncPerfEventArray<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  423. impl<T, U> core::convert::TryInto<U> for aya::maps::perf::AsyncPerfEventArray<T> where U: core::convert::TryFrom<T>
  424. pub type aya::maps::perf::AsyncPerfEventArray<T>::Error = <U as core::convert::TryFrom<T>>::Error
  425. pub fn aya::maps::perf::AsyncPerfEventArray<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  426. impl<T> core::any::Any for aya::maps::perf::AsyncPerfEventArray<T> where T: 'static + ?core::marker::Sized
  427. pub fn aya::maps::perf::AsyncPerfEventArray<T>::type_id(&self) -> core::any::TypeId
  428. impl<T> core::borrow::Borrow<T> for aya::maps::perf::AsyncPerfEventArray<T> where T: ?core::marker::Sized
  429. pub fn aya::maps::perf::AsyncPerfEventArray<T>::borrow(&self) -> &T
  430. impl<T> core::borrow::BorrowMut<T> for aya::maps::perf::AsyncPerfEventArray<T> where T: ?core::marker::Sized
  431. pub fn aya::maps::perf::AsyncPerfEventArray<T>::borrow_mut(&mut self) -> &mut T
  432. impl<T> core::convert::From<T> for aya::maps::perf::AsyncPerfEventArray<T>
  433. pub fn aya::maps::perf::AsyncPerfEventArray<T>::from(t: T) -> T
  434. pub struct aya::maps::perf::AsyncPerfEventArrayBuffer<T: core::borrow::BorrowMut<aya::maps::MapData>>
  435. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::perf::AsyncPerfEventArrayBuffer<T>
  436. 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>
  437. impl<T> core::marker::Freeze for aya::maps::perf::AsyncPerfEventArrayBuffer<T>
  438. impl<T> core::marker::Send for aya::maps::perf::AsyncPerfEventArrayBuffer<T> where T: core::marker::Sync + core::marker::Send
  439. impl<T> core::marker::Sync for aya::maps::perf::AsyncPerfEventArrayBuffer<T> where T: core::marker::Sync + core::marker::Send
  440. impl<T> core::marker::Unpin for aya::maps::perf::AsyncPerfEventArrayBuffer<T>
  441. impl<T> !core::panic::unwind_safe::RefUnwindSafe for aya::maps::perf::AsyncPerfEventArrayBuffer<T>
  442. impl<T> !core::panic::unwind_safe::UnwindSafe for aya::maps::perf::AsyncPerfEventArrayBuffer<T>
  443. impl<T, U> core::convert::Into<U> for aya::maps::perf::AsyncPerfEventArrayBuffer<T> where U: core::convert::From<T>
  444. pub fn aya::maps::perf::AsyncPerfEventArrayBuffer<T>::into(self) -> U
  445. impl<T, U> core::convert::TryFrom<U> for aya::maps::perf::AsyncPerfEventArrayBuffer<T> where U: core::convert::Into<T>
  446. pub type aya::maps::perf::AsyncPerfEventArrayBuffer<T>::Error = core::convert::Infallible
  447. pub fn aya::maps::perf::AsyncPerfEventArrayBuffer<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  448. impl<T, U> core::convert::TryInto<U> for aya::maps::perf::AsyncPerfEventArrayBuffer<T> where U: core::convert::TryFrom<T>
  449. pub type aya::maps::perf::AsyncPerfEventArrayBuffer<T>::Error = <U as core::convert::TryFrom<T>>::Error
  450. pub fn aya::maps::perf::AsyncPerfEventArrayBuffer<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  451. impl<T> core::any::Any for aya::maps::perf::AsyncPerfEventArrayBuffer<T> where T: 'static + ?core::marker::Sized
  452. pub fn aya::maps::perf::AsyncPerfEventArrayBuffer<T>::type_id(&self) -> core::any::TypeId
  453. impl<T> core::borrow::Borrow<T> for aya::maps::perf::AsyncPerfEventArrayBuffer<T> where T: ?core::marker::Sized
  454. pub fn aya::maps::perf::AsyncPerfEventArrayBuffer<T>::borrow(&self) -> &T
  455. impl<T> core::borrow::BorrowMut<T> for aya::maps::perf::AsyncPerfEventArrayBuffer<T> where T: ?core::marker::Sized
  456. pub fn aya::maps::perf::AsyncPerfEventArrayBuffer<T>::borrow_mut(&mut self) -> &mut T
  457. impl<T> core::convert::From<T> for aya::maps::perf::AsyncPerfEventArrayBuffer<T>
  458. pub fn aya::maps::perf::AsyncPerfEventArrayBuffer<T>::from(t: T) -> T
  459. pub struct aya::maps::perf::Events
  460. pub aya::maps::perf::Events::lost: usize
  461. pub aya::maps::perf::Events::read: usize
  462. impl core::cmp::Eq for aya::maps::perf::Events
  463. impl core::cmp::PartialEq for aya::maps::perf::Events
  464. pub fn aya::maps::perf::Events::eq(&self, other: &aya::maps::perf::Events) -> bool
  465. impl core::fmt::Debug for aya::maps::perf::Events
  466. pub fn aya::maps::perf::Events::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  467. impl core::marker::StructuralPartialEq for aya::maps::perf::Events
  468. impl core::marker::Freeze for aya::maps::perf::Events
  469. impl core::marker::Send for aya::maps::perf::Events
  470. impl core::marker::Sync for aya::maps::perf::Events
  471. impl core::marker::Unpin for aya::maps::perf::Events
  472. impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::perf::Events
  473. impl core::panic::unwind_safe::UnwindSafe for aya::maps::perf::Events
  474. impl<Q, K> equivalent::Equivalent<K> for aya::maps::perf::Events where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  475. pub fn aya::maps::perf::Events::equivalent(&self, key: &K) -> bool
  476. impl<T, U> core::convert::Into<U> for aya::maps::perf::Events where U: core::convert::From<T>
  477. pub fn aya::maps::perf::Events::into(self) -> U
  478. impl<T, U> core::convert::TryFrom<U> for aya::maps::perf::Events where U: core::convert::Into<T>
  479. pub type aya::maps::perf::Events::Error = core::convert::Infallible
  480. pub fn aya::maps::perf::Events::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  481. impl<T, U> core::convert::TryInto<U> for aya::maps::perf::Events where U: core::convert::TryFrom<T>
  482. pub type aya::maps::perf::Events::Error = <U as core::convert::TryFrom<T>>::Error
  483. pub fn aya::maps::perf::Events::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  484. impl<T> core::any::Any for aya::maps::perf::Events where T: 'static + ?core::marker::Sized
  485. pub fn aya::maps::perf::Events::type_id(&self) -> core::any::TypeId
  486. impl<T> core::borrow::Borrow<T> for aya::maps::perf::Events where T: ?core::marker::Sized
  487. pub fn aya::maps::perf::Events::borrow(&self) -> &T
  488. impl<T> core::borrow::BorrowMut<T> for aya::maps::perf::Events where T: ?core::marker::Sized
  489. pub fn aya::maps::perf::Events::borrow_mut(&mut self) -> &mut T
  490. impl<T> core::convert::From<T> for aya::maps::perf::Events
  491. pub fn aya::maps::perf::Events::from(t: T) -> T
  492. pub struct aya::maps::perf::PerfEventArray<T>
  493. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::perf::PerfEventArray<T>
  494. pub fn aya::maps::perf::PerfEventArray<T>::pin<P: core::convert::AsRef<std::path::Path>>(&self, path: P) -> core::result::Result<(), aya::pin::PinError>
  495. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::perf::PerfEventArray<T>
  496. 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>
  497. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::perf::PerfEventArray<aya::maps::MapData>
  498. pub type aya::maps::perf::PerfEventArray<aya::maps::MapData>::Error = aya::maps::MapError
  499. pub fn aya::maps::perf::PerfEventArray<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  500. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>
  501. pub type aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>::Error = aya::maps::MapError
  502. pub fn aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  503. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData>
  504. pub type aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  505. 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>
  506. impl<T> core::marker::Freeze for aya::maps::perf::PerfEventArray<T>
  507. impl<T> core::marker::Send for aya::maps::perf::PerfEventArray<T> where T: core::marker::Sync + core::marker::Send
  508. impl<T> core::marker::Sync for aya::maps::perf::PerfEventArray<T> where T: core::marker::Sync + core::marker::Send
  509. impl<T> core::marker::Unpin for aya::maps::perf::PerfEventArray<T>
  510. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::perf::PerfEventArray<T> where T: core::panic::unwind_safe::RefUnwindSafe
  511. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::perf::PerfEventArray<T> where T: core::panic::unwind_safe::RefUnwindSafe
  512. impl<T, U> core::convert::Into<U> for aya::maps::perf::PerfEventArray<T> where U: core::convert::From<T>
  513. pub fn aya::maps::perf::PerfEventArray<T>::into(self) -> U
  514. impl<T, U> core::convert::TryFrom<U> for aya::maps::perf::PerfEventArray<T> where U: core::convert::Into<T>
  515. pub type aya::maps::perf::PerfEventArray<T>::Error = core::convert::Infallible
  516. pub fn aya::maps::perf::PerfEventArray<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  517. impl<T, U> core::convert::TryInto<U> for aya::maps::perf::PerfEventArray<T> where U: core::convert::TryFrom<T>
  518. pub type aya::maps::perf::PerfEventArray<T>::Error = <U as core::convert::TryFrom<T>>::Error
  519. pub fn aya::maps::perf::PerfEventArray<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  520. impl<T> core::any::Any for aya::maps::perf::PerfEventArray<T> where T: 'static + ?core::marker::Sized
  521. pub fn aya::maps::perf::PerfEventArray<T>::type_id(&self) -> core::any::TypeId
  522. impl<T> core::borrow::Borrow<T> for aya::maps::perf::PerfEventArray<T> where T: ?core::marker::Sized
  523. pub fn aya::maps::perf::PerfEventArray<T>::borrow(&self) -> &T
  524. impl<T> core::borrow::BorrowMut<T> for aya::maps::perf::PerfEventArray<T> where T: ?core::marker::Sized
  525. pub fn aya::maps::perf::PerfEventArray<T>::borrow_mut(&mut self) -> &mut T
  526. impl<T> core::convert::From<T> for aya::maps::perf::PerfEventArray<T>
  527. pub fn aya::maps::perf::PerfEventArray<T>::from(t: T) -> T
  528. pub struct aya::maps::perf::PerfEventArrayBuffer<T>
  529. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::perf::PerfEventArrayBuffer<T>
  530. 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>
  531. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::readable(&self) -> bool
  532. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> std::os::fd::owned::AsFd for aya::maps::perf::PerfEventArrayBuffer<T>
  533. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::as_fd(&self) -> std::os::fd::owned::BorrowedFd<'_>
  534. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> std::os::fd::raw::AsRawFd for aya::maps::perf::PerfEventArrayBuffer<T>
  535. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::as_raw_fd(&self) -> std::os::fd::raw::RawFd
  536. impl<T> core::marker::Freeze for aya::maps::perf::PerfEventArrayBuffer<T>
  537. impl<T> core::marker::Send for aya::maps::perf::PerfEventArrayBuffer<T> where T: core::marker::Sync + core::marker::Send
  538. impl<T> core::marker::Sync for aya::maps::perf::PerfEventArrayBuffer<T> where T: core::marker::Sync + core::marker::Send
  539. impl<T> core::marker::Unpin for aya::maps::perf::PerfEventArrayBuffer<T>
  540. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::perf::PerfEventArrayBuffer<T> where T: core::panic::unwind_safe::RefUnwindSafe
  541. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::perf::PerfEventArrayBuffer<T> where T: core::panic::unwind_safe::RefUnwindSafe
  542. impl<T, U> core::convert::Into<U> for aya::maps::perf::PerfEventArrayBuffer<T> where U: core::convert::From<T>
  543. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::into(self) -> U
  544. impl<T, U> core::convert::TryFrom<U> for aya::maps::perf::PerfEventArrayBuffer<T> where U: core::convert::Into<T>
  545. pub type aya::maps::perf::PerfEventArrayBuffer<T>::Error = core::convert::Infallible
  546. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  547. impl<T, U> core::convert::TryInto<U> for aya::maps::perf::PerfEventArrayBuffer<T> where U: core::convert::TryFrom<T>
  548. pub type aya::maps::perf::PerfEventArrayBuffer<T>::Error = <U as core::convert::TryFrom<T>>::Error
  549. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  550. impl<T> core::any::Any for aya::maps::perf::PerfEventArrayBuffer<T> where T: 'static + ?core::marker::Sized
  551. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::type_id(&self) -> core::any::TypeId
  552. impl<T> core::borrow::Borrow<T> for aya::maps::perf::PerfEventArrayBuffer<T> where T: ?core::marker::Sized
  553. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::borrow(&self) -> &T
  554. impl<T> core::borrow::BorrowMut<T> for aya::maps::perf::PerfEventArrayBuffer<T> where T: ?core::marker::Sized
  555. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::borrow_mut(&mut self) -> &mut T
  556. impl<T> core::convert::From<T> for aya::maps::perf::PerfEventArrayBuffer<T>
  557. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::from(t: T) -> T
  558. pub mod aya::maps::queue
  559. pub struct aya::maps::queue::Queue<T, V: aya::Pod>
  560. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::queue::Queue<T, V>
  561. pub fn aya::maps::queue::Queue<T, V>::capacity(&self) -> u32
  562. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::queue::Queue<T, V>
  563. 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>
  564. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::queue::Queue<T, V>
  565. pub fn aya::maps::queue::Queue<T, V>::pop(&mut self, flags: u64) -> core::result::Result<V, aya::maps::MapError>
  566. 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>
  567. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::queue::Queue<&'a aya::maps::MapData, V>
  568. pub type aya::maps::queue::Queue<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  569. pub fn aya::maps::queue::Queue<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  570. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::queue::Queue<&'a mut aya::maps::MapData, V>
  571. pub type aya::maps::queue::Queue<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  572. 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>
  573. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::queue::Queue<aya::maps::MapData, V>
  574. pub type aya::maps::queue::Queue<aya::maps::MapData, V>::Error = aya::maps::MapError
  575. pub fn aya::maps::queue::Queue<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  576. impl<T, V> core::marker::Freeze for aya::maps::queue::Queue<T, V> where T: core::marker::Freeze
  577. impl<T, V> core::marker::Send for aya::maps::queue::Queue<T, V> where T: core::marker::Send, V: core::marker::Send
  578. impl<T, V> core::marker::Sync for aya::maps::queue::Queue<T, V> where T: core::marker::Sync, V: core::marker::Sync
  579. impl<T, V> core::marker::Unpin for aya::maps::queue::Queue<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  580. 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
  581. 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
  582. impl<T, U> core::convert::Into<U> for aya::maps::queue::Queue<T, V> where U: core::convert::From<T>
  583. pub fn aya::maps::queue::Queue<T, V>::into(self) -> U
  584. impl<T, U> core::convert::TryFrom<U> for aya::maps::queue::Queue<T, V> where U: core::convert::Into<T>
  585. pub type aya::maps::queue::Queue<T, V>::Error = core::convert::Infallible
  586. pub fn aya::maps::queue::Queue<T, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  587. impl<T, U> core::convert::TryInto<U> for aya::maps::queue::Queue<T, V> where U: core::convert::TryFrom<T>
  588. pub type aya::maps::queue::Queue<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  589. pub fn aya::maps::queue::Queue<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  590. impl<T> core::any::Any for aya::maps::queue::Queue<T, V> where T: 'static + ?core::marker::Sized
  591. pub fn aya::maps::queue::Queue<T, V>::type_id(&self) -> core::any::TypeId
  592. impl<T> core::borrow::Borrow<T> for aya::maps::queue::Queue<T, V> where T: ?core::marker::Sized
  593. pub fn aya::maps::queue::Queue<T, V>::borrow(&self) -> &T
  594. impl<T> core::borrow::BorrowMut<T> for aya::maps::queue::Queue<T, V> where T: ?core::marker::Sized
  595. pub fn aya::maps::queue::Queue<T, V>::borrow_mut(&mut self) -> &mut T
  596. impl<T> core::convert::From<T> for aya::maps::queue::Queue<T, V>
  597. pub fn aya::maps::queue::Queue<T, V>::from(t: T) -> T
  598. pub mod aya::maps::ring_buf
  599. pub struct aya::maps::ring_buf::RingBuf<T>
  600. impl<T> aya::maps::ring_buf::RingBuf<T>
  601. pub fn aya::maps::ring_buf::RingBuf<T>::next(&mut self) -> core::option::Option<aya::maps::ring_buf::RingBufItem<'_>>
  602. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::ring_buf::RingBuf<aya::maps::MapData>
  603. pub type aya::maps::ring_buf::RingBuf<aya::maps::MapData>::Error = aya::maps::MapError
  604. pub fn aya::maps::ring_buf::RingBuf<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  605. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::ring_buf::RingBuf<&'a aya::maps::MapData>
  606. pub type aya::maps::ring_buf::RingBuf<&'a aya::maps::MapData>::Error = aya::maps::MapError
  607. pub fn aya::maps::ring_buf::RingBuf<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  608. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::ring_buf::RingBuf<&'a mut aya::maps::MapData>
  609. pub type aya::maps::ring_buf::RingBuf<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  610. 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>
  611. impl<T: core::borrow::Borrow<aya::maps::MapData>> std::os::fd::owned::AsFd for aya::maps::ring_buf::RingBuf<T>
  612. pub fn aya::maps::ring_buf::RingBuf<T>::as_fd(&self) -> std::os::fd::owned::BorrowedFd<'_>
  613. impl<T: core::borrow::Borrow<aya::maps::MapData>> std::os::fd::raw::AsRawFd for aya::maps::ring_buf::RingBuf<T>
  614. pub fn aya::maps::ring_buf::RingBuf<T>::as_raw_fd(&self) -> std::os::fd::raw::RawFd
  615. impl<T> core::marker::Freeze for aya::maps::ring_buf::RingBuf<T> where T: core::marker::Freeze
  616. impl<T> core::marker::Send for aya::maps::ring_buf::RingBuf<T> where T: core::marker::Send
  617. impl<T> core::marker::Sync for aya::maps::ring_buf::RingBuf<T> where T: core::marker::Sync
  618. impl<T> core::marker::Unpin for aya::maps::ring_buf::RingBuf<T> where T: core::marker::Unpin
  619. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::ring_buf::RingBuf<T> where T: core::panic::unwind_safe::RefUnwindSafe
  620. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::ring_buf::RingBuf<T> where T: core::panic::unwind_safe::UnwindSafe
  621. impl<T, U> core::convert::Into<U> for aya::maps::ring_buf::RingBuf<T> where U: core::convert::From<T>
  622. pub fn aya::maps::ring_buf::RingBuf<T>::into(self) -> U
  623. impl<T, U> core::convert::TryFrom<U> for aya::maps::ring_buf::RingBuf<T> where U: core::convert::Into<T>
  624. pub type aya::maps::ring_buf::RingBuf<T>::Error = core::convert::Infallible
  625. pub fn aya::maps::ring_buf::RingBuf<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  626. impl<T, U> core::convert::TryInto<U> for aya::maps::ring_buf::RingBuf<T> where U: core::convert::TryFrom<T>
  627. pub type aya::maps::ring_buf::RingBuf<T>::Error = <U as core::convert::TryFrom<T>>::Error
  628. pub fn aya::maps::ring_buf::RingBuf<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  629. impl<T> core::any::Any for aya::maps::ring_buf::RingBuf<T> where T: 'static + ?core::marker::Sized
  630. pub fn aya::maps::ring_buf::RingBuf<T>::type_id(&self) -> core::any::TypeId
  631. impl<T> core::borrow::Borrow<T> for aya::maps::ring_buf::RingBuf<T> where T: ?core::marker::Sized
  632. pub fn aya::maps::ring_buf::RingBuf<T>::borrow(&self) -> &T
  633. impl<T> core::borrow::BorrowMut<T> for aya::maps::ring_buf::RingBuf<T> where T: ?core::marker::Sized
  634. pub fn aya::maps::ring_buf::RingBuf<T>::borrow_mut(&mut self) -> &mut T
  635. impl<T> core::convert::From<T> for aya::maps::ring_buf::RingBuf<T>
  636. pub fn aya::maps::ring_buf::RingBuf<T>::from(t: T) -> T
  637. pub struct aya::maps::ring_buf::RingBufItem<'a>
  638. impl core::fmt::Debug for aya::maps::ring_buf::RingBufItem<'_>
  639. pub fn aya::maps::ring_buf::RingBufItem<'_>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  640. impl core::ops::deref::Deref for aya::maps::ring_buf::RingBufItem<'_>
  641. pub type aya::maps::ring_buf::RingBufItem<'_>::Target = [u8]
  642. pub fn aya::maps::ring_buf::RingBufItem<'_>::deref(&self) -> &Self::Target
  643. impl core::ops::drop::Drop for aya::maps::ring_buf::RingBufItem<'_>
  644. pub fn aya::maps::ring_buf::RingBufItem<'_>::drop(&mut self)
  645. impl<'a> core::marker::Freeze for aya::maps::ring_buf::RingBufItem<'a>
  646. impl<'a> core::marker::Send for aya::maps::ring_buf::RingBufItem<'a>
  647. impl<'a> core::marker::Sync for aya::maps::ring_buf::RingBufItem<'a>
  648. impl<'a> core::marker::Unpin for aya::maps::ring_buf::RingBufItem<'a>
  649. impl<'a> core::panic::unwind_safe::RefUnwindSafe for aya::maps::ring_buf::RingBufItem<'a>
  650. impl<'a> !core::panic::unwind_safe::UnwindSafe for aya::maps::ring_buf::RingBufItem<'a>
  651. impl<P, T> core::ops::deref::Receiver for aya::maps::ring_buf::RingBufItem<'a> where P: core::ops::deref::Deref<Target = T> + ?core::marker::Sized, T: ?core::marker::Sized
  652. pub type aya::maps::ring_buf::RingBufItem<'a>::Target = T
  653. impl<T, U> core::convert::Into<U> for aya::maps::ring_buf::RingBufItem<'a> where U: core::convert::From<T>
  654. pub fn aya::maps::ring_buf::RingBufItem<'a>::into(self) -> U
  655. impl<T, U> core::convert::TryFrom<U> for aya::maps::ring_buf::RingBufItem<'a> where U: core::convert::Into<T>
  656. pub type aya::maps::ring_buf::RingBufItem<'a>::Error = core::convert::Infallible
  657. pub fn aya::maps::ring_buf::RingBufItem<'a>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  658. impl<T, U> core::convert::TryInto<U> for aya::maps::ring_buf::RingBufItem<'a> where U: core::convert::TryFrom<T>
  659. pub type aya::maps::ring_buf::RingBufItem<'a>::Error = <U as core::convert::TryFrom<T>>::Error
  660. pub fn aya::maps::ring_buf::RingBufItem<'a>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  661. impl<T> core::any::Any for aya::maps::ring_buf::RingBufItem<'a> where T: 'static + ?core::marker::Sized
  662. pub fn aya::maps::ring_buf::RingBufItem<'a>::type_id(&self) -> core::any::TypeId
  663. impl<T> core::borrow::Borrow<T> for aya::maps::ring_buf::RingBufItem<'a> where T: ?core::marker::Sized
  664. pub fn aya::maps::ring_buf::RingBufItem<'a>::borrow(&self) -> &T
  665. impl<T> core::borrow::BorrowMut<T> for aya::maps::ring_buf::RingBufItem<'a> where T: ?core::marker::Sized
  666. pub fn aya::maps::ring_buf::RingBufItem<'a>::borrow_mut(&mut self) -> &mut T
  667. impl<T> core::convert::From<T> for aya::maps::ring_buf::RingBufItem<'a>
  668. pub fn aya::maps::ring_buf::RingBufItem<'a>::from(t: T) -> T
  669. pub mod aya::maps::sock
  670. pub struct aya::maps::sock::SockHash<T, K>
  671. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod> aya::maps::SockHash<T, K>
  672. pub fn aya::maps::SockHash<T, K>::fd(&self) -> &aya::maps::sock::SockMapFd
  673. pub fn aya::maps::SockHash<T, K>::get(&self, key: &K, flags: u64) -> core::result::Result<std::os::fd::raw::RawFd, aya::maps::MapError>
  674. pub fn aya::maps::SockHash<T, K>::iter(&self) -> aya::maps::MapIter<'_, K, std::os::fd::raw::RawFd, Self>
  675. pub fn aya::maps::SockHash<T, K>::keys(&self) -> aya::maps::MapKeys<'_, K>
  676. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::SockHash<T, V>
  677. pub fn aya::maps::SockHash<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  678. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, K: aya::Pod> aya::maps::SockHash<T, K>
  679. 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>
  680. pub fn aya::maps::SockHash<T, K>::remove(&mut self, key: &K) -> core::result::Result<(), aya::maps::MapError>
  681. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::SockHash<&'a aya::maps::MapData, V>
  682. pub type aya::maps::SockHash<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  683. pub fn aya::maps::SockHash<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  684. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::SockHash<&'a mut aya::maps::MapData, V>
  685. pub type aya::maps::SockHash<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  686. 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>
  687. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod> aya::maps::IterableMap<K, i32> for aya::maps::SockHash<T, K>
  688. pub fn aya::maps::SockHash<T, K>::get(&self, key: &K) -> core::result::Result<std::os::fd::raw::RawFd, aya::maps::MapError>
  689. pub fn aya::maps::SockHash<T, K>::map(&self) -> &aya::maps::MapData
  690. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::SockHash<aya::maps::MapData, V>
  691. pub type aya::maps::SockHash<aya::maps::MapData, V>::Error = aya::maps::MapError
  692. pub fn aya::maps::SockHash<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  693. impl<T, K> core::marker::Freeze for aya::maps::SockHash<T, K> where T: core::marker::Freeze
  694. impl<T, K> core::marker::Send for aya::maps::SockHash<T, K> where T: core::marker::Send, K: core::marker::Send
  695. impl<T, K> core::marker::Sync for aya::maps::SockHash<T, K> where T: core::marker::Sync, K: core::marker::Sync
  696. impl<T, K> core::marker::Unpin for aya::maps::SockHash<T, K> where T: core::marker::Unpin, K: core::marker::Unpin
  697. impl<T, K> core::panic::unwind_safe::RefUnwindSafe for aya::maps::SockHash<T, K> where T: core::panic::unwind_safe::RefUnwindSafe, K: core::panic::unwind_safe::RefUnwindSafe
  698. impl<T, K> core::panic::unwind_safe::UnwindSafe for aya::maps::SockHash<T, K> where T: core::panic::unwind_safe::UnwindSafe, K: core::panic::unwind_safe::UnwindSafe
  699. impl<T, U> core::convert::Into<U> for aya::maps::SockHash<T, K> where U: core::convert::From<T>
  700. pub fn aya::maps::SockHash<T, K>::into(self) -> U
  701. impl<T, U> core::convert::TryFrom<U> for aya::maps::SockHash<T, K> where U: core::convert::Into<T>
  702. pub type aya::maps::SockHash<T, K>::Error = core::convert::Infallible
  703. pub fn aya::maps::SockHash<T, K>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  704. impl<T, U> core::convert::TryInto<U> for aya::maps::SockHash<T, K> where U: core::convert::TryFrom<T>
  705. pub type aya::maps::SockHash<T, K>::Error = <U as core::convert::TryFrom<T>>::Error
  706. pub fn aya::maps::SockHash<T, K>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  707. impl<T> core::any::Any for aya::maps::SockHash<T, K> where T: 'static + ?core::marker::Sized
  708. pub fn aya::maps::SockHash<T, K>::type_id(&self) -> core::any::TypeId
  709. impl<T> core::borrow::Borrow<T> for aya::maps::SockHash<T, K> where T: ?core::marker::Sized
  710. pub fn aya::maps::SockHash<T, K>::borrow(&self) -> &T
  711. impl<T> core::borrow::BorrowMut<T> for aya::maps::SockHash<T, K> where T: ?core::marker::Sized
  712. pub fn aya::maps::SockHash<T, K>::borrow_mut(&mut self) -> &mut T
  713. impl<T> core::convert::From<T> for aya::maps::SockHash<T, K>
  714. pub fn aya::maps::SockHash<T, K>::from(t: T) -> T
  715. pub struct aya::maps::sock::SockMap<T>
  716. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::SockMap<T>
  717. pub fn aya::maps::SockMap<T>::fd(&self) -> &aya::maps::sock::SockMapFd
  718. pub fn aya::maps::SockMap<T>::indices(&self) -> aya::maps::MapKeys<'_, u32>
  719. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::SockMap<T>
  720. pub fn aya::maps::SockMap<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  721. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::SockMap<T>
  722. pub fn aya::maps::SockMap<T>::clear_index(&mut self, index: &u32) -> core::result::Result<(), aya::maps::MapError>
  723. 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>
  724. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::SockMap<aya::maps::MapData>
  725. pub type aya::maps::SockMap<aya::maps::MapData>::Error = aya::maps::MapError
  726. pub fn aya::maps::SockMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  727. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::SockMap<&'a aya::maps::MapData>
  728. pub type aya::maps::SockMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  729. pub fn aya::maps::SockMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  730. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::SockMap<&'a mut aya::maps::MapData>
  731. pub type aya::maps::SockMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  732. pub fn aya::maps::SockMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  733. impl<T> core::marker::Freeze for aya::maps::SockMap<T> where T: core::marker::Freeze
  734. impl<T> core::marker::Send for aya::maps::SockMap<T> where T: core::marker::Send
  735. impl<T> core::marker::Sync for aya::maps::SockMap<T> where T: core::marker::Sync
  736. impl<T> core::marker::Unpin for aya::maps::SockMap<T> where T: core::marker::Unpin
  737. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::SockMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  738. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::SockMap<T> where T: core::panic::unwind_safe::UnwindSafe
  739. impl<T, U> core::convert::Into<U> for aya::maps::SockMap<T> where U: core::convert::From<T>
  740. pub fn aya::maps::SockMap<T>::into(self) -> U
  741. impl<T, U> core::convert::TryFrom<U> for aya::maps::SockMap<T> where U: core::convert::Into<T>
  742. pub type aya::maps::SockMap<T>::Error = core::convert::Infallible
  743. pub fn aya::maps::SockMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  744. impl<T, U> core::convert::TryInto<U> for aya::maps::SockMap<T> where U: core::convert::TryFrom<T>
  745. pub type aya::maps::SockMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  746. pub fn aya::maps::SockMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  747. impl<T> core::any::Any for aya::maps::SockMap<T> where T: 'static + ?core::marker::Sized
  748. pub fn aya::maps::SockMap<T>::type_id(&self) -> core::any::TypeId
  749. impl<T> core::borrow::Borrow<T> for aya::maps::SockMap<T> where T: ?core::marker::Sized
  750. pub fn aya::maps::SockMap<T>::borrow(&self) -> &T
  751. impl<T> core::borrow::BorrowMut<T> for aya::maps::SockMap<T> where T: ?core::marker::Sized
  752. pub fn aya::maps::SockMap<T>::borrow_mut(&mut self) -> &mut T
  753. impl<T> core::convert::From<T> for aya::maps::SockMap<T>
  754. pub fn aya::maps::SockMap<T>::from(t: T) -> T
  755. #[repr(transparent)] pub struct aya::maps::sock::SockMapFd(_)
  756. impl aya::maps::sock::SockMapFd
  757. pub fn aya::maps::sock::SockMapFd::try_clone(&self) -> std::io::error::Result<Self>
  758. impl std::os::fd::owned::AsFd for aya::maps::sock::SockMapFd
  759. pub fn aya::maps::sock::SockMapFd::as_fd(&self) -> std::os::fd::owned::BorrowedFd<'_>
  760. impl core::marker::Freeze for aya::maps::sock::SockMapFd
  761. impl core::marker::Send for aya::maps::sock::SockMapFd
  762. impl core::marker::Sync for aya::maps::sock::SockMapFd
  763. impl core::marker::Unpin for aya::maps::sock::SockMapFd
  764. impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::sock::SockMapFd
  765. impl core::panic::unwind_safe::UnwindSafe for aya::maps::sock::SockMapFd
  766. impl<T, U> core::convert::Into<U> for aya::maps::sock::SockMapFd where U: core::convert::From<T>
  767. pub fn aya::maps::sock::SockMapFd::into(self) -> U
  768. impl<T, U> core::convert::TryFrom<U> for aya::maps::sock::SockMapFd where U: core::convert::Into<T>
  769. pub type aya::maps::sock::SockMapFd::Error = core::convert::Infallible
  770. pub fn aya::maps::sock::SockMapFd::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  771. impl<T, U> core::convert::TryInto<U> for aya::maps::sock::SockMapFd where U: core::convert::TryFrom<T>
  772. pub type aya::maps::sock::SockMapFd::Error = <U as core::convert::TryFrom<T>>::Error
  773. pub fn aya::maps::sock::SockMapFd::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  774. impl<T> core::any::Any for aya::maps::sock::SockMapFd where T: 'static + ?core::marker::Sized
  775. pub fn aya::maps::sock::SockMapFd::type_id(&self) -> core::any::TypeId
  776. impl<T> core::borrow::Borrow<T> for aya::maps::sock::SockMapFd where T: ?core::marker::Sized
  777. pub fn aya::maps::sock::SockMapFd::borrow(&self) -> &T
  778. impl<T> core::borrow::BorrowMut<T> for aya::maps::sock::SockMapFd where T: ?core::marker::Sized
  779. pub fn aya::maps::sock::SockMapFd::borrow_mut(&mut self) -> &mut T
  780. impl<T> core::convert::From<T> for aya::maps::sock::SockMapFd
  781. pub fn aya::maps::sock::SockMapFd::from(t: T) -> T
  782. pub mod aya::maps::stack
  783. pub struct aya::maps::stack::Stack<T, V: aya::Pod>
  784. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::stack::Stack<T, V>
  785. pub fn aya::maps::stack::Stack<T, V>::capacity(&self) -> u32
  786. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::stack::Stack<T, V>
  787. 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>
  788. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::stack::Stack<T, V>
  789. pub fn aya::maps::stack::Stack<T, V>::pop(&mut self, flags: u64) -> core::result::Result<V, aya::maps::MapError>
  790. 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>
  791. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::stack::Stack<&'a aya::maps::MapData, V>
  792. pub type aya::maps::stack::Stack<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  793. pub fn aya::maps::stack::Stack<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  794. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::stack::Stack<&'a mut aya::maps::MapData, V>
  795. pub type aya::maps::stack::Stack<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  796. 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>
  797. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::stack::Stack<aya::maps::MapData, V>
  798. pub type aya::maps::stack::Stack<aya::maps::MapData, V>::Error = aya::maps::MapError
  799. pub fn aya::maps::stack::Stack<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  800. impl<T, V> core::marker::Freeze for aya::maps::stack::Stack<T, V> where T: core::marker::Freeze
  801. impl<T, V> core::marker::Send for aya::maps::stack::Stack<T, V> where T: core::marker::Send, V: core::marker::Send
  802. impl<T, V> core::marker::Sync for aya::maps::stack::Stack<T, V> where T: core::marker::Sync, V: core::marker::Sync
  803. impl<T, V> core::marker::Unpin for aya::maps::stack::Stack<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  804. 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
  805. 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
  806. impl<T, U> core::convert::Into<U> for aya::maps::stack::Stack<T, V> where U: core::convert::From<T>
  807. pub fn aya::maps::stack::Stack<T, V>::into(self) -> U
  808. impl<T, U> core::convert::TryFrom<U> for aya::maps::stack::Stack<T, V> where U: core::convert::Into<T>
  809. pub type aya::maps::stack::Stack<T, V>::Error = core::convert::Infallible
  810. pub fn aya::maps::stack::Stack<T, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  811. impl<T, U> core::convert::TryInto<U> for aya::maps::stack::Stack<T, V> where U: core::convert::TryFrom<T>
  812. pub type aya::maps::stack::Stack<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  813. pub fn aya::maps::stack::Stack<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  814. impl<T> core::any::Any for aya::maps::stack::Stack<T, V> where T: 'static + ?core::marker::Sized
  815. pub fn aya::maps::stack::Stack<T, V>::type_id(&self) -> core::any::TypeId
  816. impl<T> core::borrow::Borrow<T> for aya::maps::stack::Stack<T, V> where T: ?core::marker::Sized
  817. pub fn aya::maps::stack::Stack<T, V>::borrow(&self) -> &T
  818. impl<T> core::borrow::BorrowMut<T> for aya::maps::stack::Stack<T, V> where T: ?core::marker::Sized
  819. pub fn aya::maps::stack::Stack<T, V>::borrow_mut(&mut self) -> &mut T
  820. impl<T> core::convert::From<T> for aya::maps::stack::Stack<T, V>
  821. pub fn aya::maps::stack::Stack<T, V>::from(t: T) -> T
  822. pub mod aya::maps::stack_trace
  823. pub struct aya::maps::stack_trace::StackFrame
  824. pub aya::maps::stack_trace::StackFrame::ip: u64
  825. impl core::marker::Freeze for aya::maps::stack_trace::StackFrame
  826. impl core::marker::Send for aya::maps::stack_trace::StackFrame
  827. impl core::marker::Sync for aya::maps::stack_trace::StackFrame
  828. impl core::marker::Unpin for aya::maps::stack_trace::StackFrame
  829. impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::stack_trace::StackFrame
  830. impl core::panic::unwind_safe::UnwindSafe for aya::maps::stack_trace::StackFrame
  831. impl<T, U> core::convert::Into<U> for aya::maps::stack_trace::StackFrame where U: core::convert::From<T>
  832. pub fn aya::maps::stack_trace::StackFrame::into(self) -> U
  833. impl<T, U> core::convert::TryFrom<U> for aya::maps::stack_trace::StackFrame where U: core::convert::Into<T>
  834. pub type aya::maps::stack_trace::StackFrame::Error = core::convert::Infallible
  835. pub fn aya::maps::stack_trace::StackFrame::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  836. impl<T, U> core::convert::TryInto<U> for aya::maps::stack_trace::StackFrame where U: core::convert::TryFrom<T>
  837. pub type aya::maps::stack_trace::StackFrame::Error = <U as core::convert::TryFrom<T>>::Error
  838. pub fn aya::maps::stack_trace::StackFrame::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  839. impl<T> core::any::Any for aya::maps::stack_trace::StackFrame where T: 'static + ?core::marker::Sized
  840. pub fn aya::maps::stack_trace::StackFrame::type_id(&self) -> core::any::TypeId
  841. impl<T> core::borrow::Borrow<T> for aya::maps::stack_trace::StackFrame where T: ?core::marker::Sized
  842. pub fn aya::maps::stack_trace::StackFrame::borrow(&self) -> &T
  843. impl<T> core::borrow::BorrowMut<T> for aya::maps::stack_trace::StackFrame where T: ?core::marker::Sized
  844. pub fn aya::maps::stack_trace::StackFrame::borrow_mut(&mut self) -> &mut T
  845. impl<T> core::convert::From<T> for aya::maps::stack_trace::StackFrame
  846. pub fn aya::maps::stack_trace::StackFrame::from(t: T) -> T
  847. pub struct aya::maps::stack_trace::StackTrace
  848. pub aya::maps::stack_trace::StackTrace::id: u32
  849. impl aya::maps::stack_trace::StackTrace
  850. pub fn aya::maps::stack_trace::StackTrace::frames(&self) -> &[aya::maps::stack_trace::StackFrame]
  851. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::IterableMap<u32, aya::maps::stack_trace::StackTrace> for aya::maps::stack_trace::StackTraceMap<T>
  852. pub fn aya::maps::stack_trace::StackTraceMap<T>::get(&self, index: &u32) -> core::result::Result<aya::maps::stack_trace::StackTrace, aya::maps::MapError>
  853. pub fn aya::maps::stack_trace::StackTraceMap<T>::map(&self) -> &aya::maps::MapData
  854. impl core::marker::Freeze for aya::maps::stack_trace::StackTrace
  855. impl core::marker::Send for aya::maps::stack_trace::StackTrace
  856. impl core::marker::Sync for aya::maps::stack_trace::StackTrace
  857. impl core::marker::Unpin for aya::maps::stack_trace::StackTrace
  858. impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::stack_trace::StackTrace
  859. impl core::panic::unwind_safe::UnwindSafe for aya::maps::stack_trace::StackTrace
  860. impl<T, U> core::convert::Into<U> for aya::maps::stack_trace::StackTrace where U: core::convert::From<T>
  861. pub fn aya::maps::stack_trace::StackTrace::into(self) -> U
  862. impl<T, U> core::convert::TryFrom<U> for aya::maps::stack_trace::StackTrace where U: core::convert::Into<T>
  863. pub type aya::maps::stack_trace::StackTrace::Error = core::convert::Infallible
  864. pub fn aya::maps::stack_trace::StackTrace::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  865. impl<T, U> core::convert::TryInto<U> for aya::maps::stack_trace::StackTrace where U: core::convert::TryFrom<T>
  866. pub type aya::maps::stack_trace::StackTrace::Error = <U as core::convert::TryFrom<T>>::Error
  867. pub fn aya::maps::stack_trace::StackTrace::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  868. impl<T> core::any::Any for aya::maps::stack_trace::StackTrace where T: 'static + ?core::marker::Sized
  869. pub fn aya::maps::stack_trace::StackTrace::type_id(&self) -> core::any::TypeId
  870. impl<T> core::borrow::Borrow<T> for aya::maps::stack_trace::StackTrace where T: ?core::marker::Sized
  871. pub fn aya::maps::stack_trace::StackTrace::borrow(&self) -> &T
  872. impl<T> core::borrow::BorrowMut<T> for aya::maps::stack_trace::StackTrace where T: ?core::marker::Sized
  873. pub fn aya::maps::stack_trace::StackTrace::borrow_mut(&mut self) -> &mut T
  874. impl<T> core::convert::From<T> for aya::maps::stack_trace::StackTrace
  875. pub fn aya::maps::stack_trace::StackTrace::from(t: T) -> T
  876. pub struct aya::maps::stack_trace::StackTraceMap<T>
  877. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::stack_trace::StackTraceMap<T>
  878. 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>
  879. pub fn aya::maps::stack_trace::StackTraceMap<T>::iter(&self) -> aya::maps::MapIter<'_, u32, aya::maps::stack_trace::StackTrace, Self>
  880. pub fn aya::maps::stack_trace::StackTraceMap<T>::stack_ids(&self) -> aya::maps::MapKeys<'_, u32>
  881. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::stack_trace::StackTraceMap<T>
  882. 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>
  883. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::stack_trace::StackTraceMap<T>
  884. pub fn aya::maps::stack_trace::StackTraceMap<T>::remove(&mut self, stack_id: &u32) -> core::result::Result<(), aya::maps::MapError>
  885. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<aya::maps::MapData>
  886. pub type aya::maps::stack_trace::StackTraceMap<aya::maps::MapData>::Error = aya::maps::MapError
  887. pub fn aya::maps::stack_trace::StackTraceMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  888. impl<'a, T: core::borrow::Borrow<aya::maps::MapData>> core::iter::traits::collect::IntoIterator for &'a aya::maps::stack_trace::StackTraceMap<T>
  889. 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>>
  890. pub type &'a aya::maps::stack_trace::StackTraceMap<T>::Item = core::result::Result<(u32, aya::maps::stack_trace::StackTrace), aya::maps::MapError>
  891. pub fn &'a aya::maps::stack_trace::StackTraceMap<T>::into_iter(self) -> Self::IntoIter
  892. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>
  893. pub type aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  894. pub fn aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  895. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData>
  896. pub type aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  897. 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>
  898. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::IterableMap<u32, aya::maps::stack_trace::StackTrace> for aya::maps::stack_trace::StackTraceMap<T>
  899. pub fn aya::maps::stack_trace::StackTraceMap<T>::get(&self, index: &u32) -> core::result::Result<aya::maps::stack_trace::StackTrace, aya::maps::MapError>
  900. pub fn aya::maps::stack_trace::StackTraceMap<T>::map(&self) -> &aya::maps::MapData
  901. impl<T: core::fmt::Debug> core::fmt::Debug for aya::maps::stack_trace::StackTraceMap<T>
  902. pub fn aya::maps::stack_trace::StackTraceMap<T>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  903. impl<T> core::marker::Freeze for aya::maps::stack_trace::StackTraceMap<T> where T: core::marker::Freeze
  904. impl<T> core::marker::Send for aya::maps::stack_trace::StackTraceMap<T> where T: core::marker::Send
  905. impl<T> core::marker::Sync for aya::maps::stack_trace::StackTraceMap<T> where T: core::marker::Sync
  906. impl<T> core::marker::Unpin for aya::maps::stack_trace::StackTraceMap<T> where T: core::marker::Unpin
  907. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::stack_trace::StackTraceMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  908. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::stack_trace::StackTraceMap<T> where T: core::panic::unwind_safe::UnwindSafe
  909. impl<T, U> core::convert::Into<U> for aya::maps::stack_trace::StackTraceMap<T> where U: core::convert::From<T>
  910. pub fn aya::maps::stack_trace::StackTraceMap<T>::into(self) -> U
  911. impl<T, U> core::convert::TryFrom<U> for aya::maps::stack_trace::StackTraceMap<T> where U: core::convert::Into<T>
  912. pub type aya::maps::stack_trace::StackTraceMap<T>::Error = core::convert::Infallible
  913. pub fn aya::maps::stack_trace::StackTraceMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  914. impl<T, U> core::convert::TryInto<U> for aya::maps::stack_trace::StackTraceMap<T> where U: core::convert::TryFrom<T>
  915. pub type aya::maps::stack_trace::StackTraceMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  916. pub fn aya::maps::stack_trace::StackTraceMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  917. impl<T> core::any::Any for aya::maps::stack_trace::StackTraceMap<T> where T: 'static + ?core::marker::Sized
  918. pub fn aya::maps::stack_trace::StackTraceMap<T>::type_id(&self) -> core::any::TypeId
  919. impl<T> core::borrow::Borrow<T> for aya::maps::stack_trace::StackTraceMap<T> where T: ?core::marker::Sized
  920. pub fn aya::maps::stack_trace::StackTraceMap<T>::borrow(&self) -> &T
  921. impl<T> core::borrow::BorrowMut<T> for aya::maps::stack_trace::StackTraceMap<T> where T: ?core::marker::Sized
  922. pub fn aya::maps::stack_trace::StackTraceMap<T>::borrow_mut(&mut self) -> &mut T
  923. impl<T> core::convert::From<T> for aya::maps::stack_trace::StackTraceMap<T>
  924. pub fn aya::maps::stack_trace::StackTraceMap<T>::from(t: T) -> T
  925. pub mod aya::maps::xdp
  926. pub enum aya::maps::xdp::XdpMapError
  927. pub aya::maps::xdp::XdpMapError::ChainedProgramNotSupported
  928. pub aya::maps::xdp::XdpMapError::MapError(aya::maps::MapError)
  929. impl core::convert::From<aya::maps::MapError> for aya::maps::xdp::XdpMapError
  930. pub fn aya::maps::xdp::XdpMapError::from(source: aya::maps::MapError) -> Self
  931. impl core::error::Error for aya::maps::xdp::XdpMapError
  932. pub fn aya::maps::xdp::XdpMapError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  933. impl core::fmt::Debug for aya::maps::xdp::XdpMapError
  934. pub fn aya::maps::xdp::XdpMapError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  935. impl core::fmt::Display for aya::maps::xdp::XdpMapError
  936. pub fn aya::maps::xdp::XdpMapError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  937. impl core::marker::Freeze for aya::maps::xdp::XdpMapError
  938. impl core::marker::Send for aya::maps::xdp::XdpMapError
  939. impl core::marker::Sync for aya::maps::xdp::XdpMapError
  940. impl core::marker::Unpin for aya::maps::xdp::XdpMapError
  941. impl !core::panic::unwind_safe::RefUnwindSafe for aya::maps::xdp::XdpMapError
  942. impl !core::panic::unwind_safe::UnwindSafe for aya::maps::xdp::XdpMapError
  943. impl<T, U> core::convert::Into<U> for aya::maps::xdp::XdpMapError where U: core::convert::From<T>
  944. pub fn aya::maps::xdp::XdpMapError::into(self) -> U
  945. impl<T, U> core::convert::TryFrom<U> for aya::maps::xdp::XdpMapError where U: core::convert::Into<T>
  946. pub type aya::maps::xdp::XdpMapError::Error = core::convert::Infallible
  947. pub fn aya::maps::xdp::XdpMapError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  948. impl<T, U> core::convert::TryInto<U> for aya::maps::xdp::XdpMapError where U: core::convert::TryFrom<T>
  949. pub type aya::maps::xdp::XdpMapError::Error = <U as core::convert::TryFrom<T>>::Error
  950. pub fn aya::maps::xdp::XdpMapError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  951. impl<T> alloc::string::ToString for aya::maps::xdp::XdpMapError where T: core::fmt::Display + ?core::marker::Sized
  952. pub fn aya::maps::xdp::XdpMapError::to_string(&self) -> alloc::string::String
  953. impl<T> core::any::Any for aya::maps::xdp::XdpMapError where T: 'static + ?core::marker::Sized
  954. pub fn aya::maps::xdp::XdpMapError::type_id(&self) -> core::any::TypeId
  955. impl<T> core::borrow::Borrow<T> for aya::maps::xdp::XdpMapError where T: ?core::marker::Sized
  956. pub fn aya::maps::xdp::XdpMapError::borrow(&self) -> &T
  957. impl<T> core::borrow::BorrowMut<T> for aya::maps::xdp::XdpMapError where T: ?core::marker::Sized
  958. pub fn aya::maps::xdp::XdpMapError::borrow_mut(&mut self) -> &mut T
  959. impl<T> core::convert::From<T> for aya::maps::xdp::XdpMapError
  960. pub fn aya::maps::xdp::XdpMapError::from(t: T) -> T
  961. pub struct aya::maps::xdp::CpuMap<T>
  962. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::CpuMap<T>
  963. pub fn aya::maps::CpuMap<T>::get(&self, cpu_index: u32, flags: u64) -> core::result::Result<aya::maps::xdp::cpu_map::CpuMapValue, aya::maps::MapError>
  964. pub fn aya::maps::CpuMap<T>::iter(&self) -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<aya::maps::xdp::cpu_map::CpuMapValue, aya::maps::MapError>> + '_
  965. pub fn aya::maps::CpuMap<T>::len(&self) -> u32
  966. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::CpuMap<T>
  967. pub fn aya::maps::CpuMap<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  968. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::CpuMap<T>
  969. 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>
  970. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::CpuMap<aya::maps::MapData>
  971. pub type aya::maps::CpuMap<aya::maps::MapData>::Error = aya::maps::MapError
  972. pub fn aya::maps::CpuMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  973. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::CpuMap<&'a aya::maps::MapData>
  974. pub type aya::maps::CpuMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  975. pub fn aya::maps::CpuMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  976. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::CpuMap<&'a mut aya::maps::MapData>
  977. pub type aya::maps::CpuMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  978. pub fn aya::maps::CpuMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  979. impl<T> core::marker::Freeze for aya::maps::CpuMap<T> where T: core::marker::Freeze
  980. impl<T> core::marker::Send for aya::maps::CpuMap<T> where T: core::marker::Send
  981. impl<T> core::marker::Sync for aya::maps::CpuMap<T> where T: core::marker::Sync
  982. impl<T> core::marker::Unpin for aya::maps::CpuMap<T> where T: core::marker::Unpin
  983. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::CpuMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  984. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::CpuMap<T> where T: core::panic::unwind_safe::UnwindSafe
  985. impl<T, U> core::convert::Into<U> for aya::maps::CpuMap<T> where U: core::convert::From<T>
  986. pub fn aya::maps::CpuMap<T>::into(self) -> U
  987. impl<T, U> core::convert::TryFrom<U> for aya::maps::CpuMap<T> where U: core::convert::Into<T>
  988. pub type aya::maps::CpuMap<T>::Error = core::convert::Infallible
  989. pub fn aya::maps::CpuMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  990. impl<T, U> core::convert::TryInto<U> for aya::maps::CpuMap<T> where U: core::convert::TryFrom<T>
  991. pub type aya::maps::CpuMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  992. pub fn aya::maps::CpuMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  993. impl<T> core::any::Any for aya::maps::CpuMap<T> where T: 'static + ?core::marker::Sized
  994. pub fn aya::maps::CpuMap<T>::type_id(&self) -> core::any::TypeId
  995. impl<T> core::borrow::Borrow<T> for aya::maps::CpuMap<T> where T: ?core::marker::Sized
  996. pub fn aya::maps::CpuMap<T>::borrow(&self) -> &T
  997. impl<T> core::borrow::BorrowMut<T> for aya::maps::CpuMap<T> where T: ?core::marker::Sized
  998. pub fn aya::maps::CpuMap<T>::borrow_mut(&mut self) -> &mut T
  999. impl<T> core::convert::From<T> for aya::maps::CpuMap<T>
  1000. pub fn aya::maps::CpuMap<T>::from(t: T) -> T
  1001. pub struct aya::maps::xdp::DevMap<T>
  1002. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::DevMap<T>
  1003. pub fn aya::maps::DevMap<T>::get(&self, index: u32, flags: u64) -> core::result::Result<aya::maps::xdp::dev_map::DevMapValue, aya::maps::MapError>
  1004. pub fn aya::maps::DevMap<T>::iter(&self) -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<aya::maps::xdp::dev_map::DevMapValue, aya::maps::MapError>> + '_
  1005. pub fn aya::maps::DevMap<T>::len(&self) -> u32
  1006. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::DevMap<T>
  1007. pub fn aya::maps::DevMap<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1008. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::DevMap<T>
  1009. 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>
  1010. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::DevMap<aya::maps::MapData>
  1011. pub type aya::maps::DevMap<aya::maps::MapData>::Error = aya::maps::MapError
  1012. pub fn aya::maps::DevMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1013. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::DevMap<&'a aya::maps::MapData>
  1014. pub type aya::maps::DevMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1015. pub fn aya::maps::DevMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1016. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::DevMap<&'a mut aya::maps::MapData>
  1017. pub type aya::maps::DevMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1018. pub fn aya::maps::DevMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1019. impl<T> core::marker::Freeze for aya::maps::DevMap<T> where T: core::marker::Freeze
  1020. impl<T> core::marker::Send for aya::maps::DevMap<T> where T: core::marker::Send
  1021. impl<T> core::marker::Sync for aya::maps::DevMap<T> where T: core::marker::Sync
  1022. impl<T> core::marker::Unpin for aya::maps::DevMap<T> where T: core::marker::Unpin
  1023. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::DevMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  1024. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::DevMap<T> where T: core::panic::unwind_safe::UnwindSafe
  1025. impl<T, U> core::convert::Into<U> for aya::maps::DevMap<T> where U: core::convert::From<T>
  1026. pub fn aya::maps::DevMap<T>::into(self) -> U
  1027. impl<T, U> core::convert::TryFrom<U> for aya::maps::DevMap<T> where U: core::convert::Into<T>
  1028. pub type aya::maps::DevMap<T>::Error = core::convert::Infallible
  1029. pub fn aya::maps::DevMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1030. impl<T, U> core::convert::TryInto<U> for aya::maps::DevMap<T> where U: core::convert::TryFrom<T>
  1031. pub type aya::maps::DevMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  1032. pub fn aya::maps::DevMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1033. impl<T> core::any::Any for aya::maps::DevMap<T> where T: 'static + ?core::marker::Sized
  1034. pub fn aya::maps::DevMap<T>::type_id(&self) -> core::any::TypeId
  1035. impl<T> core::borrow::Borrow<T> for aya::maps::DevMap<T> where T: ?core::marker::Sized
  1036. pub fn aya::maps::DevMap<T>::borrow(&self) -> &T
  1037. impl<T> core::borrow::BorrowMut<T> for aya::maps::DevMap<T> where T: ?core::marker::Sized
  1038. pub fn aya::maps::DevMap<T>::borrow_mut(&mut self) -> &mut T
  1039. impl<T> core::convert::From<T> for aya::maps::DevMap<T>
  1040. pub fn aya::maps::DevMap<T>::from(t: T) -> T
  1041. pub struct aya::maps::xdp::DevMapHash<T>
  1042. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::DevMapHash<T>
  1043. pub fn aya::maps::DevMapHash<T>::get(&self, key: u32, flags: u64) -> core::result::Result<aya::maps::xdp::dev_map::DevMapValue, aya::maps::MapError>
  1044. pub fn aya::maps::DevMapHash<T>::iter(&self) -> aya::maps::MapIter<'_, u32, aya::maps::xdp::dev_map::DevMapValue, Self>
  1045. pub fn aya::maps::DevMapHash<T>::keys(&self) -> aya::maps::MapKeys<'_, u32>
  1046. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::DevMapHash<T>
  1047. pub fn aya::maps::DevMapHash<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1048. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::DevMapHash<T>
  1049. 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>
  1050. pub fn aya::maps::DevMapHash<T>::remove(&mut self, key: u32) -> core::result::Result<(), aya::maps::MapError>
  1051. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::DevMapHash<aya::maps::MapData>
  1052. pub type aya::maps::DevMapHash<aya::maps::MapData>::Error = aya::maps::MapError
  1053. pub fn aya::maps::DevMapHash<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1054. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::DevMapHash<&'a aya::maps::MapData>
  1055. pub type aya::maps::DevMapHash<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1056. pub fn aya::maps::DevMapHash<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1057. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::DevMapHash<&'a mut aya::maps::MapData>
  1058. pub type aya::maps::DevMapHash<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1059. pub fn aya::maps::DevMapHash<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1060. impl<T> core::marker::Freeze for aya::maps::DevMapHash<T> where T: core::marker::Freeze
  1061. impl<T> core::marker::Send for aya::maps::DevMapHash<T> where T: core::marker::Send
  1062. impl<T> core::marker::Sync for aya::maps::DevMapHash<T> where T: core::marker::Sync
  1063. impl<T> core::marker::Unpin for aya::maps::DevMapHash<T> where T: core::marker::Unpin
  1064. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::DevMapHash<T> where T: core::panic::unwind_safe::RefUnwindSafe
  1065. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::DevMapHash<T> where T: core::panic::unwind_safe::UnwindSafe
  1066. impl<T, U> core::convert::Into<U> for aya::maps::DevMapHash<T> where U: core::convert::From<T>
  1067. pub fn aya::maps::DevMapHash<T>::into(self) -> U
  1068. impl<T, U> core::convert::TryFrom<U> for aya::maps::DevMapHash<T> where U: core::convert::Into<T>
  1069. pub type aya::maps::DevMapHash<T>::Error = core::convert::Infallible
  1070. pub fn aya::maps::DevMapHash<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1071. impl<T, U> core::convert::TryInto<U> for aya::maps::DevMapHash<T> where U: core::convert::TryFrom<T>
  1072. pub type aya::maps::DevMapHash<T>::Error = <U as core::convert::TryFrom<T>>::Error
  1073. pub fn aya::maps::DevMapHash<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1074. impl<T> core::any::Any for aya::maps::DevMapHash<T> where T: 'static + ?core::marker::Sized
  1075. pub fn aya::maps::DevMapHash<T>::type_id(&self) -> core::any::TypeId
  1076. impl<T> core::borrow::Borrow<T> for aya::maps::DevMapHash<T> where T: ?core::marker::Sized
  1077. pub fn aya::maps::DevMapHash<T>::borrow(&self) -> &T
  1078. impl<T> core::borrow::BorrowMut<T> for aya::maps::DevMapHash<T> where T: ?core::marker::Sized
  1079. pub fn aya::maps::DevMapHash<T>::borrow_mut(&mut self) -> &mut T
  1080. impl<T> core::convert::From<T> for aya::maps::DevMapHash<T>
  1081. pub fn aya::maps::DevMapHash<T>::from(t: T) -> T
  1082. pub struct aya::maps::xdp::XskMap<T>
  1083. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::XskMap<T>
  1084. pub fn aya::maps::XskMap<T>::len(&self) -> u32
  1085. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::XskMap<T>
  1086. pub fn aya::maps::XskMap<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1087. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::XskMap<T>
  1088. 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>
  1089. pub fn aya::maps::XskMap<T>::unset(&mut self, index: u32) -> core::result::Result<(), aya::maps::MapError>
  1090. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::XskMap<aya::maps::MapData>
  1091. pub type aya::maps::XskMap<aya::maps::MapData>::Error = aya::maps::MapError
  1092. pub fn aya::maps::XskMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1093. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::XskMap<&'a aya::maps::MapData>
  1094. pub type aya::maps::XskMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1095. pub fn aya::maps::XskMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1096. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::XskMap<&'a mut aya::maps::MapData>
  1097. pub type aya::maps::XskMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1098. pub fn aya::maps::XskMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1099. impl<T> core::marker::Freeze for aya::maps::XskMap<T> where T: core::marker::Freeze
  1100. impl<T> core::marker::Send for aya::maps::XskMap<T> where T: core::marker::Send
  1101. impl<T> core::marker::Sync for aya::maps::XskMap<T> where T: core::marker::Sync
  1102. impl<T> core::marker::Unpin for aya::maps::XskMap<T> where T: core::marker::Unpin
  1103. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::XskMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  1104. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::XskMap<T> where T: core::panic::unwind_safe::UnwindSafe
  1105. impl<T, U> core::convert::Into<U> for aya::maps::XskMap<T> where U: core::convert::From<T>
  1106. pub fn aya::maps::XskMap<T>::into(self) -> U
  1107. impl<T, U> core::convert::TryFrom<U> for aya::maps::XskMap<T> where U: core::convert::Into<T>
  1108. pub type aya::maps::XskMap<T>::Error = core::convert::Infallible
  1109. pub fn aya::maps::XskMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1110. impl<T, U> core::convert::TryInto<U> for aya::maps::XskMap<T> where U: core::convert::TryFrom<T>
  1111. pub type aya::maps::XskMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  1112. pub fn aya::maps::XskMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1113. impl<T> core::any::Any for aya::maps::XskMap<T> where T: 'static + ?core::marker::Sized
  1114. pub fn aya::maps::XskMap<T>::type_id(&self) -> core::any::TypeId
  1115. impl<T> core::borrow::Borrow<T> for aya::maps::XskMap<T> where T: ?core::marker::Sized
  1116. pub fn aya::maps::XskMap<T>::borrow(&self) -> &T
  1117. impl<T> core::borrow::BorrowMut<T> for aya::maps::XskMap<T> where T: ?core::marker::Sized
  1118. pub fn aya::maps::XskMap<T>::borrow_mut(&mut self) -> &mut T
  1119. impl<T> core::convert::From<T> for aya::maps::XskMap<T>
  1120. pub fn aya::maps::XskMap<T>::from(t: T) -> T
  1121. pub enum aya::maps::Map
  1122. pub aya::maps::Map::Array(aya::maps::MapData)
  1123. pub aya::maps::Map::BloomFilter(aya::maps::MapData)
  1124. pub aya::maps::Map::CpuMap(aya::maps::MapData)
  1125. pub aya::maps::Map::DevMap(aya::maps::MapData)
  1126. pub aya::maps::Map::DevMapHash(aya::maps::MapData)
  1127. pub aya::maps::Map::HashMap(aya::maps::MapData)
  1128. pub aya::maps::Map::LpmTrie(aya::maps::MapData)
  1129. pub aya::maps::Map::LruHashMap(aya::maps::MapData)
  1130. pub aya::maps::Map::PerCpuArray(aya::maps::MapData)
  1131. pub aya::maps::Map::PerCpuHashMap(aya::maps::MapData)
  1132. pub aya::maps::Map::PerCpuLruHashMap(aya::maps::MapData)
  1133. pub aya::maps::Map::PerfEventArray(aya::maps::MapData)
  1134. pub aya::maps::Map::ProgramArray(aya::maps::MapData)
  1135. pub aya::maps::Map::Queue(aya::maps::MapData)
  1136. pub aya::maps::Map::RingBuf(aya::maps::MapData)
  1137. pub aya::maps::Map::SockHash(aya::maps::MapData)
  1138. pub aya::maps::Map::SockMap(aya::maps::MapData)
  1139. pub aya::maps::Map::Stack(aya::maps::MapData)
  1140. pub aya::maps::Map::StackTraceMap(aya::maps::MapData)
  1141. pub aya::maps::Map::Unsupported(aya::maps::MapData)
  1142. pub aya::maps::Map::XskMap(aya::maps::MapData)
  1143. impl aya::maps::Map
  1144. pub fn aya::maps::Map::pin<P: core::convert::AsRef<std::path::Path>>(&self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1145. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::CpuMap<aya::maps::MapData>
  1146. pub type aya::maps::CpuMap<aya::maps::MapData>::Error = aya::maps::MapError
  1147. pub fn aya::maps::CpuMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1148. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::DevMap<aya::maps::MapData>
  1149. pub type aya::maps::DevMap<aya::maps::MapData>::Error = aya::maps::MapError
  1150. pub fn aya::maps::DevMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1151. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::DevMapHash<aya::maps::MapData>
  1152. pub type aya::maps::DevMapHash<aya::maps::MapData>::Error = aya::maps::MapError
  1153. pub fn aya::maps::DevMapHash<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1154. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::ProgramArray<aya::maps::MapData>
  1155. pub type aya::maps::ProgramArray<aya::maps::MapData>::Error = aya::maps::MapError
  1156. pub fn aya::maps::ProgramArray<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1157. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::SockMap<aya::maps::MapData>
  1158. pub type aya::maps::SockMap<aya::maps::MapData>::Error = aya::maps::MapError
  1159. pub fn aya::maps::SockMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1160. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::XskMap<aya::maps::MapData>
  1161. pub type aya::maps::XskMap<aya::maps::MapData>::Error = aya::maps::MapError
  1162. pub fn aya::maps::XskMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1163. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::perf::AsyncPerfEventArray<aya::maps::MapData>
  1164. pub type aya::maps::perf::AsyncPerfEventArray<aya::maps::MapData>::Error = aya::maps::MapError
  1165. pub fn aya::maps::perf::AsyncPerfEventArray<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1166. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::perf::PerfEventArray<aya::maps::MapData>
  1167. pub type aya::maps::perf::PerfEventArray<aya::maps::MapData>::Error = aya::maps::MapError
  1168. pub fn aya::maps::perf::PerfEventArray<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1169. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::ring_buf::RingBuf<aya::maps::MapData>
  1170. pub type aya::maps::ring_buf::RingBuf<aya::maps::MapData>::Error = aya::maps::MapError
  1171. pub fn aya::maps::ring_buf::RingBuf<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1172. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<aya::maps::MapData>
  1173. pub type aya::maps::stack_trace::StackTraceMap<aya::maps::MapData>::Error = aya::maps::MapError
  1174. pub fn aya::maps::stack_trace::StackTraceMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1175. impl core::fmt::Debug for aya::maps::Map
  1176. pub fn aya::maps::Map::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1177. 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>
  1178. pub type aya::maps::hash_map::HashMap<&'a aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1179. 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>
  1180. 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>
  1181. pub type aya::maps::hash_map::PerCpuHashMap<&'a aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1182. 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>
  1183. 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>
  1184. pub type aya::maps::lpm_trie::LpmTrie<&'a aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1185. 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>
  1186. 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>
  1187. pub type aya::maps::hash_map::HashMap<&'a mut aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1188. 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>
  1189. 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>
  1190. pub type aya::maps::hash_map::PerCpuHashMap<&'a mut aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1191. 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>
  1192. 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>
  1193. pub type aya::maps::lpm_trie::LpmTrie<&'a mut aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1194. 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>
  1195. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::PerCpuArray<&'a aya::maps::MapData, V>
  1196. pub type aya::maps::PerCpuArray<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  1197. pub fn aya::maps::PerCpuArray<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1198. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::SockHash<&'a aya::maps::MapData, V>
  1199. pub type aya::maps::SockHash<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  1200. pub fn aya::maps::SockHash<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1201. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::array::Array<&'a aya::maps::MapData, V>
  1202. pub type aya::maps::array::Array<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  1203. pub fn aya::maps::array::Array<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1204. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V>
  1205. pub type aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  1206. 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>
  1207. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::queue::Queue<&'a aya::maps::MapData, V>
  1208. pub type aya::maps::queue::Queue<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  1209. pub fn aya::maps::queue::Queue<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1210. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::stack::Stack<&'a aya::maps::MapData, V>
  1211. pub type aya::maps::stack::Stack<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  1212. pub fn aya::maps::stack::Stack<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1213. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V>
  1214. pub type aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  1215. 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>
  1216. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::SockHash<&'a mut aya::maps::MapData, V>
  1217. pub type aya::maps::SockHash<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  1218. 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>
  1219. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::array::Array<&'a mut aya::maps::MapData, V>
  1220. pub type aya::maps::array::Array<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  1221. 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>
  1222. 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>
  1223. pub type aya::maps::bloom_filter::BloomFilter<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  1224. 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>
  1225. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::queue::Queue<&'a mut aya::maps::MapData, V>
  1226. pub type aya::maps::queue::Queue<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  1227. 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>
  1228. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::stack::Stack<&'a mut aya::maps::MapData, V>
  1229. pub type aya::maps::stack::Stack<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  1230. 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>
  1231. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::CpuMap<&'a aya::maps::MapData>
  1232. pub type aya::maps::CpuMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1233. pub fn aya::maps::CpuMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1234. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::DevMap<&'a aya::maps::MapData>
  1235. pub type aya::maps::DevMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1236. pub fn aya::maps::DevMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1237. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::DevMapHash<&'a aya::maps::MapData>
  1238. pub type aya::maps::DevMapHash<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1239. pub fn aya::maps::DevMapHash<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1240. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::ProgramArray<&'a aya::maps::MapData>
  1241. pub type aya::maps::ProgramArray<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1242. pub fn aya::maps::ProgramArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1243. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::SockMap<&'a aya::maps::MapData>
  1244. pub type aya::maps::SockMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1245. pub fn aya::maps::SockMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1246. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::XskMap<&'a aya::maps::MapData>
  1247. pub type aya::maps::XskMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1248. pub fn aya::maps::XskMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1249. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::perf::AsyncPerfEventArray<&'a aya::maps::MapData>
  1250. pub type aya::maps::perf::AsyncPerfEventArray<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1251. pub fn aya::maps::perf::AsyncPerfEventArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1252. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>
  1253. pub type aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1254. pub fn aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1255. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::ring_buf::RingBuf<&'a aya::maps::MapData>
  1256. pub type aya::maps::ring_buf::RingBuf<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1257. pub fn aya::maps::ring_buf::RingBuf<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1258. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>
  1259. pub type aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1260. pub fn aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1261. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::CpuMap<&'a mut aya::maps::MapData>
  1262. pub type aya::maps::CpuMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1263. pub fn aya::maps::CpuMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1264. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::DevMap<&'a mut aya::maps::MapData>
  1265. pub type aya::maps::DevMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1266. pub fn aya::maps::DevMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1267. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::DevMapHash<&'a mut aya::maps::MapData>
  1268. pub type aya::maps::DevMapHash<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1269. pub fn aya::maps::DevMapHash<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1270. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::ProgramArray<&'a mut aya::maps::MapData>
  1271. pub type aya::maps::ProgramArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1272. pub fn aya::maps::ProgramArray<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1273. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::SockMap<&'a mut aya::maps::MapData>
  1274. pub type aya::maps::SockMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1275. pub fn aya::maps::SockMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1276. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::XskMap<&'a mut aya::maps::MapData>
  1277. pub type aya::maps::XskMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1278. pub fn aya::maps::XskMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1279. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::perf::AsyncPerfEventArray<&'a mut aya::maps::MapData>
  1280. pub type aya::maps::perf::AsyncPerfEventArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1281. 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>
  1282. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData>
  1283. pub type aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1284. 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>
  1285. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::ring_buf::RingBuf<&'a mut aya::maps::MapData>
  1286. pub type aya::maps::ring_buf::RingBuf<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1287. 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>
  1288. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData>
  1289. pub type aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1290. 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>
  1291. impl<K: aya::Pod, V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::hash_map::HashMap<aya::maps::MapData, K, V>
  1292. pub type aya::maps::hash_map::HashMap<aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1293. pub fn aya::maps::hash_map::HashMap<aya::maps::MapData, K, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1294. impl<K: aya::Pod, V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::hash_map::PerCpuHashMap<aya::maps::MapData, K, V>
  1295. pub type aya::maps::hash_map::PerCpuHashMap<aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1296. pub fn aya::maps::hash_map::PerCpuHashMap<aya::maps::MapData, K, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1297. impl<K: aya::Pod, V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::lpm_trie::LpmTrie<aya::maps::MapData, K, V>
  1298. pub type aya::maps::lpm_trie::LpmTrie<aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1299. pub fn aya::maps::lpm_trie::LpmTrie<aya::maps::MapData, K, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1300. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::PerCpuArray<aya::maps::MapData, V>
  1301. pub type aya::maps::PerCpuArray<aya::maps::MapData, V>::Error = aya::maps::MapError
  1302. pub fn aya::maps::PerCpuArray<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1303. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::SockHash<aya::maps::MapData, V>
  1304. pub type aya::maps::SockHash<aya::maps::MapData, V>::Error = aya::maps::MapError
  1305. pub fn aya::maps::SockHash<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1306. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::array::Array<aya::maps::MapData, V>
  1307. pub type aya::maps::array::Array<aya::maps::MapData, V>::Error = aya::maps::MapError
  1308. pub fn aya::maps::array::Array<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1309. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::bloom_filter::BloomFilter<aya::maps::MapData, V>
  1310. pub type aya::maps::bloom_filter::BloomFilter<aya::maps::MapData, V>::Error = aya::maps::MapError
  1311. pub fn aya::maps::bloom_filter::BloomFilter<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1312. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::queue::Queue<aya::maps::MapData, V>
  1313. pub type aya::maps::queue::Queue<aya::maps::MapData, V>::Error = aya::maps::MapError
  1314. pub fn aya::maps::queue::Queue<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1315. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::stack::Stack<aya::maps::MapData, V>
  1316. pub type aya::maps::stack::Stack<aya::maps::MapData, V>::Error = aya::maps::MapError
  1317. pub fn aya::maps::stack::Stack<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1318. impl core::marker::Freeze for aya::maps::Map
  1319. impl core::marker::Send for aya::maps::Map
  1320. impl core::marker::Sync for aya::maps::Map
  1321. impl core::marker::Unpin for aya::maps::Map
  1322. impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::Map
  1323. impl core::panic::unwind_safe::UnwindSafe for aya::maps::Map
  1324. impl<T, U> core::convert::Into<U> for aya::maps::Map where U: core::convert::From<T>
  1325. pub fn aya::maps::Map::into(self) -> U
  1326. impl<T, U> core::convert::TryFrom<U> for aya::maps::Map where U: core::convert::Into<T>
  1327. pub type aya::maps::Map::Error = core::convert::Infallible
  1328. pub fn aya::maps::Map::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1329. impl<T, U> core::convert::TryInto<U> for aya::maps::Map where U: core::convert::TryFrom<T>
  1330. pub type aya::maps::Map::Error = <U as core::convert::TryFrom<T>>::Error
  1331. pub fn aya::maps::Map::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1332. impl<T> core::any::Any for aya::maps::Map where T: 'static + ?core::marker::Sized
  1333. pub fn aya::maps::Map::type_id(&self) -> core::any::TypeId
  1334. impl<T> core::borrow::Borrow<T> for aya::maps::Map where T: ?core::marker::Sized
  1335. pub fn aya::maps::Map::borrow(&self) -> &T
  1336. impl<T> core::borrow::BorrowMut<T> for aya::maps::Map where T: ?core::marker::Sized
  1337. pub fn aya::maps::Map::borrow_mut(&mut self) -> &mut T
  1338. impl<T> core::convert::From<T> for aya::maps::Map
  1339. pub fn aya::maps::Map::from(t: T) -> T
  1340. pub enum aya::maps::MapError
  1341. pub aya::maps::MapError::CreateError
  1342. pub aya::maps::MapError::CreateError::io_error: std::io::error::Error
  1343. pub aya::maps::MapError::CreateError::name: alloc::string::String
  1344. pub aya::maps::MapError::ElementNotFound
  1345. pub aya::maps::MapError::InvalidKeySize
  1346. pub aya::maps::MapError::InvalidKeySize::expected: usize
  1347. pub aya::maps::MapError::InvalidKeySize::size: usize
  1348. pub aya::maps::MapError::InvalidMapType
  1349. pub aya::maps::MapError::InvalidMapType::map_type: u32
  1350. pub aya::maps::MapError::InvalidName
  1351. pub aya::maps::MapError::InvalidName::name: alloc::string::String
  1352. pub aya::maps::MapError::InvalidValueSize
  1353. pub aya::maps::MapError::InvalidValueSize::expected: usize
  1354. pub aya::maps::MapError::InvalidValueSize::size: usize
  1355. pub aya::maps::MapError::IoError(std::io::error::Error)
  1356. pub aya::maps::MapError::KeyNotFound
  1357. pub aya::maps::MapError::OutOfBounds
  1358. pub aya::maps::MapError::OutOfBounds::index: u32
  1359. pub aya::maps::MapError::OutOfBounds::max_entries: u32
  1360. pub aya::maps::MapError::PinError
  1361. pub aya::maps::MapError::PinError::error: aya::pin::PinError
  1362. pub aya::maps::MapError::PinError::name: core::option::Option<alloc::string::String>
  1363. pub aya::maps::MapError::ProgIdNotSupported
  1364. pub aya::maps::MapError::ProgramNotLoaded
  1365. pub aya::maps::MapError::SyscallError(aya::sys::SyscallError)
  1366. pub aya::maps::MapError::Unsupported
  1367. pub aya::maps::MapError::Unsupported::map_type: aya_obj::generated::linux_bindings_x86_64::bpf_map_type
  1368. pub aya::maps::MapError::Unsupported::name: alloc::string::String
  1369. impl core::convert::From<aya::maps::MapError> for aya::EbpfError
  1370. pub fn aya::EbpfError::from(source: aya::maps::MapError) -> Self
  1371. impl core::convert::From<aya::maps::MapError> for aya::maps::xdp::XdpMapError
  1372. pub fn aya::maps::xdp::XdpMapError::from(source: aya::maps::MapError) -> Self
  1373. impl core::convert::From<aya::maps::MapError> for aya::programs::ProgramError
  1374. pub fn aya::programs::ProgramError::from(source: aya::maps::MapError) -> Self
  1375. impl core::convert::From<aya::sys::SyscallError> for aya::maps::MapError
  1376. pub fn aya::maps::MapError::from(source: aya::sys::SyscallError) -> Self
  1377. impl core::convert::From<aya_obj::obj::InvalidTypeBinding<u32>> for aya::maps::MapError
  1378. pub fn aya::maps::MapError::from(e: aya_obj::obj::InvalidTypeBinding<u32>) -> Self
  1379. impl core::convert::From<std::io::error::Error> for aya::maps::MapError
  1380. pub fn aya::maps::MapError::from(source: std::io::error::Error) -> Self
  1381. impl core::error::Error for aya::maps::MapError
  1382. pub fn aya::maps::MapError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  1383. impl core::fmt::Debug for aya::maps::MapError
  1384. pub fn aya::maps::MapError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1385. impl core::fmt::Display for aya::maps::MapError
  1386. pub fn aya::maps::MapError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1387. impl core::marker::Freeze for aya::maps::MapError
  1388. impl core::marker::Send for aya::maps::MapError
  1389. impl core::marker::Sync for aya::maps::MapError
  1390. impl core::marker::Unpin for aya::maps::MapError
  1391. impl !core::panic::unwind_safe::RefUnwindSafe for aya::maps::MapError
  1392. impl !core::panic::unwind_safe::UnwindSafe for aya::maps::MapError
  1393. impl<T, U> core::convert::Into<U> for aya::maps::MapError where U: core::convert::From<T>
  1394. pub fn aya::maps::MapError::into(self) -> U
  1395. impl<T, U> core::convert::TryFrom<U> for aya::maps::MapError where U: core::convert::Into<T>
  1396. pub type aya::maps::MapError::Error = core::convert::Infallible
  1397. pub fn aya::maps::MapError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1398. impl<T, U> core::convert::TryInto<U> for aya::maps::MapError where U: core::convert::TryFrom<T>
  1399. pub type aya::maps::MapError::Error = <U as core::convert::TryFrom<T>>::Error
  1400. pub fn aya::maps::MapError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1401. impl<T> alloc::string::ToString for aya::maps::MapError where T: core::fmt::Display + ?core::marker::Sized
  1402. pub fn aya::maps::MapError::to_string(&self) -> alloc::string::String
  1403. impl<T> core::any::Any for aya::maps::MapError where T: 'static + ?core::marker::Sized
  1404. pub fn aya::maps::MapError::type_id(&self) -> core::any::TypeId
  1405. impl<T> core::borrow::Borrow<T> for aya::maps::MapError where T: ?core::marker::Sized
  1406. pub fn aya::maps::MapError::borrow(&self) -> &T
  1407. impl<T> core::borrow::BorrowMut<T> for aya::maps::MapError where T: ?core::marker::Sized
  1408. pub fn aya::maps::MapError::borrow_mut(&mut self) -> &mut T
  1409. impl<T> core::convert::From<T> for aya::maps::MapError
  1410. pub fn aya::maps::MapError::from(t: T) -> T
  1411. #[non_exhaustive] pub enum aya::maps::MapType
  1412. pub aya::maps::MapType::Arena = 33
  1413. pub aya::maps::MapType::Array = 2
  1414. pub aya::maps::MapType::ArrayOfMaps = 12
  1415. pub aya::maps::MapType::BloomFilter = 30
  1416. pub aya::maps::MapType::CgroupArray = 8
  1417. pub aya::maps::MapType::CgroupStorage = 19
  1418. pub aya::maps::MapType::CgrpStorage = 32
  1419. pub aya::maps::MapType::CpuMap = 16
  1420. pub aya::maps::MapType::DevMap = 14
  1421. pub aya::maps::MapType::DevMapHash = 25
  1422. pub aya::maps::MapType::Hash = 1
  1423. pub aya::maps::MapType::HashOfMaps = 13
  1424. pub aya::maps::MapType::InodeStorage = 28
  1425. pub aya::maps::MapType::LpmTrie = 11
  1426. pub aya::maps::MapType::LruHash = 9
  1427. pub aya::maps::MapType::LruPerCpuHash = 10
  1428. pub aya::maps::MapType::PerCpuArray = 6
  1429. pub aya::maps::MapType::PerCpuCgroupStorage = 21
  1430. pub aya::maps::MapType::PerCpuHash = 5
  1431. pub aya::maps::MapType::PerfEventArray = 4
  1432. pub aya::maps::MapType::ProgramArray = 3
  1433. pub aya::maps::MapType::Queue = 22
  1434. pub aya::maps::MapType::ReuseportSockArray = 20
  1435. pub aya::maps::MapType::RingBuf = 27
  1436. pub aya::maps::MapType::SkStorage = 24
  1437. pub aya::maps::MapType::SockHash = 18
  1438. pub aya::maps::MapType::SockMap = 15
  1439. pub aya::maps::MapType::Stack = 23
  1440. pub aya::maps::MapType::StackTrace = 7
  1441. pub aya::maps::MapType::StructOps = 26
  1442. pub aya::maps::MapType::TaskStorage = 29
  1443. pub aya::maps::MapType::Unspecified = 0
  1444. pub aya::maps::MapType::UserRingBuf = 31
  1445. pub aya::maps::MapType::XskMap = 17
  1446. impl core::clone::Clone for aya::maps::MapType
  1447. pub fn aya::maps::MapType::clone(&self) -> aya::maps::MapType
  1448. impl core::cmp::PartialEq for aya::maps::MapType
  1449. pub fn aya::maps::MapType::eq(&self, other: &aya::maps::MapType) -> bool
  1450. impl core::convert::TryFrom<aya_obj::generated::linux_bindings_x86_64::bpf_map_type> for aya::maps::MapType
  1451. pub type aya::maps::MapType::Error = aya::maps::MapError
  1452. pub fn aya::maps::MapType::try_from(map_type: aya_obj::generated::linux_bindings_x86_64::bpf_map_type) -> core::result::Result<Self, Self::Error>
  1453. impl core::fmt::Debug for aya::maps::MapType
  1454. pub fn aya::maps::MapType::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1455. impl core::marker::Copy for aya::maps::MapType
  1456. impl core::marker::StructuralPartialEq for aya::maps::MapType
  1457. impl core::marker::Freeze for aya::maps::MapType
  1458. impl core::marker::Send for aya::maps::MapType
  1459. impl core::marker::Sync for aya::maps::MapType
  1460. impl core::marker::Unpin for aya::maps::MapType
  1461. impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::MapType
  1462. impl core::panic::unwind_safe::UnwindSafe for aya::maps::MapType
  1463. impl<T, U> core::convert::Into<U> for aya::maps::MapType where U: core::convert::From<T>
  1464. pub fn aya::maps::MapType::into(self) -> U
  1465. impl<T, U> core::convert::TryFrom<U> for aya::maps::MapType where U: core::convert::Into<T>
  1466. pub type aya::maps::MapType::Error = core::convert::Infallible
  1467. pub fn aya::maps::MapType::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1468. impl<T, U> core::convert::TryInto<U> for aya::maps::MapType where U: core::convert::TryFrom<T>
  1469. pub type aya::maps::MapType::Error = <U as core::convert::TryFrom<T>>::Error
  1470. pub fn aya::maps::MapType::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1471. impl<T> alloc::borrow::ToOwned for aya::maps::MapType where T: core::clone::Clone
  1472. pub type aya::maps::MapType::Owned = T
  1473. pub fn aya::maps::MapType::clone_into(&self, target: &mut T)
  1474. pub fn aya::maps::MapType::to_owned(&self) -> T
  1475. impl<T> core::any::Any for aya::maps::MapType where T: 'static + ?core::marker::Sized
  1476. pub fn aya::maps::MapType::type_id(&self) -> core::any::TypeId
  1477. impl<T> core::borrow::Borrow<T> for aya::maps::MapType where T: ?core::marker::Sized
  1478. pub fn aya::maps::MapType::borrow(&self) -> &T
  1479. impl<T> core::borrow::BorrowMut<T> for aya::maps::MapType where T: ?core::marker::Sized
  1480. pub fn aya::maps::MapType::borrow_mut(&mut self) -> &mut T
  1481. impl<T> core::clone::CloneToUninit for aya::maps::MapType where T: core::clone::Clone
  1482. pub unsafe fn aya::maps::MapType::clone_to_uninit(&self, dest: *mut u8)
  1483. impl<T> core::convert::From<T> for aya::maps::MapType
  1484. pub fn aya::maps::MapType::from(t: T) -> T
  1485. pub struct aya::maps::Array<T, V: aya::Pod>
  1486. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::array::Array<T, V>
  1487. pub fn aya::maps::array::Array<T, V>::get(&self, index: &u32, flags: u64) -> core::result::Result<V, aya::maps::MapError>
  1488. pub fn aya::maps::array::Array<T, V>::iter(&self) -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<V, aya::maps::MapError>> + '_
  1489. pub fn aya::maps::array::Array<T, V>::len(&self) -> u32
  1490. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::array::Array<T, V>
  1491. 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>
  1492. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::array::Array<T, V>
  1493. 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>
  1494. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::array::Array<&'a aya::maps::MapData, V>
  1495. pub type aya::maps::array::Array<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  1496. pub fn aya::maps::array::Array<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1497. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::array::Array<&'a mut aya::maps::MapData, V>
  1498. pub type aya::maps::array::Array<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  1499. 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>
  1500. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::IterableMap<u32, V> for aya::maps::array::Array<T, V>
  1501. pub fn aya::maps::array::Array<T, V>::get(&self, index: &u32) -> core::result::Result<V, aya::maps::MapError>
  1502. pub fn aya::maps::array::Array<T, V>::map(&self) -> &aya::maps::MapData
  1503. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::array::Array<aya::maps::MapData, V>
  1504. pub type aya::maps::array::Array<aya::maps::MapData, V>::Error = aya::maps::MapError
  1505. pub fn aya::maps::array::Array<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1506. impl<T, V> core::marker::Freeze for aya::maps::array::Array<T, V> where T: core::marker::Freeze
  1507. impl<T, V> core::marker::Send for aya::maps::array::Array<T, V> where T: core::marker::Send, V: core::marker::Send
  1508. impl<T, V> core::marker::Sync for aya::maps::array::Array<T, V> where T: core::marker::Sync, V: core::marker::Sync
  1509. impl<T, V> core::marker::Unpin for aya::maps::array::Array<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  1510. 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
  1511. 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
  1512. impl<T, U> core::convert::Into<U> for aya::maps::array::Array<T, V> where U: core::convert::From<T>
  1513. pub fn aya::maps::array::Array<T, V>::into(self) -> U
  1514. impl<T, U> core::convert::TryFrom<U> for aya::maps::array::Array<T, V> where U: core::convert::Into<T>
  1515. pub type aya::maps::array::Array<T, V>::Error = core::convert::Infallible
  1516. pub fn aya::maps::array::Array<T, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1517. impl<T, U> core::convert::TryInto<U> for aya::maps::array::Array<T, V> where U: core::convert::TryFrom<T>
  1518. pub type aya::maps::array::Array<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  1519. pub fn aya::maps::array::Array<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1520. impl<T> core::any::Any for aya::maps::array::Array<T, V> where T: 'static + ?core::marker::Sized
  1521. pub fn aya::maps::array::Array<T, V>::type_id(&self) -> core::any::TypeId
  1522. impl<T> core::borrow::Borrow<T> for aya::maps::array::Array<T, V> where T: ?core::marker::Sized
  1523. pub fn aya::maps::array::Array<T, V>::borrow(&self) -> &T
  1524. impl<T> core::borrow::BorrowMut<T> for aya::maps::array::Array<T, V> where T: ?core::marker::Sized
  1525. pub fn aya::maps::array::Array<T, V>::borrow_mut(&mut self) -> &mut T
  1526. impl<T> core::convert::From<T> for aya::maps::array::Array<T, V>
  1527. pub fn aya::maps::array::Array<T, V>::from(t: T) -> T
  1528. pub struct aya::maps::AsyncPerfEventArray<T>
  1529. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::perf::AsyncPerfEventArray<T>
  1530. 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>
  1531. pub fn aya::maps::perf::AsyncPerfEventArray<T>::pin<P: core::convert::AsRef<std::path::Path>>(&self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1532. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::perf::AsyncPerfEventArray<aya::maps::MapData>
  1533. pub type aya::maps::perf::AsyncPerfEventArray<aya::maps::MapData>::Error = aya::maps::MapError
  1534. pub fn aya::maps::perf::AsyncPerfEventArray<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1535. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::perf::AsyncPerfEventArray<&'a aya::maps::MapData>
  1536. pub type aya::maps::perf::AsyncPerfEventArray<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1537. pub fn aya::maps::perf::AsyncPerfEventArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1538. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::perf::AsyncPerfEventArray<&'a mut aya::maps::MapData>
  1539. pub type aya::maps::perf::AsyncPerfEventArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1540. 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>
  1541. impl<T> core::marker::Freeze for aya::maps::perf::AsyncPerfEventArray<T>
  1542. impl<T> core::marker::Send for aya::maps::perf::AsyncPerfEventArray<T> where T: core::marker::Sync + core::marker::Send
  1543. impl<T> core::marker::Sync for aya::maps::perf::AsyncPerfEventArray<T> where T: core::marker::Sync + core::marker::Send
  1544. impl<T> core::marker::Unpin for aya::maps::perf::AsyncPerfEventArray<T>
  1545. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::perf::AsyncPerfEventArray<T> where T: core::panic::unwind_safe::RefUnwindSafe
  1546. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::perf::AsyncPerfEventArray<T> where T: core::panic::unwind_safe::RefUnwindSafe
  1547. impl<T, U> core::convert::Into<U> for aya::maps::perf::AsyncPerfEventArray<T> where U: core::convert::From<T>
  1548. pub fn aya::maps::perf::AsyncPerfEventArray<T>::into(self) -> U
  1549. impl<T, U> core::convert::TryFrom<U> for aya::maps::perf::AsyncPerfEventArray<T> where U: core::convert::Into<T>
  1550. pub type aya::maps::perf::AsyncPerfEventArray<T>::Error = core::convert::Infallible
  1551. pub fn aya::maps::perf::AsyncPerfEventArray<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1552. impl<T, U> core::convert::TryInto<U> for aya::maps::perf::AsyncPerfEventArray<T> where U: core::convert::TryFrom<T>
  1553. pub type aya::maps::perf::AsyncPerfEventArray<T>::Error = <U as core::convert::TryFrom<T>>::Error
  1554. pub fn aya::maps::perf::AsyncPerfEventArray<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1555. impl<T> core::any::Any for aya::maps::perf::AsyncPerfEventArray<T> where T: 'static + ?core::marker::Sized
  1556. pub fn aya::maps::perf::AsyncPerfEventArray<T>::type_id(&self) -> core::any::TypeId
  1557. impl<T> core::borrow::Borrow<T> for aya::maps::perf::AsyncPerfEventArray<T> where T: ?core::marker::Sized
  1558. pub fn aya::maps::perf::AsyncPerfEventArray<T>::borrow(&self) -> &T
  1559. impl<T> core::borrow::BorrowMut<T> for aya::maps::perf::AsyncPerfEventArray<T> where T: ?core::marker::Sized
  1560. pub fn aya::maps::perf::AsyncPerfEventArray<T>::borrow_mut(&mut self) -> &mut T
  1561. impl<T> core::convert::From<T> for aya::maps::perf::AsyncPerfEventArray<T>
  1562. pub fn aya::maps::perf::AsyncPerfEventArray<T>::from(t: T) -> T
  1563. pub struct aya::maps::BloomFilter<T, V: aya::Pod>
  1564. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::bloom_filter::BloomFilter<T, V>
  1565. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::contains(&self, value: &V, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  1566. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::bloom_filter::BloomFilter<T, V>
  1567. 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>
  1568. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::bloom_filter::BloomFilter<T, V>
  1569. 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>
  1570. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V>
  1571. pub type aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  1572. 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>
  1573. 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>
  1574. pub type aya::maps::bloom_filter::BloomFilter<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  1575. 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>
  1576. impl<T: core::fmt::Debug, V: core::fmt::Debug + aya::Pod> core::fmt::Debug for aya::maps::bloom_filter::BloomFilter<T, V>
  1577. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1578. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::bloom_filter::BloomFilter<aya::maps::MapData, V>
  1579. pub type aya::maps::bloom_filter::BloomFilter<aya::maps::MapData, V>::Error = aya::maps::MapError
  1580. pub fn aya::maps::bloom_filter::BloomFilter<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1581. impl<T, V> core::marker::Freeze for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::marker::Freeze
  1582. impl<T, V> core::marker::Send for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::marker::Send, V: core::marker::Send
  1583. impl<T, V> core::marker::Sync for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::marker::Sync, V: core::marker::Sync
  1584. impl<T, V> core::marker::Unpin for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  1585. 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
  1586. 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
  1587. impl<T, U> core::convert::Into<U> for aya::maps::bloom_filter::BloomFilter<T, V> where U: core::convert::From<T>
  1588. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::into(self) -> U
  1589. impl<T, U> core::convert::TryFrom<U> for aya::maps::bloom_filter::BloomFilter<T, V> where U: core::convert::Into<T>
  1590. pub type aya::maps::bloom_filter::BloomFilter<T, V>::Error = core::convert::Infallible
  1591. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1592. impl<T, U> core::convert::TryInto<U> for aya::maps::bloom_filter::BloomFilter<T, V> where U: core::convert::TryFrom<T>
  1593. pub type aya::maps::bloom_filter::BloomFilter<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  1594. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1595. impl<T> core::any::Any for aya::maps::bloom_filter::BloomFilter<T, V> where T: 'static + ?core::marker::Sized
  1596. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::type_id(&self) -> core::any::TypeId
  1597. impl<T> core::borrow::Borrow<T> for aya::maps::bloom_filter::BloomFilter<T, V> where T: ?core::marker::Sized
  1598. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::borrow(&self) -> &T
  1599. impl<T> core::borrow::BorrowMut<T> for aya::maps::bloom_filter::BloomFilter<T, V> where T: ?core::marker::Sized
  1600. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::borrow_mut(&mut self) -> &mut T
  1601. impl<T> core::convert::From<T> for aya::maps::bloom_filter::BloomFilter<T, V>
  1602. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::from(t: T) -> T
  1603. pub struct aya::maps::CpuMap<T>
  1604. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::CpuMap<T>
  1605. pub fn aya::maps::CpuMap<T>::get(&self, cpu_index: u32, flags: u64) -> core::result::Result<aya::maps::xdp::cpu_map::CpuMapValue, aya::maps::MapError>
  1606. pub fn aya::maps::CpuMap<T>::iter(&self) -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<aya::maps::xdp::cpu_map::CpuMapValue, aya::maps::MapError>> + '_
  1607. pub fn aya::maps::CpuMap<T>::len(&self) -> u32
  1608. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::CpuMap<T>
  1609. pub fn aya::maps::CpuMap<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1610. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::CpuMap<T>
  1611. 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>
  1612. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::CpuMap<aya::maps::MapData>
  1613. pub type aya::maps::CpuMap<aya::maps::MapData>::Error = aya::maps::MapError
  1614. pub fn aya::maps::CpuMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1615. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::CpuMap<&'a aya::maps::MapData>
  1616. pub type aya::maps::CpuMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1617. pub fn aya::maps::CpuMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1618. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::CpuMap<&'a mut aya::maps::MapData>
  1619. pub type aya::maps::CpuMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1620. pub fn aya::maps::CpuMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1621. impl<T> core::marker::Freeze for aya::maps::CpuMap<T> where T: core::marker::Freeze
  1622. impl<T> core::marker::Send for aya::maps::CpuMap<T> where T: core::marker::Send
  1623. impl<T> core::marker::Sync for aya::maps::CpuMap<T> where T: core::marker::Sync
  1624. impl<T> core::marker::Unpin for aya::maps::CpuMap<T> where T: core::marker::Unpin
  1625. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::CpuMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  1626. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::CpuMap<T> where T: core::panic::unwind_safe::UnwindSafe
  1627. impl<T, U> core::convert::Into<U> for aya::maps::CpuMap<T> where U: core::convert::From<T>
  1628. pub fn aya::maps::CpuMap<T>::into(self) -> U
  1629. impl<T, U> core::convert::TryFrom<U> for aya::maps::CpuMap<T> where U: core::convert::Into<T>
  1630. pub type aya::maps::CpuMap<T>::Error = core::convert::Infallible
  1631. pub fn aya::maps::CpuMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1632. impl<T, U> core::convert::TryInto<U> for aya::maps::CpuMap<T> where U: core::convert::TryFrom<T>
  1633. pub type aya::maps::CpuMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  1634. pub fn aya::maps::CpuMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1635. impl<T> core::any::Any for aya::maps::CpuMap<T> where T: 'static + ?core::marker::Sized
  1636. pub fn aya::maps::CpuMap<T>::type_id(&self) -> core::any::TypeId
  1637. impl<T> core::borrow::Borrow<T> for aya::maps::CpuMap<T> where T: ?core::marker::Sized
  1638. pub fn aya::maps::CpuMap<T>::borrow(&self) -> &T
  1639. impl<T> core::borrow::BorrowMut<T> for aya::maps::CpuMap<T> where T: ?core::marker::Sized
  1640. pub fn aya::maps::CpuMap<T>::borrow_mut(&mut self) -> &mut T
  1641. impl<T> core::convert::From<T> for aya::maps::CpuMap<T>
  1642. pub fn aya::maps::CpuMap<T>::from(t: T) -> T
  1643. pub struct aya::maps::DevMap<T>
  1644. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::DevMap<T>
  1645. pub fn aya::maps::DevMap<T>::get(&self, index: u32, flags: u64) -> core::result::Result<aya::maps::xdp::dev_map::DevMapValue, aya::maps::MapError>
  1646. pub fn aya::maps::DevMap<T>::iter(&self) -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<aya::maps::xdp::dev_map::DevMapValue, aya::maps::MapError>> + '_
  1647. pub fn aya::maps::DevMap<T>::len(&self) -> u32
  1648. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::DevMap<T>
  1649. pub fn aya::maps::DevMap<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1650. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::DevMap<T>
  1651. 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>
  1652. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::DevMap<aya::maps::MapData>
  1653. pub type aya::maps::DevMap<aya::maps::MapData>::Error = aya::maps::MapError
  1654. pub fn aya::maps::DevMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1655. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::DevMap<&'a aya::maps::MapData>
  1656. pub type aya::maps::DevMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1657. pub fn aya::maps::DevMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1658. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::DevMap<&'a mut aya::maps::MapData>
  1659. pub type aya::maps::DevMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1660. pub fn aya::maps::DevMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1661. impl<T> core::marker::Freeze for aya::maps::DevMap<T> where T: core::marker::Freeze
  1662. impl<T> core::marker::Send for aya::maps::DevMap<T> where T: core::marker::Send
  1663. impl<T> core::marker::Sync for aya::maps::DevMap<T> where T: core::marker::Sync
  1664. impl<T> core::marker::Unpin for aya::maps::DevMap<T> where T: core::marker::Unpin
  1665. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::DevMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  1666. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::DevMap<T> where T: core::panic::unwind_safe::UnwindSafe
  1667. impl<T, U> core::convert::Into<U> for aya::maps::DevMap<T> where U: core::convert::From<T>
  1668. pub fn aya::maps::DevMap<T>::into(self) -> U
  1669. impl<T, U> core::convert::TryFrom<U> for aya::maps::DevMap<T> where U: core::convert::Into<T>
  1670. pub type aya::maps::DevMap<T>::Error = core::convert::Infallible
  1671. pub fn aya::maps::DevMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1672. impl<T, U> core::convert::TryInto<U> for aya::maps::DevMap<T> where U: core::convert::TryFrom<T>
  1673. pub type aya::maps::DevMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  1674. pub fn aya::maps::DevMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1675. impl<T> core::any::Any for aya::maps::DevMap<T> where T: 'static + ?core::marker::Sized
  1676. pub fn aya::maps::DevMap<T>::type_id(&self) -> core::any::TypeId
  1677. impl<T> core::borrow::Borrow<T> for aya::maps::DevMap<T> where T: ?core::marker::Sized
  1678. pub fn aya::maps::DevMap<T>::borrow(&self) -> &T
  1679. impl<T> core::borrow::BorrowMut<T> for aya::maps::DevMap<T> where T: ?core::marker::Sized
  1680. pub fn aya::maps::DevMap<T>::borrow_mut(&mut self) -> &mut T
  1681. impl<T> core::convert::From<T> for aya::maps::DevMap<T>
  1682. pub fn aya::maps::DevMap<T>::from(t: T) -> T
  1683. pub struct aya::maps::DevMapHash<T>
  1684. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::DevMapHash<T>
  1685. pub fn aya::maps::DevMapHash<T>::get(&self, key: u32, flags: u64) -> core::result::Result<aya::maps::xdp::dev_map::DevMapValue, aya::maps::MapError>
  1686. pub fn aya::maps::DevMapHash<T>::iter(&self) -> aya::maps::MapIter<'_, u32, aya::maps::xdp::dev_map::DevMapValue, Self>
  1687. pub fn aya::maps::DevMapHash<T>::keys(&self) -> aya::maps::MapKeys<'_, u32>
  1688. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::DevMapHash<T>
  1689. pub fn aya::maps::DevMapHash<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1690. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::DevMapHash<T>
  1691. 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>
  1692. pub fn aya::maps::DevMapHash<T>::remove(&mut self, key: u32) -> core::result::Result<(), aya::maps::MapError>
  1693. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::DevMapHash<aya::maps::MapData>
  1694. pub type aya::maps::DevMapHash<aya::maps::MapData>::Error = aya::maps::MapError
  1695. pub fn aya::maps::DevMapHash<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1696. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::DevMapHash<&'a aya::maps::MapData>
  1697. pub type aya::maps::DevMapHash<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1698. pub fn aya::maps::DevMapHash<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1699. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::DevMapHash<&'a mut aya::maps::MapData>
  1700. pub type aya::maps::DevMapHash<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1701. pub fn aya::maps::DevMapHash<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1702. impl<T> core::marker::Freeze for aya::maps::DevMapHash<T> where T: core::marker::Freeze
  1703. impl<T> core::marker::Send for aya::maps::DevMapHash<T> where T: core::marker::Send
  1704. impl<T> core::marker::Sync for aya::maps::DevMapHash<T> where T: core::marker::Sync
  1705. impl<T> core::marker::Unpin for aya::maps::DevMapHash<T> where T: core::marker::Unpin
  1706. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::DevMapHash<T> where T: core::panic::unwind_safe::RefUnwindSafe
  1707. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::DevMapHash<T> where T: core::panic::unwind_safe::UnwindSafe
  1708. impl<T, U> core::convert::Into<U> for aya::maps::DevMapHash<T> where U: core::convert::From<T>
  1709. pub fn aya::maps::DevMapHash<T>::into(self) -> U
  1710. impl<T, U> core::convert::TryFrom<U> for aya::maps::DevMapHash<T> where U: core::convert::Into<T>
  1711. pub type aya::maps::DevMapHash<T>::Error = core::convert::Infallible
  1712. pub fn aya::maps::DevMapHash<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1713. impl<T, U> core::convert::TryInto<U> for aya::maps::DevMapHash<T> where U: core::convert::TryFrom<T>
  1714. pub type aya::maps::DevMapHash<T>::Error = <U as core::convert::TryFrom<T>>::Error
  1715. pub fn aya::maps::DevMapHash<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1716. impl<T> core::any::Any for aya::maps::DevMapHash<T> where T: 'static + ?core::marker::Sized
  1717. pub fn aya::maps::DevMapHash<T>::type_id(&self) -> core::any::TypeId
  1718. impl<T> core::borrow::Borrow<T> for aya::maps::DevMapHash<T> where T: ?core::marker::Sized
  1719. pub fn aya::maps::DevMapHash<T>::borrow(&self) -> &T
  1720. impl<T> core::borrow::BorrowMut<T> for aya::maps::DevMapHash<T> where T: ?core::marker::Sized
  1721. pub fn aya::maps::DevMapHash<T>::borrow_mut(&mut self) -> &mut T
  1722. impl<T> core::convert::From<T> for aya::maps::DevMapHash<T>
  1723. pub fn aya::maps::DevMapHash<T>::from(t: T) -> T
  1724. pub struct aya::maps::HashMap<T, K, V>
  1725. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::HashMap<T, K, V>
  1726. pub fn aya::maps::hash_map::HashMap<T, K, V>::get(&self, key: &K, flags: u64) -> core::result::Result<V, aya::maps::MapError>
  1727. pub fn aya::maps::hash_map::HashMap<T, K, V>::iter(&self) -> aya::maps::MapIter<'_, K, V, Self>
  1728. pub fn aya::maps::hash_map::HashMap<T, K, V>::keys(&self) -> aya::maps::MapKeys<'_, K>
  1729. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::HashMap<T, K, V>
  1730. 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>
  1731. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::HashMap<T, K, V>
  1732. 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>
  1733. pub fn aya::maps::hash_map::HashMap<T, K, V>::remove(&mut self, key: &K) -> core::result::Result<(), aya::maps::MapError>
  1734. 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>
  1735. pub type aya::maps::hash_map::HashMap<&'a aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1736. 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>
  1737. 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>
  1738. pub type aya::maps::hash_map::HashMap<&'a mut aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1739. 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>
  1740. impl<K: aya::Pod, V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::hash_map::HashMap<aya::maps::MapData, K, V>
  1741. pub type aya::maps::hash_map::HashMap<aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1742. pub fn aya::maps::hash_map::HashMap<aya::maps::MapData, K, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1743. 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>
  1744. pub fn aya::maps::hash_map::HashMap<T, K, V>::get(&self, key: &K) -> core::result::Result<V, aya::maps::MapError>
  1745. pub fn aya::maps::hash_map::HashMap<T, K, V>::map(&self) -> &aya::maps::MapData
  1746. 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>
  1747. pub fn aya::maps::hash_map::HashMap<T, K, V>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1748. impl<T, K, V> core::marker::Freeze for aya::maps::hash_map::HashMap<T, K, V> where T: core::marker::Freeze
  1749. impl<T, K, V> core::marker::Send for aya::maps::hash_map::HashMap<T, K, V> where T: core::marker::Send, K: core::marker::Send, V: core::marker::Send
  1750. impl<T, K, V> core::marker::Sync for aya::maps::hash_map::HashMap<T, K, V> where T: core::marker::Sync, K: core::marker::Sync, V: core::marker::Sync
  1751. impl<T, K, V> core::marker::Unpin for aya::maps::hash_map::HashMap<T, K, V> where T: core::marker::Unpin, K: core::marker::Unpin, V: core::marker::Unpin
  1752. impl<T, K, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::hash_map::HashMap<T, K, V> where T: core::panic::unwind_safe::RefUnwindSafe, K: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  1753. impl<T, K, V> core::panic::unwind_safe::UnwindSafe for aya::maps::hash_map::HashMap<T, K, V> where T: core::panic::unwind_safe::UnwindSafe, K: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  1754. impl<T, U> core::convert::Into<U> for aya::maps::hash_map::HashMap<T, K, V> where U: core::convert::From<T>
  1755. pub fn aya::maps::hash_map::HashMap<T, K, V>::into(self) -> U
  1756. impl<T, U> core::convert::TryFrom<U> for aya::maps::hash_map::HashMap<T, K, V> where U: core::convert::Into<T>
  1757. pub type aya::maps::hash_map::HashMap<T, K, V>::Error = core::convert::Infallible
  1758. 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>
  1759. impl<T, U> core::convert::TryInto<U> for aya::maps::hash_map::HashMap<T, K, V> where U: core::convert::TryFrom<T>
  1760. pub type aya::maps::hash_map::HashMap<T, K, V>::Error = <U as core::convert::TryFrom<T>>::Error
  1761. pub fn aya::maps::hash_map::HashMap<T, K, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1762. impl<T> core::any::Any for aya::maps::hash_map::HashMap<T, K, V> where T: 'static + ?core::marker::Sized
  1763. pub fn aya::maps::hash_map::HashMap<T, K, V>::type_id(&self) -> core::any::TypeId
  1764. impl<T> core::borrow::Borrow<T> for aya::maps::hash_map::HashMap<T, K, V> where T: ?core::marker::Sized
  1765. pub fn aya::maps::hash_map::HashMap<T, K, V>::borrow(&self) -> &T
  1766. impl<T> core::borrow::BorrowMut<T> for aya::maps::hash_map::HashMap<T, K, V> where T: ?core::marker::Sized
  1767. pub fn aya::maps::hash_map::HashMap<T, K, V>::borrow_mut(&mut self) -> &mut T
  1768. impl<T> core::convert::From<T> for aya::maps::hash_map::HashMap<T, K, V>
  1769. pub fn aya::maps::hash_map::HashMap<T, K, V>::from(t: T) -> T
  1770. pub struct aya::maps::LpmTrie<T, K, V>
  1771. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::lpm_trie::LpmTrie<T, K, V>
  1772. 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>
  1773. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::iter(&self) -> aya::maps::MapIter<'_, aya::maps::lpm_trie::Key<K>, V, Self>
  1774. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::keys(&self) -> aya::maps::MapKeys<'_, aya::maps::lpm_trie::Key<K>>
  1775. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::lpm_trie::LpmTrie<T, K, V>
  1776. 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>
  1777. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::lpm_trie::LpmTrie<T, K, V>
  1778. 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>
  1779. 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>
  1780. 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>
  1781. pub type aya::maps::lpm_trie::LpmTrie<&'a aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1782. 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>
  1783. 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>
  1784. pub type aya::maps::lpm_trie::LpmTrie<&'a mut aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1785. 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>
  1786. impl<K: aya::Pod, V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::lpm_trie::LpmTrie<aya::maps::MapData, K, V>
  1787. pub type aya::maps::lpm_trie::LpmTrie<aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1788. pub fn aya::maps::lpm_trie::LpmTrie<aya::maps::MapData, K, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1789. 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>
  1790. 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>
  1791. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::map(&self) -> &aya::maps::MapData
  1792. 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>
  1793. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1794. impl<T, K, V> core::marker::Freeze for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: core::marker::Freeze
  1795. impl<T, K, V> core::marker::Send for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: core::marker::Send, K: core::marker::Send, V: core::marker::Send
  1796. impl<T, K, V> core::marker::Sync for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: core::marker::Sync, K: core::marker::Sync, V: core::marker::Sync
  1797. impl<T, K, V> core::marker::Unpin for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: core::marker::Unpin, K: core::marker::Unpin, V: core::marker::Unpin
  1798. impl<T, K, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: core::panic::unwind_safe::RefUnwindSafe, K: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  1799. impl<T, K, V> core::panic::unwind_safe::UnwindSafe for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: core::panic::unwind_safe::UnwindSafe, K: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  1800. impl<T, U> core::convert::Into<U> for aya::maps::lpm_trie::LpmTrie<T, K, V> where U: core::convert::From<T>
  1801. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::into(self) -> U
  1802. impl<T, U> core::convert::TryFrom<U> for aya::maps::lpm_trie::LpmTrie<T, K, V> where U: core::convert::Into<T>
  1803. pub type aya::maps::lpm_trie::LpmTrie<T, K, V>::Error = core::convert::Infallible
  1804. 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>
  1805. impl<T, U> core::convert::TryInto<U> for aya::maps::lpm_trie::LpmTrie<T, K, V> where U: core::convert::TryFrom<T>
  1806. pub type aya::maps::lpm_trie::LpmTrie<T, K, V>::Error = <U as core::convert::TryFrom<T>>::Error
  1807. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1808. impl<T> core::any::Any for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: 'static + ?core::marker::Sized
  1809. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::type_id(&self) -> core::any::TypeId
  1810. impl<T> core::borrow::Borrow<T> for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: ?core::marker::Sized
  1811. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::borrow(&self) -> &T
  1812. impl<T> core::borrow::BorrowMut<T> for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: ?core::marker::Sized
  1813. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::borrow_mut(&mut self) -> &mut T
  1814. impl<T> core::convert::From<T> for aya::maps::lpm_trie::LpmTrie<T, K, V>
  1815. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::from(t: T) -> T
  1816. pub struct aya::maps::MapData
  1817. impl aya::maps::MapData
  1818. 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>
  1819. pub fn aya::maps::MapData::fd(&self) -> &aya::maps::MapFd
  1820. pub fn aya::maps::MapData::from_fd(fd: std::os::fd::owned::OwnedFd) -> core::result::Result<Self, aya::maps::MapError>
  1821. pub fn aya::maps::MapData::from_id(id: u32) -> core::result::Result<Self, aya::maps::MapError>
  1822. pub fn aya::maps::MapData::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::maps::MapError>
  1823. pub fn aya::maps::MapData::info(&self) -> core::result::Result<aya::maps::MapInfo, aya::maps::MapError>
  1824. pub fn aya::maps::MapData::pin<P: core::convert::AsRef<std::path::Path>>(&self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1825. impl core::fmt::Debug for aya::maps::MapData
  1826. pub fn aya::maps::MapData::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1827. impl core::marker::Freeze for aya::maps::MapData
  1828. impl core::marker::Send for aya::maps::MapData
  1829. impl core::marker::Sync for aya::maps::MapData
  1830. impl core::marker::Unpin for aya::maps::MapData
  1831. impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::MapData
  1832. impl core::panic::unwind_safe::UnwindSafe for aya::maps::MapData
  1833. impl<T, U> core::convert::Into<U> for aya::maps::MapData where U: core::convert::From<T>
  1834. pub fn aya::maps::MapData::into(self) -> U
  1835. impl<T, U> core::convert::TryFrom<U> for aya::maps::MapData where U: core::convert::Into<T>
  1836. pub type aya::maps::MapData::Error = core::convert::Infallible
  1837. pub fn aya::maps::MapData::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1838. impl<T, U> core::convert::TryInto<U> for aya::maps::MapData where U: core::convert::TryFrom<T>
  1839. pub type aya::maps::MapData::Error = <U as core::convert::TryFrom<T>>::Error
  1840. pub fn aya::maps::MapData::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1841. impl<T> core::any::Any for aya::maps::MapData where T: 'static + ?core::marker::Sized
  1842. pub fn aya::maps::MapData::type_id(&self) -> core::any::TypeId
  1843. impl<T> core::borrow::Borrow<T> for aya::maps::MapData where T: ?core::marker::Sized
  1844. pub fn aya::maps::MapData::borrow(&self) -> &T
  1845. impl<T> core::borrow::BorrowMut<T> for aya::maps::MapData where T: ?core::marker::Sized
  1846. pub fn aya::maps::MapData::borrow_mut(&mut self) -> &mut T
  1847. impl<T> core::convert::From<T> for aya::maps::MapData
  1848. pub fn aya::maps::MapData::from(t: T) -> T
  1849. pub struct aya::maps::MapFd
  1850. impl core::fmt::Debug for aya::maps::MapFd
  1851. pub fn aya::maps::MapFd::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1852. impl std::os::fd::owned::AsFd for aya::maps::MapFd
  1853. pub fn aya::maps::MapFd::as_fd(&self) -> std::os::fd::owned::BorrowedFd<'_>
  1854. impl core::marker::Freeze for aya::maps::MapFd
  1855. impl core::marker::Send for aya::maps::MapFd
  1856. impl core::marker::Sync for aya::maps::MapFd
  1857. impl core::marker::Unpin for aya::maps::MapFd
  1858. impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::MapFd
  1859. impl core::panic::unwind_safe::UnwindSafe for aya::maps::MapFd
  1860. impl<T, U> core::convert::Into<U> for aya::maps::MapFd where U: core::convert::From<T>
  1861. pub fn aya::maps::MapFd::into(self) -> U
  1862. impl<T, U> core::convert::TryFrom<U> for aya::maps::MapFd where U: core::convert::Into<T>
  1863. pub type aya::maps::MapFd::Error = core::convert::Infallible
  1864. pub fn aya::maps::MapFd::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1865. impl<T, U> core::convert::TryInto<U> for aya::maps::MapFd where U: core::convert::TryFrom<T>
  1866. pub type aya::maps::MapFd::Error = <U as core::convert::TryFrom<T>>::Error
  1867. pub fn aya::maps::MapFd::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1868. impl<T> core::any::Any for aya::maps::MapFd where T: 'static + ?core::marker::Sized
  1869. pub fn aya::maps::MapFd::type_id(&self) -> core::any::TypeId
  1870. impl<T> core::borrow::Borrow<T> for aya::maps::MapFd where T: ?core::marker::Sized
  1871. pub fn aya::maps::MapFd::borrow(&self) -> &T
  1872. impl<T> core::borrow::BorrowMut<T> for aya::maps::MapFd where T: ?core::marker::Sized
  1873. pub fn aya::maps::MapFd::borrow_mut(&mut self) -> &mut T
  1874. impl<T> core::convert::From<T> for aya::maps::MapFd
  1875. pub fn aya::maps::MapFd::from(t: T) -> T
  1876. pub struct aya::maps::MapInfo(_)
  1877. impl aya::maps::MapInfo
  1878. pub fn aya::maps::MapInfo::fd(&self) -> core::result::Result<aya::maps::MapFd, aya::maps::MapError>
  1879. pub fn aya::maps::MapInfo::from_id(id: u32) -> core::result::Result<Self, aya::maps::MapError>
  1880. pub fn aya::maps::MapInfo::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::maps::MapError>
  1881. pub fn aya::maps::MapInfo::id(&self) -> u32
  1882. pub fn aya::maps::MapInfo::key_size(&self) -> u32
  1883. pub fn aya::maps::MapInfo::map_flags(&self) -> u32
  1884. pub fn aya::maps::MapInfo::map_type(&self) -> core::result::Result<aya::maps::MapType, aya::maps::MapError>
  1885. pub fn aya::maps::MapInfo::max_entries(&self) -> u32
  1886. pub fn aya::maps::MapInfo::name(&self) -> &[u8]
  1887. pub fn aya::maps::MapInfo::name_as_str(&self) -> core::option::Option<&str>
  1888. pub fn aya::maps::MapInfo::value_size(&self) -> u32
  1889. impl core::fmt::Debug for aya::maps::MapInfo
  1890. pub fn aya::maps::MapInfo::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1891. impl core::marker::Freeze for aya::maps::MapInfo
  1892. impl core::marker::Send for aya::maps::MapInfo
  1893. impl core::marker::Sync for aya::maps::MapInfo
  1894. impl core::marker::Unpin for aya::maps::MapInfo
  1895. impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::MapInfo
  1896. impl core::panic::unwind_safe::UnwindSafe for aya::maps::MapInfo
  1897. impl<T, U> core::convert::Into<U> for aya::maps::MapInfo where U: core::convert::From<T>
  1898. pub fn aya::maps::MapInfo::into(self) -> U
  1899. impl<T, U> core::convert::TryFrom<U> for aya::maps::MapInfo where U: core::convert::Into<T>
  1900. pub type aya::maps::MapInfo::Error = core::convert::Infallible
  1901. pub fn aya::maps::MapInfo::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1902. impl<T, U> core::convert::TryInto<U> for aya::maps::MapInfo where U: core::convert::TryFrom<T>
  1903. pub type aya::maps::MapInfo::Error = <U as core::convert::TryFrom<T>>::Error
  1904. pub fn aya::maps::MapInfo::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1905. impl<T> core::any::Any for aya::maps::MapInfo where T: 'static + ?core::marker::Sized
  1906. pub fn aya::maps::MapInfo::type_id(&self) -> core::any::TypeId
  1907. impl<T> core::borrow::Borrow<T> for aya::maps::MapInfo where T: ?core::marker::Sized
  1908. pub fn aya::maps::MapInfo::borrow(&self) -> &T
  1909. impl<T> core::borrow::BorrowMut<T> for aya::maps::MapInfo where T: ?core::marker::Sized
  1910. pub fn aya::maps::MapInfo::borrow_mut(&mut self) -> &mut T
  1911. impl<T> core::convert::From<T> for aya::maps::MapInfo
  1912. pub fn aya::maps::MapInfo::from(t: T) -> T
  1913. pub struct aya::maps::MapIter<'coll, K: aya::Pod, V, I: aya::maps::IterableMap<K, V>>
  1914. impl<K: aya::Pod, V, I: aya::maps::IterableMap<K, V>> core::iter::traits::iterator::Iterator for aya::maps::MapIter<'_, K, V, I>
  1915. pub type aya::maps::MapIter<'_, K, V, I>::Item = core::result::Result<(K, V), aya::maps::MapError>
  1916. pub fn aya::maps::MapIter<'_, K, V, I>::next(&mut self) -> core::option::Option<Self::Item>
  1917. impl<'coll, K, V, I> core::marker::Freeze for aya::maps::MapIter<'coll, K, V, I> where K: core::marker::Freeze
  1918. impl<'coll, K, V, I> core::marker::Send for aya::maps::MapIter<'coll, K, V, I> where I: core::marker::Sync, V: core::marker::Send, K: core::marker::Send
  1919. impl<'coll, K, V, I> core::marker::Sync for aya::maps::MapIter<'coll, K, V, I> where I: core::marker::Sync, V: core::marker::Sync, K: core::marker::Sync
  1920. impl<'coll, K, V, I> core::marker::Unpin for aya::maps::MapIter<'coll, K, V, I> where V: core::marker::Unpin, K: core::marker::Unpin
  1921. 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, V: core::panic::unwind_safe::RefUnwindSafe, K: core::panic::unwind_safe::RefUnwindSafe
  1922. 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, V: core::panic::unwind_safe::UnwindSafe, K: core::panic::unwind_safe::UnwindSafe
  1923. impl<I> core::iter::traits::collect::IntoIterator for aya::maps::MapIter<'coll, K, V, I> where I: core::iter::traits::iterator::Iterator
  1924. pub type aya::maps::MapIter<'coll, K, V, I>::IntoIter = I
  1925. pub type aya::maps::MapIter<'coll, K, V, I>::Item = <I as core::iter::traits::iterator::Iterator>::Item
  1926. pub fn aya::maps::MapIter<'coll, K, V, I>::into_iter(self) -> I
  1927. impl<T, U> core::convert::Into<U> for aya::maps::MapIter<'coll, K, V, I> where U: core::convert::From<T>
  1928. pub fn aya::maps::MapIter<'coll, K, V, I>::into(self) -> U
  1929. impl<T, U> core::convert::TryFrom<U> for aya::maps::MapIter<'coll, K, V, I> where U: core::convert::Into<T>
  1930. pub type aya::maps::MapIter<'coll, K, V, I>::Error = core::convert::Infallible
  1931. pub fn aya::maps::MapIter<'coll, K, V, I>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1932. impl<T, U> core::convert::TryInto<U> for aya::maps::MapIter<'coll, K, V, I> where U: core::convert::TryFrom<T>
  1933. pub type aya::maps::MapIter<'coll, K, V, I>::Error = <U as core::convert::TryFrom<T>>::Error
  1934. pub fn aya::maps::MapIter<'coll, K, V, I>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1935. impl<T> core::any::Any for aya::maps::MapIter<'coll, K, V, I> where T: 'static + ?core::marker::Sized
  1936. pub fn aya::maps::MapIter<'coll, K, V, I>::type_id(&self) -> core::any::TypeId
  1937. impl<T> core::borrow::Borrow<T> for aya::maps::MapIter<'coll, K, V, I> where T: ?core::marker::Sized
  1938. pub fn aya::maps::MapIter<'coll, K, V, I>::borrow(&self) -> &T
  1939. impl<T> core::borrow::BorrowMut<T> for aya::maps::MapIter<'coll, K, V, I> where T: ?core::marker::Sized
  1940. pub fn aya::maps::MapIter<'coll, K, V, I>::borrow_mut(&mut self) -> &mut T
  1941. impl<T> core::convert::From<T> for aya::maps::MapIter<'coll, K, V, I>
  1942. pub fn aya::maps::MapIter<'coll, K, V, I>::from(t: T) -> T
  1943. pub struct aya::maps::MapKeys<'coll, K: aya::Pod>
  1944. impl<K: aya::Pod> core::iter::traits::iterator::Iterator for aya::maps::MapKeys<'_, K>
  1945. pub type aya::maps::MapKeys<'_, K>::Item = core::result::Result<K, aya::maps::MapError>
  1946. pub fn aya::maps::MapKeys<'_, K>::next(&mut self) -> core::option::Option<core::result::Result<K, aya::maps::MapError>>
  1947. impl<'coll, K> core::marker::Freeze for aya::maps::MapKeys<'coll, K> where K: core::marker::Freeze
  1948. impl<'coll, K> core::marker::Send for aya::maps::MapKeys<'coll, K> where K: core::marker::Send
  1949. impl<'coll, K> core::marker::Sync for aya::maps::MapKeys<'coll, K> where K: core::marker::Sync
  1950. impl<'coll, K> core::marker::Unpin for aya::maps::MapKeys<'coll, K> where K: core::marker::Unpin
  1951. impl<'coll, K> core::panic::unwind_safe::RefUnwindSafe for aya::maps::MapKeys<'coll, K> where K: core::panic::unwind_safe::RefUnwindSafe
  1952. impl<'coll, K> core::panic::unwind_safe::UnwindSafe for aya::maps::MapKeys<'coll, K> where K: core::panic::unwind_safe::UnwindSafe
  1953. impl<I> core::iter::traits::collect::IntoIterator for aya::maps::MapKeys<'coll, K> where I: core::iter::traits::iterator::Iterator
  1954. pub type aya::maps::MapKeys<'coll, K>::IntoIter = I
  1955. pub type aya::maps::MapKeys<'coll, K>::Item = <I as core::iter::traits::iterator::Iterator>::Item
  1956. pub fn aya::maps::MapKeys<'coll, K>::into_iter(self) -> I
  1957. impl<T, U> core::convert::Into<U> for aya::maps::MapKeys<'coll, K> where U: core::convert::From<T>
  1958. pub fn aya::maps::MapKeys<'coll, K>::into(self) -> U
  1959. impl<T, U> core::convert::TryFrom<U> for aya::maps::MapKeys<'coll, K> where U: core::convert::Into<T>
  1960. pub type aya::maps::MapKeys<'coll, K>::Error = core::convert::Infallible
  1961. pub fn aya::maps::MapKeys<'coll, K>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1962. impl<T, U> core::convert::TryInto<U> for aya::maps::MapKeys<'coll, K> where U: core::convert::TryFrom<T>
  1963. pub type aya::maps::MapKeys<'coll, K>::Error = <U as core::convert::TryFrom<T>>::Error
  1964. pub fn aya::maps::MapKeys<'coll, K>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1965. impl<T> core::any::Any for aya::maps::MapKeys<'coll, K> where T: 'static + ?core::marker::Sized
  1966. pub fn aya::maps::MapKeys<'coll, K>::type_id(&self) -> core::any::TypeId
  1967. impl<T> core::borrow::Borrow<T> for aya::maps::MapKeys<'coll, K> where T: ?core::marker::Sized
  1968. pub fn aya::maps::MapKeys<'coll, K>::borrow(&self) -> &T
  1969. impl<T> core::borrow::BorrowMut<T> for aya::maps::MapKeys<'coll, K> where T: ?core::marker::Sized
  1970. pub fn aya::maps::MapKeys<'coll, K>::borrow_mut(&mut self) -> &mut T
  1971. impl<T> core::convert::From<T> for aya::maps::MapKeys<'coll, K>
  1972. pub fn aya::maps::MapKeys<'coll, K>::from(t: T) -> T
  1973. pub struct aya::maps::PerCpuArray<T, V: aya::Pod>
  1974. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::PerCpuArray<T, V>
  1975. pub fn aya::maps::PerCpuArray<T, V>::get(&self, index: &u32, flags: u64) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  1976. 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>> + '_
  1977. pub fn aya::maps::PerCpuArray<T, V>::len(&self) -> u32
  1978. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::PerCpuArray<T, V>
  1979. pub fn aya::maps::PerCpuArray<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1980. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::PerCpuArray<T, V>
  1981. 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>
  1982. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::PerCpuArray<&'a aya::maps::MapData, V>
  1983. pub type aya::maps::PerCpuArray<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  1984. pub fn aya::maps::PerCpuArray<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1985. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V>
  1986. pub type aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  1987. 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>
  1988. 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>
  1989. pub fn aya::maps::PerCpuArray<T, V>::get(&self, index: &u32) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  1990. pub fn aya::maps::PerCpuArray<T, V>::map(&self) -> &aya::maps::MapData
  1991. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::PerCpuArray<aya::maps::MapData, V>
  1992. pub type aya::maps::PerCpuArray<aya::maps::MapData, V>::Error = aya::maps::MapError
  1993. pub fn aya::maps::PerCpuArray<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1994. impl<T, V> core::marker::Freeze for aya::maps::PerCpuArray<T, V> where T: core::marker::Freeze
  1995. impl<T, V> core::marker::Send for aya::maps::PerCpuArray<T, V> where T: core::marker::Send, V: core::marker::Send
  1996. impl<T, V> core::marker::Sync for aya::maps::PerCpuArray<T, V> where T: core::marker::Sync, V: core::marker::Sync
  1997. impl<T, V> core::marker::Unpin for aya::maps::PerCpuArray<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  1998. 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
  1999. 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
  2000. impl<T, U> core::convert::Into<U> for aya::maps::PerCpuArray<T, V> where U: core::convert::From<T>
  2001. pub fn aya::maps::PerCpuArray<T, V>::into(self) -> U
  2002. impl<T, U> core::convert::TryFrom<U> for aya::maps::PerCpuArray<T, V> where U: core::convert::Into<T>
  2003. pub type aya::maps::PerCpuArray<T, V>::Error = core::convert::Infallible
  2004. pub fn aya::maps::PerCpuArray<T, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2005. impl<T, U> core::convert::TryInto<U> for aya::maps::PerCpuArray<T, V> where U: core::convert::TryFrom<T>
  2006. pub type aya::maps::PerCpuArray<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  2007. pub fn aya::maps::PerCpuArray<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2008. impl<T> core::any::Any for aya::maps::PerCpuArray<T, V> where T: 'static + ?core::marker::Sized
  2009. pub fn aya::maps::PerCpuArray<T, V>::type_id(&self) -> core::any::TypeId
  2010. impl<T> core::borrow::Borrow<T> for aya::maps::PerCpuArray<T, V> where T: ?core::marker::Sized
  2011. pub fn aya::maps::PerCpuArray<T, V>::borrow(&self) -> &T
  2012. impl<T> core::borrow::BorrowMut<T> for aya::maps::PerCpuArray<T, V> where T: ?core::marker::Sized
  2013. pub fn aya::maps::PerCpuArray<T, V>::borrow_mut(&mut self) -> &mut T
  2014. impl<T> core::convert::From<T> for aya::maps::PerCpuArray<T, V>
  2015. pub fn aya::maps::PerCpuArray<T, V>::from(t: T) -> T
  2016. pub struct aya::maps::PerCpuHashMap<T, K: aya::Pod, V: aya::Pod>
  2017. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::PerCpuHashMap<T, K, V>
  2018. 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>
  2019. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::iter(&self) -> aya::maps::MapIter<'_, K, aya::maps::PerCpuValues<V>, Self>
  2020. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::keys(&self) -> aya::maps::MapKeys<'_, K>
  2021. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::PerCpuHashMap<T, K, V>
  2022. 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>
  2023. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::PerCpuHashMap<T, K, V>
  2024. 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>
  2025. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::remove(&mut self, key: &K) -> core::result::Result<(), aya::maps::MapError>
  2026. 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>
  2027. pub type aya::maps::hash_map::PerCpuHashMap<&'a aya::maps::MapData, K, V>::Error = aya::maps::MapError
  2028. 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>
  2029. 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>
  2030. pub type aya::maps::hash_map::PerCpuHashMap<&'a mut aya::maps::MapData, K, V>::Error = aya::maps::MapError
  2031. 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>
  2032. impl<K: aya::Pod, V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::hash_map::PerCpuHashMap<aya::maps::MapData, K, V>
  2033. pub type aya::maps::hash_map::PerCpuHashMap<aya::maps::MapData, K, V>::Error = aya::maps::MapError
  2034. pub fn aya::maps::hash_map::PerCpuHashMap<aya::maps::MapData, K, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2035. 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>
  2036. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::get(&self, key: &K) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  2037. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::map(&self) -> &aya::maps::MapData
  2038. impl<T, K, V> core::marker::Freeze for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: core::marker::Freeze
  2039. impl<T, K, V> core::marker::Send for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: core::marker::Send, K: core::marker::Send, V: core::marker::Send
  2040. impl<T, K, V> core::marker::Sync for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: core::marker::Sync, K: core::marker::Sync, V: core::marker::Sync
  2041. impl<T, K, V> core::marker::Unpin for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: core::marker::Unpin, K: core::marker::Unpin, V: core::marker::Unpin
  2042. impl<T, K, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: core::panic::unwind_safe::RefUnwindSafe, K: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  2043. impl<T, K, V> core::panic::unwind_safe::UnwindSafe for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: core::panic::unwind_safe::UnwindSafe, K: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  2044. impl<T, U> core::convert::Into<U> for aya::maps::hash_map::PerCpuHashMap<T, K, V> where U: core::convert::From<T>
  2045. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::into(self) -> U
  2046. impl<T, U> core::convert::TryFrom<U> for aya::maps::hash_map::PerCpuHashMap<T, K, V> where U: core::convert::Into<T>
  2047. pub type aya::maps::hash_map::PerCpuHashMap<T, K, V>::Error = core::convert::Infallible
  2048. 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>
  2049. impl<T, U> core::convert::TryInto<U> for aya::maps::hash_map::PerCpuHashMap<T, K, V> where U: core::convert::TryFrom<T>
  2050. pub type aya::maps::hash_map::PerCpuHashMap<T, K, V>::Error = <U as core::convert::TryFrom<T>>::Error
  2051. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2052. impl<T> core::any::Any for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: 'static + ?core::marker::Sized
  2053. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::type_id(&self) -> core::any::TypeId
  2054. impl<T> core::borrow::Borrow<T> for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: ?core::marker::Sized
  2055. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::borrow(&self) -> &T
  2056. impl<T> core::borrow::BorrowMut<T> for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: ?core::marker::Sized
  2057. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::borrow_mut(&mut self) -> &mut T
  2058. impl<T> core::convert::From<T> for aya::maps::hash_map::PerCpuHashMap<T, K, V>
  2059. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::from(t: T) -> T
  2060. pub struct aya::maps::PerCpuValues<T: aya::Pod>
  2061. impl<T: aya::Pod> core::convert::TryFrom<alloc::vec::Vec<T>> for aya::maps::PerCpuValues<T>
  2062. pub type aya::maps::PerCpuValues<T>::Error = std::io::error::Error
  2063. pub fn aya::maps::PerCpuValues<T>::try_from(values: alloc::vec::Vec<T>) -> core::result::Result<Self, Self::Error>
  2064. impl<T: aya::Pod> core::ops::deref::Deref for aya::maps::PerCpuValues<T>
  2065. pub type aya::maps::PerCpuValues<T>::Target = alloc::boxed::Box<[T]>
  2066. pub fn aya::maps::PerCpuValues<T>::deref(&self) -> &Self::Target
  2067. 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>
  2068. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::get(&self, key: &K) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  2069. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::map(&self) -> &aya::maps::MapData
  2070. 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>
  2071. pub fn aya::maps::PerCpuArray<T, V>::get(&self, index: &u32) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  2072. pub fn aya::maps::PerCpuArray<T, V>::map(&self) -> &aya::maps::MapData
  2073. impl<T: core::fmt::Debug + aya::Pod> core::fmt::Debug for aya::maps::PerCpuValues<T>
  2074. pub fn aya::maps::PerCpuValues<T>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2075. impl<T> core::marker::Freeze for aya::maps::PerCpuValues<T>
  2076. impl<T> core::marker::Send for aya::maps::PerCpuValues<T> where T: core::marker::Send
  2077. impl<T> core::marker::Sync for aya::maps::PerCpuValues<T> where T: core::marker::Sync
  2078. impl<T> core::marker::Unpin for aya::maps::PerCpuValues<T>
  2079. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::PerCpuValues<T> where T: core::panic::unwind_safe::RefUnwindSafe
  2080. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::PerCpuValues<T> where T: core::panic::unwind_safe::UnwindSafe
  2081. impl<P, T> core::ops::deref::Receiver for aya::maps::PerCpuValues<T> where P: core::ops::deref::Deref<Target = T> + ?core::marker::Sized, T: ?core::marker::Sized
  2082. pub type aya::maps::PerCpuValues<T>::Target = T
  2083. impl<T, U> core::convert::Into<U> for aya::maps::PerCpuValues<T> where U: core::convert::From<T>
  2084. pub fn aya::maps::PerCpuValues<T>::into(self) -> U
  2085. impl<T, U> core::convert::TryFrom<U> for aya::maps::PerCpuValues<T> where U: core::convert::Into<T>
  2086. pub type aya::maps::PerCpuValues<T>::Error = core::convert::Infallible
  2087. pub fn aya::maps::PerCpuValues<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2088. impl<T, U> core::convert::TryInto<U> for aya::maps::PerCpuValues<T> where U: core::convert::TryFrom<T>
  2089. pub type aya::maps::PerCpuValues<T>::Error = <U as core::convert::TryFrom<T>>::Error
  2090. pub fn aya::maps::PerCpuValues<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2091. impl<T> core::any::Any for aya::maps::PerCpuValues<T> where T: 'static + ?core::marker::Sized
  2092. pub fn aya::maps::PerCpuValues<T>::type_id(&self) -> core::any::TypeId
  2093. impl<T> core::borrow::Borrow<T> for aya::maps::PerCpuValues<T> where T: ?core::marker::Sized
  2094. pub fn aya::maps::PerCpuValues<T>::borrow(&self) -> &T
  2095. impl<T> core::borrow::BorrowMut<T> for aya::maps::PerCpuValues<T> where T: ?core::marker::Sized
  2096. pub fn aya::maps::PerCpuValues<T>::borrow_mut(&mut self) -> &mut T
  2097. impl<T> core::convert::From<T> for aya::maps::PerCpuValues<T>
  2098. pub fn aya::maps::PerCpuValues<T>::from(t: T) -> T
  2099. pub struct aya::maps::PerfEventArray<T>
  2100. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::perf::PerfEventArray<T>
  2101. pub fn aya::maps::perf::PerfEventArray<T>::pin<P: core::convert::AsRef<std::path::Path>>(&self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2102. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::perf::PerfEventArray<T>
  2103. 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>
  2104. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::perf::PerfEventArray<aya::maps::MapData>
  2105. pub type aya::maps::perf::PerfEventArray<aya::maps::MapData>::Error = aya::maps::MapError
  2106. pub fn aya::maps::perf::PerfEventArray<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2107. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>
  2108. pub type aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>::Error = aya::maps::MapError
  2109. pub fn aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2110. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData>
  2111. pub type aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  2112. 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>
  2113. impl<T> core::marker::Freeze for aya::maps::perf::PerfEventArray<T>
  2114. impl<T> core::marker::Send for aya::maps::perf::PerfEventArray<T> where T: core::marker::Sync + core::marker::Send
  2115. impl<T> core::marker::Sync for aya::maps::perf::PerfEventArray<T> where T: core::marker::Sync + core::marker::Send
  2116. impl<T> core::marker::Unpin for aya::maps::perf::PerfEventArray<T>
  2117. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::perf::PerfEventArray<T> where T: core::panic::unwind_safe::RefUnwindSafe
  2118. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::perf::PerfEventArray<T> where T: core::panic::unwind_safe::RefUnwindSafe
  2119. impl<T, U> core::convert::Into<U> for aya::maps::perf::PerfEventArray<T> where U: core::convert::From<T>
  2120. pub fn aya::maps::perf::PerfEventArray<T>::into(self) -> U
  2121. impl<T, U> core::convert::TryFrom<U> for aya::maps::perf::PerfEventArray<T> where U: core::convert::Into<T>
  2122. pub type aya::maps::perf::PerfEventArray<T>::Error = core::convert::Infallible
  2123. pub fn aya::maps::perf::PerfEventArray<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2124. impl<T, U> core::convert::TryInto<U> for aya::maps::perf::PerfEventArray<T> where U: core::convert::TryFrom<T>
  2125. pub type aya::maps::perf::PerfEventArray<T>::Error = <U as core::convert::TryFrom<T>>::Error
  2126. pub fn aya::maps::perf::PerfEventArray<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2127. impl<T> core::any::Any for aya::maps::perf::PerfEventArray<T> where T: 'static + ?core::marker::Sized
  2128. pub fn aya::maps::perf::PerfEventArray<T>::type_id(&self) -> core::any::TypeId
  2129. impl<T> core::borrow::Borrow<T> for aya::maps::perf::PerfEventArray<T> where T: ?core::marker::Sized
  2130. pub fn aya::maps::perf::PerfEventArray<T>::borrow(&self) -> &T
  2131. impl<T> core::borrow::BorrowMut<T> for aya::maps::perf::PerfEventArray<T> where T: ?core::marker::Sized
  2132. pub fn aya::maps::perf::PerfEventArray<T>::borrow_mut(&mut self) -> &mut T
  2133. impl<T> core::convert::From<T> for aya::maps::perf::PerfEventArray<T>
  2134. pub fn aya::maps::perf::PerfEventArray<T>::from(t: T) -> T
  2135. pub struct aya::maps::ProgramArray<T>
  2136. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::ProgramArray<T>
  2137. pub fn aya::maps::ProgramArray<T>::indices(&self) -> aya::maps::MapKeys<'_, u32>
  2138. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::ProgramArray<T>
  2139. pub fn aya::maps::ProgramArray<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2140. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::ProgramArray<T>
  2141. pub fn aya::maps::ProgramArray<T>::clear_index(&mut self, index: &u32) -> core::result::Result<(), aya::maps::MapError>
  2142. pub fn aya::maps::ProgramArray<T>::set(&mut self, index: u32, program: &aya::programs::ProgramFd, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  2143. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::ProgramArray<aya::maps::MapData>
  2144. pub type aya::maps::ProgramArray<aya::maps::MapData>::Error = aya::maps::MapError
  2145. pub fn aya::maps::ProgramArray<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2146. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::ProgramArray<&'a aya::maps::MapData>
  2147. pub type aya::maps::ProgramArray<&'a aya::maps::MapData>::Error = aya::maps::MapError
  2148. pub fn aya::maps::ProgramArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2149. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::ProgramArray<&'a mut aya::maps::MapData>
  2150. pub type aya::maps::ProgramArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  2151. pub fn aya::maps::ProgramArray<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2152. impl<T> core::marker::Freeze for aya::maps::ProgramArray<T> where T: core::marker::Freeze
  2153. impl<T> core::marker::Send for aya::maps::ProgramArray<T> where T: core::marker::Send
  2154. impl<T> core::marker::Sync for aya::maps::ProgramArray<T> where T: core::marker::Sync
  2155. impl<T> core::marker::Unpin for aya::maps::ProgramArray<T> where T: core::marker::Unpin
  2156. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::ProgramArray<T> where T: core::panic::unwind_safe::RefUnwindSafe
  2157. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::ProgramArray<T> where T: core::panic::unwind_safe::UnwindSafe
  2158. impl<T, U> core::convert::Into<U> for aya::maps::ProgramArray<T> where U: core::convert::From<T>
  2159. pub fn aya::maps::ProgramArray<T>::into(self) -> U
  2160. impl<T, U> core::convert::TryFrom<U> for aya::maps::ProgramArray<T> where U: core::convert::Into<T>
  2161. pub type aya::maps::ProgramArray<T>::Error = core::convert::Infallible
  2162. pub fn aya::maps::ProgramArray<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2163. impl<T, U> core::convert::TryInto<U> for aya::maps::ProgramArray<T> where U: core::convert::TryFrom<T>
  2164. pub type aya::maps::ProgramArray<T>::Error = <U as core::convert::TryFrom<T>>::Error
  2165. pub fn aya::maps::ProgramArray<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2166. impl<T> core::any::Any for aya::maps::ProgramArray<T> where T: 'static + ?core::marker::Sized
  2167. pub fn aya::maps::ProgramArray<T>::type_id(&self) -> core::any::TypeId
  2168. impl<T> core::borrow::Borrow<T> for aya::maps::ProgramArray<T> where T: ?core::marker::Sized
  2169. pub fn aya::maps::ProgramArray<T>::borrow(&self) -> &T
  2170. impl<T> core::borrow::BorrowMut<T> for aya::maps::ProgramArray<T> where T: ?core::marker::Sized
  2171. pub fn aya::maps::ProgramArray<T>::borrow_mut(&mut self) -> &mut T
  2172. impl<T> core::convert::From<T> for aya::maps::ProgramArray<T>
  2173. pub fn aya::maps::ProgramArray<T>::from(t: T) -> T
  2174. pub struct aya::maps::Queue<T, V: aya::Pod>
  2175. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::queue::Queue<T, V>
  2176. pub fn aya::maps::queue::Queue<T, V>::capacity(&self) -> u32
  2177. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::queue::Queue<T, V>
  2178. 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>
  2179. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::queue::Queue<T, V>
  2180. pub fn aya::maps::queue::Queue<T, V>::pop(&mut self, flags: u64) -> core::result::Result<V, aya::maps::MapError>
  2181. 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>
  2182. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::queue::Queue<&'a aya::maps::MapData, V>
  2183. pub type aya::maps::queue::Queue<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  2184. pub fn aya::maps::queue::Queue<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2185. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::queue::Queue<&'a mut aya::maps::MapData, V>
  2186. pub type aya::maps::queue::Queue<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  2187. 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>
  2188. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::queue::Queue<aya::maps::MapData, V>
  2189. pub type aya::maps::queue::Queue<aya::maps::MapData, V>::Error = aya::maps::MapError
  2190. pub fn aya::maps::queue::Queue<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2191. impl<T, V> core::marker::Freeze for aya::maps::queue::Queue<T, V> where T: core::marker::Freeze
  2192. impl<T, V> core::marker::Send for aya::maps::queue::Queue<T, V> where T: core::marker::Send, V: core::marker::Send
  2193. impl<T, V> core::marker::Sync for aya::maps::queue::Queue<T, V> where T: core::marker::Sync, V: core::marker::Sync
  2194. impl<T, V> core::marker::Unpin for aya::maps::queue::Queue<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  2195. 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
  2196. 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
  2197. impl<T, U> core::convert::Into<U> for aya::maps::queue::Queue<T, V> where U: core::convert::From<T>
  2198. pub fn aya::maps::queue::Queue<T, V>::into(self) -> U
  2199. impl<T, U> core::convert::TryFrom<U> for aya::maps::queue::Queue<T, V> where U: core::convert::Into<T>
  2200. pub type aya::maps::queue::Queue<T, V>::Error = core::convert::Infallible
  2201. pub fn aya::maps::queue::Queue<T, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2202. impl<T, U> core::convert::TryInto<U> for aya::maps::queue::Queue<T, V> where U: core::convert::TryFrom<T>
  2203. pub type aya::maps::queue::Queue<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  2204. pub fn aya::maps::queue::Queue<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2205. impl<T> core::any::Any for aya::maps::queue::Queue<T, V> where T: 'static + ?core::marker::Sized
  2206. pub fn aya::maps::queue::Queue<T, V>::type_id(&self) -> core::any::TypeId
  2207. impl<T> core::borrow::Borrow<T> for aya::maps::queue::Queue<T, V> where T: ?core::marker::Sized
  2208. pub fn aya::maps::queue::Queue<T, V>::borrow(&self) -> &T
  2209. impl<T> core::borrow::BorrowMut<T> for aya::maps::queue::Queue<T, V> where T: ?core::marker::Sized
  2210. pub fn aya::maps::queue::Queue<T, V>::borrow_mut(&mut self) -> &mut T
  2211. impl<T> core::convert::From<T> for aya::maps::queue::Queue<T, V>
  2212. pub fn aya::maps::queue::Queue<T, V>::from(t: T) -> T
  2213. pub struct aya::maps::RingBuf<T>
  2214. impl<T> aya::maps::ring_buf::RingBuf<T>
  2215. pub fn aya::maps::ring_buf::RingBuf<T>::next(&mut self) -> core::option::Option<aya::maps::ring_buf::RingBufItem<'_>>
  2216. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::ring_buf::RingBuf<aya::maps::MapData>
  2217. pub type aya::maps::ring_buf::RingBuf<aya::maps::MapData>::Error = aya::maps::MapError
  2218. pub fn aya::maps::ring_buf::RingBuf<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2219. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::ring_buf::RingBuf<&'a aya::maps::MapData>
  2220. pub type aya::maps::ring_buf::RingBuf<&'a aya::maps::MapData>::Error = aya::maps::MapError
  2221. pub fn aya::maps::ring_buf::RingBuf<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2222. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::ring_buf::RingBuf<&'a mut aya::maps::MapData>
  2223. pub type aya::maps::ring_buf::RingBuf<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  2224. 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>
  2225. impl<T: core::borrow::Borrow<aya::maps::MapData>> std::os::fd::owned::AsFd for aya::maps::ring_buf::RingBuf<T>
  2226. pub fn aya::maps::ring_buf::RingBuf<T>::as_fd(&self) -> std::os::fd::owned::BorrowedFd<'_>
  2227. impl<T: core::borrow::Borrow<aya::maps::MapData>> std::os::fd::raw::AsRawFd for aya::maps::ring_buf::RingBuf<T>
  2228. pub fn aya::maps::ring_buf::RingBuf<T>::as_raw_fd(&self) -> std::os::fd::raw::RawFd
  2229. impl<T> core::marker::Freeze for aya::maps::ring_buf::RingBuf<T> where T: core::marker::Freeze
  2230. impl<T> core::marker::Send for aya::maps::ring_buf::RingBuf<T> where T: core::marker::Send
  2231. impl<T> core::marker::Sync for aya::maps::ring_buf::RingBuf<T> where T: core::marker::Sync
  2232. impl<T> core::marker::Unpin for aya::maps::ring_buf::RingBuf<T> where T: core::marker::Unpin
  2233. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::ring_buf::RingBuf<T> where T: core::panic::unwind_safe::RefUnwindSafe
  2234. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::ring_buf::RingBuf<T> where T: core::panic::unwind_safe::UnwindSafe
  2235. impl<T, U> core::convert::Into<U> for aya::maps::ring_buf::RingBuf<T> where U: core::convert::From<T>
  2236. pub fn aya::maps::ring_buf::RingBuf<T>::into(self) -> U
  2237. impl<T, U> core::convert::TryFrom<U> for aya::maps::ring_buf::RingBuf<T> where U: core::convert::Into<T>
  2238. pub type aya::maps::ring_buf::RingBuf<T>::Error = core::convert::Infallible
  2239. pub fn aya::maps::ring_buf::RingBuf<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2240. impl<T, U> core::convert::TryInto<U> for aya::maps::ring_buf::RingBuf<T> where U: core::convert::TryFrom<T>
  2241. pub type aya::maps::ring_buf::RingBuf<T>::Error = <U as core::convert::TryFrom<T>>::Error
  2242. pub fn aya::maps::ring_buf::RingBuf<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2243. impl<T> core::any::Any for aya::maps::ring_buf::RingBuf<T> where T: 'static + ?core::marker::Sized
  2244. pub fn aya::maps::ring_buf::RingBuf<T>::type_id(&self) -> core::any::TypeId
  2245. impl<T> core::borrow::Borrow<T> for aya::maps::ring_buf::RingBuf<T> where T: ?core::marker::Sized
  2246. pub fn aya::maps::ring_buf::RingBuf<T>::borrow(&self) -> &T
  2247. impl<T> core::borrow::BorrowMut<T> for aya::maps::ring_buf::RingBuf<T> where T: ?core::marker::Sized
  2248. pub fn aya::maps::ring_buf::RingBuf<T>::borrow_mut(&mut self) -> &mut T
  2249. impl<T> core::convert::From<T> for aya::maps::ring_buf::RingBuf<T>
  2250. pub fn aya::maps::ring_buf::RingBuf<T>::from(t: T) -> T
  2251. pub struct aya::maps::SockHash<T, K>
  2252. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod> aya::maps::SockHash<T, K>
  2253. pub fn aya::maps::SockHash<T, K>::fd(&self) -> &aya::maps::sock::SockMapFd
  2254. pub fn aya::maps::SockHash<T, K>::get(&self, key: &K, flags: u64) -> core::result::Result<std::os::fd::raw::RawFd, aya::maps::MapError>
  2255. pub fn aya::maps::SockHash<T, K>::iter(&self) -> aya::maps::MapIter<'_, K, std::os::fd::raw::RawFd, Self>
  2256. pub fn aya::maps::SockHash<T, K>::keys(&self) -> aya::maps::MapKeys<'_, K>
  2257. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::SockHash<T, V>
  2258. pub fn aya::maps::SockHash<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2259. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, K: aya::Pod> aya::maps::SockHash<T, K>
  2260. 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>
  2261. pub fn aya::maps::SockHash<T, K>::remove(&mut self, key: &K) -> core::result::Result<(), aya::maps::MapError>
  2262. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::SockHash<&'a aya::maps::MapData, V>
  2263. pub type aya::maps::SockHash<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  2264. pub fn aya::maps::SockHash<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2265. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::SockHash<&'a mut aya::maps::MapData, V>
  2266. pub type aya::maps::SockHash<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  2267. 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>
  2268. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod> aya::maps::IterableMap<K, i32> for aya::maps::SockHash<T, K>
  2269. pub fn aya::maps::SockHash<T, K>::get(&self, key: &K) -> core::result::Result<std::os::fd::raw::RawFd, aya::maps::MapError>
  2270. pub fn aya::maps::SockHash<T, K>::map(&self) -> &aya::maps::MapData
  2271. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::SockHash<aya::maps::MapData, V>
  2272. pub type aya::maps::SockHash<aya::maps::MapData, V>::Error = aya::maps::MapError
  2273. pub fn aya::maps::SockHash<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2274. impl<T, K> core::marker::Freeze for aya::maps::SockHash<T, K> where T: core::marker::Freeze
  2275. impl<T, K> core::marker::Send for aya::maps::SockHash<T, K> where T: core::marker::Send, K: core::marker::Send
  2276. impl<T, K> core::marker::Sync for aya::maps::SockHash<T, K> where T: core::marker::Sync, K: core::marker::Sync
  2277. impl<T, K> core::marker::Unpin for aya::maps::SockHash<T, K> where T: core::marker::Unpin, K: core::marker::Unpin
  2278. impl<T, K> core::panic::unwind_safe::RefUnwindSafe for aya::maps::SockHash<T, K> where T: core::panic::unwind_safe::RefUnwindSafe, K: core::panic::unwind_safe::RefUnwindSafe
  2279. impl<T, K> core::panic::unwind_safe::UnwindSafe for aya::maps::SockHash<T, K> where T: core::panic::unwind_safe::UnwindSafe, K: core::panic::unwind_safe::UnwindSafe
  2280. impl<T, U> core::convert::Into<U> for aya::maps::SockHash<T, K> where U: core::convert::From<T>
  2281. pub fn aya::maps::SockHash<T, K>::into(self) -> U
  2282. impl<T, U> core::convert::TryFrom<U> for aya::maps::SockHash<T, K> where U: core::convert::Into<T>
  2283. pub type aya::maps::SockHash<T, K>::Error = core::convert::Infallible
  2284. pub fn aya::maps::SockHash<T, K>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2285. impl<T, U> core::convert::TryInto<U> for aya::maps::SockHash<T, K> where U: core::convert::TryFrom<T>
  2286. pub type aya::maps::SockHash<T, K>::Error = <U as core::convert::TryFrom<T>>::Error
  2287. pub fn aya::maps::SockHash<T, K>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2288. impl<T> core::any::Any for aya::maps::SockHash<T, K> where T: 'static + ?core::marker::Sized
  2289. pub fn aya::maps::SockHash<T, K>::type_id(&self) -> core::any::TypeId
  2290. impl<T> core::borrow::Borrow<T> for aya::maps::SockHash<T, K> where T: ?core::marker::Sized
  2291. pub fn aya::maps::SockHash<T, K>::borrow(&self) -> &T
  2292. impl<T> core::borrow::BorrowMut<T> for aya::maps::SockHash<T, K> where T: ?core::marker::Sized
  2293. pub fn aya::maps::SockHash<T, K>::borrow_mut(&mut self) -> &mut T
  2294. impl<T> core::convert::From<T> for aya::maps::SockHash<T, K>
  2295. pub fn aya::maps::SockHash<T, K>::from(t: T) -> T
  2296. pub struct aya::maps::SockMap<T>
  2297. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::SockMap<T>
  2298. pub fn aya::maps::SockMap<T>::fd(&self) -> &aya::maps::sock::SockMapFd
  2299. pub fn aya::maps::SockMap<T>::indices(&self) -> aya::maps::MapKeys<'_, u32>
  2300. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::SockMap<T>
  2301. pub fn aya::maps::SockMap<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2302. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::SockMap<T>
  2303. pub fn aya::maps::SockMap<T>::clear_index(&mut self, index: &u32) -> core::result::Result<(), aya::maps::MapError>
  2304. 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>
  2305. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::SockMap<aya::maps::MapData>
  2306. pub type aya::maps::SockMap<aya::maps::MapData>::Error = aya::maps::MapError
  2307. pub fn aya::maps::SockMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2308. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::SockMap<&'a aya::maps::MapData>
  2309. pub type aya::maps::SockMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  2310. pub fn aya::maps::SockMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2311. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::SockMap<&'a mut aya::maps::MapData>
  2312. pub type aya::maps::SockMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  2313. pub fn aya::maps::SockMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2314. impl<T> core::marker::Freeze for aya::maps::SockMap<T> where T: core::marker::Freeze
  2315. impl<T> core::marker::Send for aya::maps::SockMap<T> where T: core::marker::Send
  2316. impl<T> core::marker::Sync for aya::maps::SockMap<T> where T: core::marker::Sync
  2317. impl<T> core::marker::Unpin for aya::maps::SockMap<T> where T: core::marker::Unpin
  2318. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::SockMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  2319. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::SockMap<T> where T: core::panic::unwind_safe::UnwindSafe
  2320. impl<T, U> core::convert::Into<U> for aya::maps::SockMap<T> where U: core::convert::From<T>
  2321. pub fn aya::maps::SockMap<T>::into(self) -> U
  2322. impl<T, U> core::convert::TryFrom<U> for aya::maps::SockMap<T> where U: core::convert::Into<T>
  2323. pub type aya::maps::SockMap<T>::Error = core::convert::Infallible
  2324. pub fn aya::maps::SockMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2325. impl<T, U> core::convert::TryInto<U> for aya::maps::SockMap<T> where U: core::convert::TryFrom<T>
  2326. pub type aya::maps::SockMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  2327. pub fn aya::maps::SockMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2328. impl<T> core::any::Any for aya::maps::SockMap<T> where T: 'static + ?core::marker::Sized
  2329. pub fn aya::maps::SockMap<T>::type_id(&self) -> core::any::TypeId
  2330. impl<T> core::borrow::Borrow<T> for aya::maps::SockMap<T> where T: ?core::marker::Sized
  2331. pub fn aya::maps::SockMap<T>::borrow(&self) -> &T
  2332. impl<T> core::borrow::BorrowMut<T> for aya::maps::SockMap<T> where T: ?core::marker::Sized
  2333. pub fn aya::maps::SockMap<T>::borrow_mut(&mut self) -> &mut T
  2334. impl<T> core::convert::From<T> for aya::maps::SockMap<T>
  2335. pub fn aya::maps::SockMap<T>::from(t: T) -> T
  2336. pub struct aya::maps::Stack<T, V: aya::Pod>
  2337. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::stack::Stack<T, V>
  2338. pub fn aya::maps::stack::Stack<T, V>::capacity(&self) -> u32
  2339. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::stack::Stack<T, V>
  2340. 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>
  2341. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::stack::Stack<T, V>
  2342. pub fn aya::maps::stack::Stack<T, V>::pop(&mut self, flags: u64) -> core::result::Result<V, aya::maps::MapError>
  2343. 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>
  2344. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::stack::Stack<&'a aya::maps::MapData, V>
  2345. pub type aya::maps::stack::Stack<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  2346. pub fn aya::maps::stack::Stack<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2347. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::stack::Stack<&'a mut aya::maps::MapData, V>
  2348. pub type aya::maps::stack::Stack<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  2349. 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>
  2350. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::stack::Stack<aya::maps::MapData, V>
  2351. pub type aya::maps::stack::Stack<aya::maps::MapData, V>::Error = aya::maps::MapError
  2352. pub fn aya::maps::stack::Stack<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2353. impl<T, V> core::marker::Freeze for aya::maps::stack::Stack<T, V> where T: core::marker::Freeze
  2354. impl<T, V> core::marker::Send for aya::maps::stack::Stack<T, V> where T: core::marker::Send, V: core::marker::Send
  2355. impl<T, V> core::marker::Sync for aya::maps::stack::Stack<T, V> where T: core::marker::Sync, V: core::marker::Sync
  2356. impl<T, V> core::marker::Unpin for aya::maps::stack::Stack<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  2357. 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
  2358. 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
  2359. impl<T, U> core::convert::Into<U> for aya::maps::stack::Stack<T, V> where U: core::convert::From<T>
  2360. pub fn aya::maps::stack::Stack<T, V>::into(self) -> U
  2361. impl<T, U> core::convert::TryFrom<U> for aya::maps::stack::Stack<T, V> where U: core::convert::Into<T>
  2362. pub type aya::maps::stack::Stack<T, V>::Error = core::convert::Infallible
  2363. pub fn aya::maps::stack::Stack<T, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2364. impl<T, U> core::convert::TryInto<U> for aya::maps::stack::Stack<T, V> where U: core::convert::TryFrom<T>
  2365. pub type aya::maps::stack::Stack<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  2366. pub fn aya::maps::stack::Stack<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2367. impl<T> core::any::Any for aya::maps::stack::Stack<T, V> where T: 'static + ?core::marker::Sized
  2368. pub fn aya::maps::stack::Stack<T, V>::type_id(&self) -> core::any::TypeId
  2369. impl<T> core::borrow::Borrow<T> for aya::maps::stack::Stack<T, V> where T: ?core::marker::Sized
  2370. pub fn aya::maps::stack::Stack<T, V>::borrow(&self) -> &T
  2371. impl<T> core::borrow::BorrowMut<T> for aya::maps::stack::Stack<T, V> where T: ?core::marker::Sized
  2372. pub fn aya::maps::stack::Stack<T, V>::borrow_mut(&mut self) -> &mut T
  2373. impl<T> core::convert::From<T> for aya::maps::stack::Stack<T, V>
  2374. pub fn aya::maps::stack::Stack<T, V>::from(t: T) -> T
  2375. pub struct aya::maps::StackTraceMap<T>
  2376. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::stack_trace::StackTraceMap<T>
  2377. 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>
  2378. pub fn aya::maps::stack_trace::StackTraceMap<T>::iter(&self) -> aya::maps::MapIter<'_, u32, aya::maps::stack_trace::StackTrace, Self>
  2379. pub fn aya::maps::stack_trace::StackTraceMap<T>::stack_ids(&self) -> aya::maps::MapKeys<'_, u32>
  2380. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::stack_trace::StackTraceMap<T>
  2381. 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>
  2382. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::stack_trace::StackTraceMap<T>
  2383. pub fn aya::maps::stack_trace::StackTraceMap<T>::remove(&mut self, stack_id: &u32) -> core::result::Result<(), aya::maps::MapError>
  2384. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<aya::maps::MapData>
  2385. pub type aya::maps::stack_trace::StackTraceMap<aya::maps::MapData>::Error = aya::maps::MapError
  2386. pub fn aya::maps::stack_trace::StackTraceMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2387. impl<'a, T: core::borrow::Borrow<aya::maps::MapData>> core::iter::traits::collect::IntoIterator for &'a aya::maps::stack_trace::StackTraceMap<T>
  2388. 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>>
  2389. pub type &'a aya::maps::stack_trace::StackTraceMap<T>::Item = core::result::Result<(u32, aya::maps::stack_trace::StackTrace), aya::maps::MapError>
  2390. pub fn &'a aya::maps::stack_trace::StackTraceMap<T>::into_iter(self) -> Self::IntoIter
  2391. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>
  2392. pub type aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  2393. pub fn aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2394. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData>
  2395. pub type aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  2396. 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>
  2397. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::IterableMap<u32, aya::maps::stack_trace::StackTrace> for aya::maps::stack_trace::StackTraceMap<T>
  2398. pub fn aya::maps::stack_trace::StackTraceMap<T>::get(&self, index: &u32) -> core::result::Result<aya::maps::stack_trace::StackTrace, aya::maps::MapError>
  2399. pub fn aya::maps::stack_trace::StackTraceMap<T>::map(&self) -> &aya::maps::MapData
  2400. impl<T: core::fmt::Debug> core::fmt::Debug for aya::maps::stack_trace::StackTraceMap<T>
  2401. pub fn aya::maps::stack_trace::StackTraceMap<T>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2402. impl<T> core::marker::Freeze for aya::maps::stack_trace::StackTraceMap<T> where T: core::marker::Freeze
  2403. impl<T> core::marker::Send for aya::maps::stack_trace::StackTraceMap<T> where T: core::marker::Send
  2404. impl<T> core::marker::Sync for aya::maps::stack_trace::StackTraceMap<T> where T: core::marker::Sync
  2405. impl<T> core::marker::Unpin for aya::maps::stack_trace::StackTraceMap<T> where T: core::marker::Unpin
  2406. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::stack_trace::StackTraceMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  2407. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::stack_trace::StackTraceMap<T> where T: core::panic::unwind_safe::UnwindSafe
  2408. impl<T, U> core::convert::Into<U> for aya::maps::stack_trace::StackTraceMap<T> where U: core::convert::From<T>
  2409. pub fn aya::maps::stack_trace::StackTraceMap<T>::into(self) -> U
  2410. impl<T, U> core::convert::TryFrom<U> for aya::maps::stack_trace::StackTraceMap<T> where U: core::convert::Into<T>
  2411. pub type aya::maps::stack_trace::StackTraceMap<T>::Error = core::convert::Infallible
  2412. pub fn aya::maps::stack_trace::StackTraceMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2413. impl<T, U> core::convert::TryInto<U> for aya::maps::stack_trace::StackTraceMap<T> where U: core::convert::TryFrom<T>
  2414. pub type aya::maps::stack_trace::StackTraceMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  2415. pub fn aya::maps::stack_trace::StackTraceMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2416. impl<T> core::any::Any for aya::maps::stack_trace::StackTraceMap<T> where T: 'static + ?core::marker::Sized
  2417. pub fn aya::maps::stack_trace::StackTraceMap<T>::type_id(&self) -> core::any::TypeId
  2418. impl<T> core::borrow::Borrow<T> for aya::maps::stack_trace::StackTraceMap<T> where T: ?core::marker::Sized
  2419. pub fn aya::maps::stack_trace::StackTraceMap<T>::borrow(&self) -> &T
  2420. impl<T> core::borrow::BorrowMut<T> for aya::maps::stack_trace::StackTraceMap<T> where T: ?core::marker::Sized
  2421. pub fn aya::maps::stack_trace::StackTraceMap<T>::borrow_mut(&mut self) -> &mut T
  2422. impl<T> core::convert::From<T> for aya::maps::stack_trace::StackTraceMap<T>
  2423. pub fn aya::maps::stack_trace::StackTraceMap<T>::from(t: T) -> T
  2424. pub struct aya::maps::XskMap<T>
  2425. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::XskMap<T>
  2426. pub fn aya::maps::XskMap<T>::len(&self) -> u32
  2427. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::XskMap<T>
  2428. pub fn aya::maps::XskMap<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2429. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::XskMap<T>
  2430. 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>
  2431. pub fn aya::maps::XskMap<T>::unset(&mut self, index: u32) -> core::result::Result<(), aya::maps::MapError>
  2432. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::XskMap<aya::maps::MapData>
  2433. pub type aya::maps::XskMap<aya::maps::MapData>::Error = aya::maps::MapError
  2434. pub fn aya::maps::XskMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2435. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::XskMap<&'a aya::maps::MapData>
  2436. pub type aya::maps::XskMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  2437. pub fn aya::maps::XskMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2438. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::XskMap<&'a mut aya::maps::MapData>
  2439. pub type aya::maps::XskMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  2440. pub fn aya::maps::XskMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2441. impl<T> core::marker::Freeze for aya::maps::XskMap<T> where T: core::marker::Freeze
  2442. impl<T> core::marker::Send for aya::maps::XskMap<T> where T: core::marker::Send
  2443. impl<T> core::marker::Sync for aya::maps::XskMap<T> where T: core::marker::Sync
  2444. impl<T> core::marker::Unpin for aya::maps::XskMap<T> where T: core::marker::Unpin
  2445. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::XskMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  2446. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::XskMap<T> where T: core::panic::unwind_safe::UnwindSafe
  2447. impl<T, U> core::convert::Into<U> for aya::maps::XskMap<T> where U: core::convert::From<T>
  2448. pub fn aya::maps::XskMap<T>::into(self) -> U
  2449. impl<T, U> core::convert::TryFrom<U> for aya::maps::XskMap<T> where U: core::convert::Into<T>
  2450. pub type aya::maps::XskMap<T>::Error = core::convert::Infallible
  2451. pub fn aya::maps::XskMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2452. impl<T, U> core::convert::TryInto<U> for aya::maps::XskMap<T> where U: core::convert::TryFrom<T>
  2453. pub type aya::maps::XskMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  2454. pub fn aya::maps::XskMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2455. impl<T> core::any::Any for aya::maps::XskMap<T> where T: 'static + ?core::marker::Sized
  2456. pub fn aya::maps::XskMap<T>::type_id(&self) -> core::any::TypeId
  2457. impl<T> core::borrow::Borrow<T> for aya::maps::XskMap<T> where T: ?core::marker::Sized
  2458. pub fn aya::maps::XskMap<T>::borrow(&self) -> &T
  2459. impl<T> core::borrow::BorrowMut<T> for aya::maps::XskMap<T> where T: ?core::marker::Sized
  2460. pub fn aya::maps::XskMap<T>::borrow_mut(&mut self) -> &mut T
  2461. impl<T> core::convert::From<T> for aya::maps::XskMap<T>
  2462. pub fn aya::maps::XskMap<T>::from(t: T) -> T
  2463. pub trait aya::maps::IterableMap<K: aya::Pod, V>
  2464. pub fn aya::maps::IterableMap::get(&self, key: &K) -> core::result::Result<V, aya::maps::MapError>
  2465. pub fn aya::maps::IterableMap::map(&self) -> &aya::maps::MapData
  2466. 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>
  2467. pub fn aya::maps::hash_map::HashMap<T, K, V>::get(&self, key: &K) -> core::result::Result<V, aya::maps::MapError>
  2468. pub fn aya::maps::hash_map::HashMap<T, K, V>::map(&self) -> &aya::maps::MapData
  2469. 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>
  2470. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::get(&self, key: &K) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  2471. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::map(&self) -> &aya::maps::MapData
  2472. 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>
  2473. 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>
  2474. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::map(&self) -> &aya::maps::MapData
  2475. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod> aya::maps::IterableMap<K, i32> for aya::maps::SockHash<T, K>
  2476. pub fn aya::maps::SockHash<T, K>::get(&self, key: &K) -> core::result::Result<std::os::fd::raw::RawFd, aya::maps::MapError>
  2477. pub fn aya::maps::SockHash<T, K>::map(&self) -> &aya::maps::MapData
  2478. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::IterableMap<u32, V> for aya::maps::array::Array<T, V>
  2479. pub fn aya::maps::array::Array<T, V>::get(&self, index: &u32) -> core::result::Result<V, aya::maps::MapError>
  2480. pub fn aya::maps::array::Array<T, V>::map(&self) -> &aya::maps::MapData
  2481. 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>
  2482. pub fn aya::maps::PerCpuArray<T, V>::get(&self, index: &u32) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  2483. pub fn aya::maps::PerCpuArray<T, V>::map(&self) -> &aya::maps::MapData
  2484. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::IterableMap<u32, aya::maps::stack_trace::StackTrace> for aya::maps::stack_trace::StackTraceMap<T>
  2485. pub fn aya::maps::stack_trace::StackTraceMap<T>::get(&self, index: &u32) -> core::result::Result<aya::maps::stack_trace::StackTrace, aya::maps::MapError>
  2486. pub fn aya::maps::stack_trace::StackTraceMap<T>::map(&self) -> &aya::maps::MapData
  2487. pub fn aya::maps::loaded_maps() -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<aya::maps::MapInfo, aya::maps::MapError>>
  2488. pub mod aya::pin
  2489. pub enum aya::pin::PinError
  2490. pub aya::pin::PinError::InvalidPinPath
  2491. pub aya::pin::PinError::InvalidPinPath::error: alloc::ffi::c_str::NulError
  2492. pub aya::pin::PinError::InvalidPinPath::path: std::path::PathBuf
  2493. pub aya::pin::PinError::NoFd
  2494. pub aya::pin::PinError::NoFd::name: alloc::string::String
  2495. pub aya::pin::PinError::SyscallError(aya::sys::SyscallError)
  2496. impl core::convert::From<aya::sys::SyscallError> for aya::pin::PinError
  2497. pub fn aya::pin::PinError::from(source: aya::sys::SyscallError) -> Self
  2498. impl core::error::Error for aya::pin::PinError
  2499. pub fn aya::pin::PinError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  2500. impl core::fmt::Debug for aya::pin::PinError
  2501. pub fn aya::pin::PinError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2502. impl core::fmt::Display for aya::pin::PinError
  2503. pub fn aya::pin::PinError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2504. impl core::marker::Freeze for aya::pin::PinError
  2505. impl core::marker::Send for aya::pin::PinError
  2506. impl core::marker::Sync for aya::pin::PinError
  2507. impl core::marker::Unpin for aya::pin::PinError
  2508. impl !core::panic::unwind_safe::RefUnwindSafe for aya::pin::PinError
  2509. impl !core::panic::unwind_safe::UnwindSafe for aya::pin::PinError
  2510. impl<T, U> core::convert::Into<U> for aya::pin::PinError where U: core::convert::From<T>
  2511. pub fn aya::pin::PinError::into(self) -> U
  2512. impl<T, U> core::convert::TryFrom<U> for aya::pin::PinError where U: core::convert::Into<T>
  2513. pub type aya::pin::PinError::Error = core::convert::Infallible
  2514. pub fn aya::pin::PinError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2515. impl<T, U> core::convert::TryInto<U> for aya::pin::PinError where U: core::convert::TryFrom<T>
  2516. pub type aya::pin::PinError::Error = <U as core::convert::TryFrom<T>>::Error
  2517. pub fn aya::pin::PinError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2518. impl<T> alloc::string::ToString for aya::pin::PinError where T: core::fmt::Display + ?core::marker::Sized
  2519. pub fn aya::pin::PinError::to_string(&self) -> alloc::string::String
  2520. impl<T> core::any::Any for aya::pin::PinError where T: 'static + ?core::marker::Sized
  2521. pub fn aya::pin::PinError::type_id(&self) -> core::any::TypeId
  2522. impl<T> core::borrow::Borrow<T> for aya::pin::PinError where T: ?core::marker::Sized
  2523. pub fn aya::pin::PinError::borrow(&self) -> &T
  2524. impl<T> core::borrow::BorrowMut<T> for aya::pin::PinError where T: ?core::marker::Sized
  2525. pub fn aya::pin::PinError::borrow_mut(&mut self) -> &mut T
  2526. impl<T> core::convert::From<T> for aya::pin::PinError
  2527. pub fn aya::pin::PinError::from(t: T) -> T
  2528. pub mod aya::programs
  2529. pub use aya::programs::CgroupSockAddrAttachType
  2530. pub use aya::programs::CgroupSockAttachType
  2531. pub use aya::programs::CgroupSockoptAttachType
  2532. pub mod aya::programs::cgroup_device
  2533. pub struct aya::programs::cgroup_device::CgroupDevice
  2534. impl aya::programs::cgroup_device::CgroupDevice
  2535. pub const aya::programs::cgroup_device::CgroupDevice::PROGRAM_TYPE: aya::programs::ProgramType
  2536. pub fn aya::programs::cgroup_device::CgroupDevice::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T, mode: aya::programs::links::CgroupAttachMode) -> core::result::Result<aya::programs::cgroup_device::CgroupDeviceLinkId, aya::programs::ProgramError>
  2537. pub fn aya::programs::cgroup_device::CgroupDevice::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  2538. pub fn aya::programs::cgroup_device::CgroupDevice::query<T: std::os::fd::owned::AsFd>(target_fd: T) -> core::result::Result<alloc::vec::Vec<aya::programs::cgroup_device::CgroupDeviceLink>, aya::programs::ProgramError>
  2539. impl aya::programs::cgroup_device::CgroupDevice
  2540. pub fn aya::programs::cgroup_device::CgroupDevice::detach(&mut self, link_id: aya::programs::cgroup_device::CgroupDeviceLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  2541. 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>
  2542. impl aya::programs::cgroup_device::CgroupDevice
  2543. pub fn aya::programs::cgroup_device::CgroupDevice::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  2544. impl aya::programs::cgroup_device::CgroupDevice
  2545. 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>
  2546. impl aya::programs::cgroup_device::CgroupDevice
  2547. pub fn aya::programs::cgroup_device::CgroupDevice::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  2548. impl aya::programs::cgroup_device::CgroupDevice
  2549. pub fn aya::programs::cgroup_device::CgroupDevice::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  2550. impl aya::programs::cgroup_device::CgroupDevice
  2551. 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>
  2552. pub fn aya::programs::cgroup_device::CgroupDevice::unpin(self) -> core::result::Result<(), std::io::error::Error>
  2553. impl aya::programs::cgroup_device::CgroupDevice
  2554. pub fn aya::programs::cgroup_device::CgroupDevice::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  2555. impl core::fmt::Debug for aya::programs::cgroup_device::CgroupDevice
  2556. pub fn aya::programs::cgroup_device::CgroupDevice::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2557. impl core::ops::drop::Drop for aya::programs::cgroup_device::CgroupDevice
  2558. pub fn aya::programs::cgroup_device::CgroupDevice::drop(&mut self)
  2559. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_device::CgroupDevice
  2560. pub type &'a aya::programs::cgroup_device::CgroupDevice::Error = aya::programs::ProgramError
  2561. 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>
  2562. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_device::CgroupDevice
  2563. pub type &'a mut aya::programs::cgroup_device::CgroupDevice::Error = aya::programs::ProgramError
  2564. 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>
  2565. impl core::marker::Freeze for aya::programs::cgroup_device::CgroupDevice
  2566. impl core::marker::Send for aya::programs::cgroup_device::CgroupDevice
  2567. impl core::marker::Sync for aya::programs::cgroup_device::CgroupDevice
  2568. impl core::marker::Unpin for aya::programs::cgroup_device::CgroupDevice
  2569. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_device::CgroupDevice
  2570. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_device::CgroupDevice
  2571. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_device::CgroupDevice where U: core::convert::From<T>
  2572. pub fn aya::programs::cgroup_device::CgroupDevice::into(self) -> U
  2573. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_device::CgroupDevice where U: core::convert::Into<T>
  2574. pub type aya::programs::cgroup_device::CgroupDevice::Error = core::convert::Infallible
  2575. pub fn aya::programs::cgroup_device::CgroupDevice::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2576. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_device::CgroupDevice where U: core::convert::TryFrom<T>
  2577. pub type aya::programs::cgroup_device::CgroupDevice::Error = <U as core::convert::TryFrom<T>>::Error
  2578. pub fn aya::programs::cgroup_device::CgroupDevice::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2579. impl<T> core::any::Any for aya::programs::cgroup_device::CgroupDevice where T: 'static + ?core::marker::Sized
  2580. pub fn aya::programs::cgroup_device::CgroupDevice::type_id(&self) -> core::any::TypeId
  2581. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_device::CgroupDevice where T: ?core::marker::Sized
  2582. pub fn aya::programs::cgroup_device::CgroupDevice::borrow(&self) -> &T
  2583. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_device::CgroupDevice where T: ?core::marker::Sized
  2584. pub fn aya::programs::cgroup_device::CgroupDevice::borrow_mut(&mut self) -> &mut T
  2585. impl<T> core::convert::From<T> for aya::programs::cgroup_device::CgroupDevice
  2586. pub fn aya::programs::cgroup_device::CgroupDevice::from(t: T) -> T
  2587. pub struct aya::programs::cgroup_device::CgroupDeviceLink(_)
  2588. impl aya::programs::links::Link for aya::programs::cgroup_device::CgroupDeviceLink
  2589. pub type aya::programs::cgroup_device::CgroupDeviceLink::Id = aya::programs::cgroup_device::CgroupDeviceLinkId
  2590. pub fn aya::programs::cgroup_device::CgroupDeviceLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  2591. pub fn aya::programs::cgroup_device::CgroupDeviceLink::id(&self) -> Self::Id
  2592. impl core::cmp::Eq for aya::programs::cgroup_device::CgroupDeviceLink
  2593. impl core::cmp::PartialEq for aya::programs::cgroup_device::CgroupDeviceLink
  2594. pub fn aya::programs::cgroup_device::CgroupDeviceLink::eq(&self, other: &Self) -> bool
  2595. impl core::fmt::Debug for aya::programs::cgroup_device::CgroupDeviceLink
  2596. pub fn aya::programs::cgroup_device::CgroupDeviceLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2597. impl core::hash::Hash for aya::programs::cgroup_device::CgroupDeviceLink
  2598. pub fn aya::programs::cgroup_device::CgroupDeviceLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  2599. impl core::ops::drop::Drop for aya::programs::cgroup_device::CgroupDeviceLink
  2600. pub fn aya::programs::cgroup_device::CgroupDeviceLink::drop(&mut self)
  2601. impl equivalent::Equivalent<aya::programs::cgroup_device::CgroupDeviceLink> for aya::programs::cgroup_device::CgroupDeviceLinkId
  2602. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::equivalent(&self, key: &aya::programs::cgroup_device::CgroupDeviceLink) -> bool
  2603. impl core::marker::Freeze for aya::programs::cgroup_device::CgroupDeviceLink
  2604. impl core::marker::Send for aya::programs::cgroup_device::CgroupDeviceLink
  2605. impl core::marker::Sync for aya::programs::cgroup_device::CgroupDeviceLink
  2606. impl core::marker::Unpin for aya::programs::cgroup_device::CgroupDeviceLink
  2607. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_device::CgroupDeviceLink
  2608. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_device::CgroupDeviceLink
  2609. impl<Q, K> equivalent::Equivalent<K> for aya::programs::cgroup_device::CgroupDeviceLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  2610. pub fn aya::programs::cgroup_device::CgroupDeviceLink::equivalent(&self, key: &K) -> bool
  2611. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_device::CgroupDeviceLink where U: core::convert::From<T>
  2612. pub fn aya::programs::cgroup_device::CgroupDeviceLink::into(self) -> U
  2613. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_device::CgroupDeviceLink where U: core::convert::Into<T>
  2614. pub type aya::programs::cgroup_device::CgroupDeviceLink::Error = core::convert::Infallible
  2615. pub fn aya::programs::cgroup_device::CgroupDeviceLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2616. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_device::CgroupDeviceLink where U: core::convert::TryFrom<T>
  2617. pub type aya::programs::cgroup_device::CgroupDeviceLink::Error = <U as core::convert::TryFrom<T>>::Error
  2618. pub fn aya::programs::cgroup_device::CgroupDeviceLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2619. impl<T> core::any::Any for aya::programs::cgroup_device::CgroupDeviceLink where T: 'static + ?core::marker::Sized
  2620. pub fn aya::programs::cgroup_device::CgroupDeviceLink::type_id(&self) -> core::any::TypeId
  2621. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_device::CgroupDeviceLink where T: ?core::marker::Sized
  2622. pub fn aya::programs::cgroup_device::CgroupDeviceLink::borrow(&self) -> &T
  2623. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_device::CgroupDeviceLink where T: ?core::marker::Sized
  2624. pub fn aya::programs::cgroup_device::CgroupDeviceLink::borrow_mut(&mut self) -> &mut T
  2625. impl<T> core::convert::From<T> for aya::programs::cgroup_device::CgroupDeviceLink
  2626. pub fn aya::programs::cgroup_device::CgroupDeviceLink::from(t: T) -> T
  2627. pub struct aya::programs::cgroup_device::CgroupDeviceLinkId(_)
  2628. impl core::cmp::Eq for aya::programs::cgroup_device::CgroupDeviceLinkId
  2629. impl core::cmp::PartialEq for aya::programs::cgroup_device::CgroupDeviceLinkId
  2630. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::eq(&self, other: &aya::programs::cgroup_device::CgroupDeviceLinkId) -> bool
  2631. impl core::fmt::Debug for aya::programs::cgroup_device::CgroupDeviceLinkId
  2632. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2633. impl core::hash::Hash for aya::programs::cgroup_device::CgroupDeviceLinkId
  2634. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  2635. impl core::marker::StructuralPartialEq for aya::programs::cgroup_device::CgroupDeviceLinkId
  2636. impl equivalent::Equivalent<aya::programs::cgroup_device::CgroupDeviceLink> for aya::programs::cgroup_device::CgroupDeviceLinkId
  2637. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::equivalent(&self, key: &aya::programs::cgroup_device::CgroupDeviceLink) -> bool
  2638. impl core::marker::Freeze for aya::programs::cgroup_device::CgroupDeviceLinkId
  2639. impl core::marker::Send for aya::programs::cgroup_device::CgroupDeviceLinkId
  2640. impl core::marker::Sync for aya::programs::cgroup_device::CgroupDeviceLinkId
  2641. impl core::marker::Unpin for aya::programs::cgroup_device::CgroupDeviceLinkId
  2642. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_device::CgroupDeviceLinkId
  2643. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_device::CgroupDeviceLinkId
  2644. impl<Q, K> equivalent::Equivalent<K> for aya::programs::cgroup_device::CgroupDeviceLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  2645. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::equivalent(&self, key: &K) -> bool
  2646. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_device::CgroupDeviceLinkId where U: core::convert::From<T>
  2647. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::into(self) -> U
  2648. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_device::CgroupDeviceLinkId where U: core::convert::Into<T>
  2649. pub type aya::programs::cgroup_device::CgroupDeviceLinkId::Error = core::convert::Infallible
  2650. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2651. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_device::CgroupDeviceLinkId where U: core::convert::TryFrom<T>
  2652. pub type aya::programs::cgroup_device::CgroupDeviceLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  2653. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2654. impl<T> core::any::Any for aya::programs::cgroup_device::CgroupDeviceLinkId where T: 'static + ?core::marker::Sized
  2655. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::type_id(&self) -> core::any::TypeId
  2656. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_device::CgroupDeviceLinkId where T: ?core::marker::Sized
  2657. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::borrow(&self) -> &T
  2658. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_device::CgroupDeviceLinkId where T: ?core::marker::Sized
  2659. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::borrow_mut(&mut self) -> &mut T
  2660. impl<T> core::convert::From<T> for aya::programs::cgroup_device::CgroupDeviceLinkId
  2661. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::from(t: T) -> T
  2662. pub mod aya::programs::cgroup_skb
  2663. pub enum aya::programs::cgroup_skb::CgroupSkbAttachType
  2664. pub aya::programs::cgroup_skb::CgroupSkbAttachType::Egress
  2665. pub aya::programs::cgroup_skb::CgroupSkbAttachType::Ingress
  2666. impl core::clone::Clone for aya::programs::cgroup_skb::CgroupSkbAttachType
  2667. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::clone(&self) -> aya::programs::cgroup_skb::CgroupSkbAttachType
  2668. impl core::fmt::Debug for aya::programs::cgroup_skb::CgroupSkbAttachType
  2669. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2670. impl core::marker::Copy for aya::programs::cgroup_skb::CgroupSkbAttachType
  2671. impl core::marker::Freeze for aya::programs::cgroup_skb::CgroupSkbAttachType
  2672. impl core::marker::Send for aya::programs::cgroup_skb::CgroupSkbAttachType
  2673. impl core::marker::Sync for aya::programs::cgroup_skb::CgroupSkbAttachType
  2674. impl core::marker::Unpin for aya::programs::cgroup_skb::CgroupSkbAttachType
  2675. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_skb::CgroupSkbAttachType
  2676. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_skb::CgroupSkbAttachType
  2677. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_skb::CgroupSkbAttachType where U: core::convert::From<T>
  2678. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::into(self) -> U
  2679. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_skb::CgroupSkbAttachType where U: core::convert::Into<T>
  2680. pub type aya::programs::cgroup_skb::CgroupSkbAttachType::Error = core::convert::Infallible
  2681. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2682. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_skb::CgroupSkbAttachType where U: core::convert::TryFrom<T>
  2683. pub type aya::programs::cgroup_skb::CgroupSkbAttachType::Error = <U as core::convert::TryFrom<T>>::Error
  2684. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2685. impl<T> alloc::borrow::ToOwned for aya::programs::cgroup_skb::CgroupSkbAttachType where T: core::clone::Clone
  2686. pub type aya::programs::cgroup_skb::CgroupSkbAttachType::Owned = T
  2687. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::clone_into(&self, target: &mut T)
  2688. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::to_owned(&self) -> T
  2689. impl<T> core::any::Any for aya::programs::cgroup_skb::CgroupSkbAttachType where T: 'static + ?core::marker::Sized
  2690. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::type_id(&self) -> core::any::TypeId
  2691. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_skb::CgroupSkbAttachType where T: ?core::marker::Sized
  2692. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::borrow(&self) -> &T
  2693. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_skb::CgroupSkbAttachType where T: ?core::marker::Sized
  2694. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::borrow_mut(&mut self) -> &mut T
  2695. impl<T> core::clone::CloneToUninit for aya::programs::cgroup_skb::CgroupSkbAttachType where T: core::clone::Clone
  2696. pub unsafe fn aya::programs::cgroup_skb::CgroupSkbAttachType::clone_to_uninit(&self, dest: *mut u8)
  2697. impl<T> core::convert::From<T> for aya::programs::cgroup_skb::CgroupSkbAttachType
  2698. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::from(t: T) -> T
  2699. pub struct aya::programs::cgroup_skb::CgroupSkb
  2700. impl aya::programs::cgroup_skb::CgroupSkb
  2701. pub const aya::programs::cgroup_skb::CgroupSkb::PROGRAM_TYPE: aya::programs::ProgramType
  2702. 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, mode: aya::programs::links::CgroupAttachMode) -> core::result::Result<aya::programs::cgroup_skb::CgroupSkbLinkId, aya::programs::ProgramError>
  2703. pub fn aya::programs::cgroup_skb::CgroupSkb::expected_attach_type(&self) -> &core::option::Option<aya::programs::cgroup_skb::CgroupSkbAttachType>
  2704. 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>
  2705. pub fn aya::programs::cgroup_skb::CgroupSkb::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  2706. impl aya::programs::cgroup_skb::CgroupSkb
  2707. pub fn aya::programs::cgroup_skb::CgroupSkb::detach(&mut self, link_id: aya::programs::cgroup_skb::CgroupSkbLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  2708. 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>
  2709. impl aya::programs::cgroup_skb::CgroupSkb
  2710. pub fn aya::programs::cgroup_skb::CgroupSkb::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  2711. impl aya::programs::cgroup_skb::CgroupSkb
  2712. pub fn aya::programs::cgroup_skb::CgroupSkb::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>, attach_type: core::option::Option<aya::programs::cgroup_skb::CgroupSkbAttachType>) -> core::result::Result<Self, aya::programs::ProgramError>
  2713. impl aya::programs::cgroup_skb::CgroupSkb
  2714. pub fn aya::programs::cgroup_skb::CgroupSkb::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  2715. impl aya::programs::cgroup_skb::CgroupSkb
  2716. 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>
  2717. pub fn aya::programs::cgroup_skb::CgroupSkb::unpin(self) -> core::result::Result<(), std::io::error::Error>
  2718. impl aya::programs::cgroup_skb::CgroupSkb
  2719. pub fn aya::programs::cgroup_skb::CgroupSkb::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  2720. impl core::fmt::Debug for aya::programs::cgroup_skb::CgroupSkb
  2721. pub fn aya::programs::cgroup_skb::CgroupSkb::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2722. impl core::ops::drop::Drop for aya::programs::cgroup_skb::CgroupSkb
  2723. pub fn aya::programs::cgroup_skb::CgroupSkb::drop(&mut self)
  2724. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_skb::CgroupSkb
  2725. pub type &'a aya::programs::cgroup_skb::CgroupSkb::Error = aya::programs::ProgramError
  2726. 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>
  2727. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_skb::CgroupSkb
  2728. pub type &'a mut aya::programs::cgroup_skb::CgroupSkb::Error = aya::programs::ProgramError
  2729. 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>
  2730. impl core::marker::Freeze for aya::programs::cgroup_skb::CgroupSkb
  2731. impl core::marker::Send for aya::programs::cgroup_skb::CgroupSkb
  2732. impl core::marker::Sync for aya::programs::cgroup_skb::CgroupSkb
  2733. impl core::marker::Unpin for aya::programs::cgroup_skb::CgroupSkb
  2734. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_skb::CgroupSkb
  2735. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_skb::CgroupSkb
  2736. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_skb::CgroupSkb where U: core::convert::From<T>
  2737. pub fn aya::programs::cgroup_skb::CgroupSkb::into(self) -> U
  2738. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_skb::CgroupSkb where U: core::convert::Into<T>
  2739. pub type aya::programs::cgroup_skb::CgroupSkb::Error = core::convert::Infallible
  2740. pub fn aya::programs::cgroup_skb::CgroupSkb::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2741. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_skb::CgroupSkb where U: core::convert::TryFrom<T>
  2742. pub type aya::programs::cgroup_skb::CgroupSkb::Error = <U as core::convert::TryFrom<T>>::Error
  2743. pub fn aya::programs::cgroup_skb::CgroupSkb::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2744. impl<T> core::any::Any for aya::programs::cgroup_skb::CgroupSkb where T: 'static + ?core::marker::Sized
  2745. pub fn aya::programs::cgroup_skb::CgroupSkb::type_id(&self) -> core::any::TypeId
  2746. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_skb::CgroupSkb where T: ?core::marker::Sized
  2747. pub fn aya::programs::cgroup_skb::CgroupSkb::borrow(&self) -> &T
  2748. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_skb::CgroupSkb where T: ?core::marker::Sized
  2749. pub fn aya::programs::cgroup_skb::CgroupSkb::borrow_mut(&mut self) -> &mut T
  2750. impl<T> core::convert::From<T> for aya::programs::cgroup_skb::CgroupSkb
  2751. pub fn aya::programs::cgroup_skb::CgroupSkb::from(t: T) -> T
  2752. pub struct aya::programs::cgroup_skb::CgroupSkbLink(_)
  2753. impl aya::programs::links::Link for aya::programs::cgroup_skb::CgroupSkbLink
  2754. pub type aya::programs::cgroup_skb::CgroupSkbLink::Id = aya::programs::cgroup_skb::CgroupSkbLinkId
  2755. pub fn aya::programs::cgroup_skb::CgroupSkbLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  2756. pub fn aya::programs::cgroup_skb::CgroupSkbLink::id(&self) -> Self::Id
  2757. impl core::cmp::Eq for aya::programs::cgroup_skb::CgroupSkbLink
  2758. impl core::cmp::PartialEq for aya::programs::cgroup_skb::CgroupSkbLink
  2759. pub fn aya::programs::cgroup_skb::CgroupSkbLink::eq(&self, other: &Self) -> bool
  2760. impl core::convert::TryFrom<aya::programs::cgroup_skb::CgroupSkbLink> for aya::programs::links::FdLink
  2761. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  2762. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::cgroup_skb::CgroupSkbLink) -> core::result::Result<Self, Self::Error>
  2763. impl core::fmt::Debug for aya::programs::cgroup_skb::CgroupSkbLink
  2764. pub fn aya::programs::cgroup_skb::CgroupSkbLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2765. impl core::hash::Hash for aya::programs::cgroup_skb::CgroupSkbLink
  2766. pub fn aya::programs::cgroup_skb::CgroupSkbLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  2767. impl core::ops::drop::Drop for aya::programs::cgroup_skb::CgroupSkbLink
  2768. pub fn aya::programs::cgroup_skb::CgroupSkbLink::drop(&mut self)
  2769. impl equivalent::Equivalent<aya::programs::cgroup_skb::CgroupSkbLink> for aya::programs::cgroup_skb::CgroupSkbLinkId
  2770. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::equivalent(&self, key: &aya::programs::cgroup_skb::CgroupSkbLink) -> bool
  2771. impl core::marker::Freeze for aya::programs::cgroup_skb::CgroupSkbLink
  2772. impl core::marker::Send for aya::programs::cgroup_skb::CgroupSkbLink
  2773. impl core::marker::Sync for aya::programs::cgroup_skb::CgroupSkbLink
  2774. impl core::marker::Unpin for aya::programs::cgroup_skb::CgroupSkbLink
  2775. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_skb::CgroupSkbLink
  2776. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_skb::CgroupSkbLink
  2777. impl<Q, K> equivalent::Equivalent<K> for aya::programs::cgroup_skb::CgroupSkbLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  2778. pub fn aya::programs::cgroup_skb::CgroupSkbLink::equivalent(&self, key: &K) -> bool
  2779. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_skb::CgroupSkbLink where U: core::convert::From<T>
  2780. pub fn aya::programs::cgroup_skb::CgroupSkbLink::into(self) -> U
  2781. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_skb::CgroupSkbLink where U: core::convert::Into<T>
  2782. pub type aya::programs::cgroup_skb::CgroupSkbLink::Error = core::convert::Infallible
  2783. pub fn aya::programs::cgroup_skb::CgroupSkbLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2784. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_skb::CgroupSkbLink where U: core::convert::TryFrom<T>
  2785. pub type aya::programs::cgroup_skb::CgroupSkbLink::Error = <U as core::convert::TryFrom<T>>::Error
  2786. pub fn aya::programs::cgroup_skb::CgroupSkbLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2787. impl<T> core::any::Any for aya::programs::cgroup_skb::CgroupSkbLink where T: 'static + ?core::marker::Sized
  2788. pub fn aya::programs::cgroup_skb::CgroupSkbLink::type_id(&self) -> core::any::TypeId
  2789. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_skb::CgroupSkbLink where T: ?core::marker::Sized
  2790. pub fn aya::programs::cgroup_skb::CgroupSkbLink::borrow(&self) -> &T
  2791. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_skb::CgroupSkbLink where T: ?core::marker::Sized
  2792. pub fn aya::programs::cgroup_skb::CgroupSkbLink::borrow_mut(&mut self) -> &mut T
  2793. impl<T> core::convert::From<T> for aya::programs::cgroup_skb::CgroupSkbLink
  2794. pub fn aya::programs::cgroup_skb::CgroupSkbLink::from(t: T) -> T
  2795. pub struct aya::programs::cgroup_skb::CgroupSkbLinkId(_)
  2796. impl core::cmp::Eq for aya::programs::cgroup_skb::CgroupSkbLinkId
  2797. impl core::cmp::PartialEq for aya::programs::cgroup_skb::CgroupSkbLinkId
  2798. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::eq(&self, other: &aya::programs::cgroup_skb::CgroupSkbLinkId) -> bool
  2799. impl core::fmt::Debug for aya::programs::cgroup_skb::CgroupSkbLinkId
  2800. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2801. impl core::hash::Hash for aya::programs::cgroup_skb::CgroupSkbLinkId
  2802. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  2803. impl core::marker::StructuralPartialEq for aya::programs::cgroup_skb::CgroupSkbLinkId
  2804. impl equivalent::Equivalent<aya::programs::cgroup_skb::CgroupSkbLink> for aya::programs::cgroup_skb::CgroupSkbLinkId
  2805. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::equivalent(&self, key: &aya::programs::cgroup_skb::CgroupSkbLink) -> bool
  2806. impl core::marker::Freeze for aya::programs::cgroup_skb::CgroupSkbLinkId
  2807. impl core::marker::Send for aya::programs::cgroup_skb::CgroupSkbLinkId
  2808. impl core::marker::Sync for aya::programs::cgroup_skb::CgroupSkbLinkId
  2809. impl core::marker::Unpin for aya::programs::cgroup_skb::CgroupSkbLinkId
  2810. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_skb::CgroupSkbLinkId
  2811. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_skb::CgroupSkbLinkId
  2812. impl<Q, K> equivalent::Equivalent<K> for aya::programs::cgroup_skb::CgroupSkbLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  2813. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::equivalent(&self, key: &K) -> bool
  2814. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_skb::CgroupSkbLinkId where U: core::convert::From<T>
  2815. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::into(self) -> U
  2816. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_skb::CgroupSkbLinkId where U: core::convert::Into<T>
  2817. pub type aya::programs::cgroup_skb::CgroupSkbLinkId::Error = core::convert::Infallible
  2818. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2819. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_skb::CgroupSkbLinkId where U: core::convert::TryFrom<T>
  2820. pub type aya::programs::cgroup_skb::CgroupSkbLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  2821. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2822. impl<T> core::any::Any for aya::programs::cgroup_skb::CgroupSkbLinkId where T: 'static + ?core::marker::Sized
  2823. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::type_id(&self) -> core::any::TypeId
  2824. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_skb::CgroupSkbLinkId where T: ?core::marker::Sized
  2825. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::borrow(&self) -> &T
  2826. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_skb::CgroupSkbLinkId where T: ?core::marker::Sized
  2827. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::borrow_mut(&mut self) -> &mut T
  2828. impl<T> core::convert::From<T> for aya::programs::cgroup_skb::CgroupSkbLinkId
  2829. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::from(t: T) -> T
  2830. pub mod aya::programs::cgroup_sock
  2831. pub use aya::programs::cgroup_sock::CgroupSockAttachType
  2832. pub struct aya::programs::cgroup_sock::CgroupSock
  2833. impl aya::programs::cgroup_sock::CgroupSock
  2834. pub const aya::programs::cgroup_sock::CgroupSock::PROGRAM_TYPE: aya::programs::ProgramType
  2835. pub fn aya::programs::cgroup_sock::CgroupSock::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T, mode: aya::programs::links::CgroupAttachMode) -> core::result::Result<aya::programs::cgroup_sock::CgroupSockLinkId, aya::programs::ProgramError>
  2836. 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>
  2837. pub fn aya::programs::cgroup_sock::CgroupSock::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  2838. impl aya::programs::cgroup_sock::CgroupSock
  2839. pub fn aya::programs::cgroup_sock::CgroupSock::detach(&mut self, link_id: aya::programs::cgroup_sock::CgroupSockLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  2840. 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>
  2841. impl aya::programs::cgroup_sock::CgroupSock
  2842. pub fn aya::programs::cgroup_sock::CgroupSock::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  2843. impl aya::programs::cgroup_sock::CgroupSock
  2844. pub fn aya::programs::cgroup_sock::CgroupSock::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  2845. impl aya::programs::cgroup_sock::CgroupSock
  2846. 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>
  2847. pub fn aya::programs::cgroup_sock::CgroupSock::unpin(self) -> core::result::Result<(), std::io::error::Error>
  2848. impl aya::programs::cgroup_sock::CgroupSock
  2849. pub fn aya::programs::cgroup_sock::CgroupSock::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  2850. impl core::fmt::Debug for aya::programs::cgroup_sock::CgroupSock
  2851. pub fn aya::programs::cgroup_sock::CgroupSock::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2852. impl core::ops::drop::Drop for aya::programs::cgroup_sock::CgroupSock
  2853. pub fn aya::programs::cgroup_sock::CgroupSock::drop(&mut self)
  2854. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sock::CgroupSock
  2855. pub type &'a aya::programs::cgroup_sock::CgroupSock::Error = aya::programs::ProgramError
  2856. 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>
  2857. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sock::CgroupSock
  2858. pub type &'a mut aya::programs::cgroup_sock::CgroupSock::Error = aya::programs::ProgramError
  2859. 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>
  2860. impl core::marker::Freeze for aya::programs::cgroup_sock::CgroupSock
  2861. impl core::marker::Send for aya::programs::cgroup_sock::CgroupSock
  2862. impl core::marker::Sync for aya::programs::cgroup_sock::CgroupSock
  2863. impl core::marker::Unpin for aya::programs::cgroup_sock::CgroupSock
  2864. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sock::CgroupSock
  2865. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sock::CgroupSock
  2866. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sock::CgroupSock where U: core::convert::From<T>
  2867. pub fn aya::programs::cgroup_sock::CgroupSock::into(self) -> U
  2868. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sock::CgroupSock where U: core::convert::Into<T>
  2869. pub type aya::programs::cgroup_sock::CgroupSock::Error = core::convert::Infallible
  2870. pub fn aya::programs::cgroup_sock::CgroupSock::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2871. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sock::CgroupSock where U: core::convert::TryFrom<T>
  2872. pub type aya::programs::cgroup_sock::CgroupSock::Error = <U as core::convert::TryFrom<T>>::Error
  2873. pub fn aya::programs::cgroup_sock::CgroupSock::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2874. impl<T> core::any::Any for aya::programs::cgroup_sock::CgroupSock where T: 'static + ?core::marker::Sized
  2875. pub fn aya::programs::cgroup_sock::CgroupSock::type_id(&self) -> core::any::TypeId
  2876. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sock::CgroupSock where T: ?core::marker::Sized
  2877. pub fn aya::programs::cgroup_sock::CgroupSock::borrow(&self) -> &T
  2878. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sock::CgroupSock where T: ?core::marker::Sized
  2879. pub fn aya::programs::cgroup_sock::CgroupSock::borrow_mut(&mut self) -> &mut T
  2880. impl<T> core::convert::From<T> for aya::programs::cgroup_sock::CgroupSock
  2881. pub fn aya::programs::cgroup_sock::CgroupSock::from(t: T) -> T
  2882. pub struct aya::programs::cgroup_sock::CgroupSockLink(_)
  2883. impl aya::programs::links::Link for aya::programs::cgroup_sock::CgroupSockLink
  2884. pub type aya::programs::cgroup_sock::CgroupSockLink::Id = aya::programs::cgroup_sock::CgroupSockLinkId
  2885. pub fn aya::programs::cgroup_sock::CgroupSockLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  2886. pub fn aya::programs::cgroup_sock::CgroupSockLink::id(&self) -> Self::Id
  2887. impl core::cmp::Eq for aya::programs::cgroup_sock::CgroupSockLink
  2888. impl core::cmp::PartialEq for aya::programs::cgroup_sock::CgroupSockLink
  2889. pub fn aya::programs::cgroup_sock::CgroupSockLink::eq(&self, other: &Self) -> bool
  2890. impl core::convert::TryFrom<aya::programs::cgroup_sock::CgroupSockLink> for aya::programs::links::FdLink
  2891. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  2892. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::cgroup_sock::CgroupSockLink) -> core::result::Result<Self, Self::Error>
  2893. impl core::fmt::Debug for aya::programs::cgroup_sock::CgroupSockLink
  2894. pub fn aya::programs::cgroup_sock::CgroupSockLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2895. impl core::hash::Hash for aya::programs::cgroup_sock::CgroupSockLink
  2896. pub fn aya::programs::cgroup_sock::CgroupSockLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  2897. impl core::ops::drop::Drop for aya::programs::cgroup_sock::CgroupSockLink
  2898. pub fn aya::programs::cgroup_sock::CgroupSockLink::drop(&mut self)
  2899. impl equivalent::Equivalent<aya::programs::cgroup_sock::CgroupSockLink> for aya::programs::cgroup_sock::CgroupSockLinkId
  2900. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::equivalent(&self, key: &aya::programs::cgroup_sock::CgroupSockLink) -> bool
  2901. impl core::marker::Freeze for aya::programs::cgroup_sock::CgroupSockLink
  2902. impl core::marker::Send for aya::programs::cgroup_sock::CgroupSockLink
  2903. impl core::marker::Sync for aya::programs::cgroup_sock::CgroupSockLink
  2904. impl core::marker::Unpin for aya::programs::cgroup_sock::CgroupSockLink
  2905. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sock::CgroupSockLink
  2906. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sock::CgroupSockLink
  2907. impl<Q, K> equivalent::Equivalent<K> for aya::programs::cgroup_sock::CgroupSockLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  2908. pub fn aya::programs::cgroup_sock::CgroupSockLink::equivalent(&self, key: &K) -> bool
  2909. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sock::CgroupSockLink where U: core::convert::From<T>
  2910. pub fn aya::programs::cgroup_sock::CgroupSockLink::into(self) -> U
  2911. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sock::CgroupSockLink where U: core::convert::Into<T>
  2912. pub type aya::programs::cgroup_sock::CgroupSockLink::Error = core::convert::Infallible
  2913. pub fn aya::programs::cgroup_sock::CgroupSockLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2914. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sock::CgroupSockLink where U: core::convert::TryFrom<T>
  2915. pub type aya::programs::cgroup_sock::CgroupSockLink::Error = <U as core::convert::TryFrom<T>>::Error
  2916. pub fn aya::programs::cgroup_sock::CgroupSockLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2917. impl<T> core::any::Any for aya::programs::cgroup_sock::CgroupSockLink where T: 'static + ?core::marker::Sized
  2918. pub fn aya::programs::cgroup_sock::CgroupSockLink::type_id(&self) -> core::any::TypeId
  2919. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sock::CgroupSockLink where T: ?core::marker::Sized
  2920. pub fn aya::programs::cgroup_sock::CgroupSockLink::borrow(&self) -> &T
  2921. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sock::CgroupSockLink where T: ?core::marker::Sized
  2922. pub fn aya::programs::cgroup_sock::CgroupSockLink::borrow_mut(&mut self) -> &mut T
  2923. impl<T> core::convert::From<T> for aya::programs::cgroup_sock::CgroupSockLink
  2924. pub fn aya::programs::cgroup_sock::CgroupSockLink::from(t: T) -> T
  2925. pub struct aya::programs::cgroup_sock::CgroupSockLinkId(_)
  2926. impl core::cmp::Eq for aya::programs::cgroup_sock::CgroupSockLinkId
  2927. impl core::cmp::PartialEq for aya::programs::cgroup_sock::CgroupSockLinkId
  2928. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::eq(&self, other: &aya::programs::cgroup_sock::CgroupSockLinkId) -> bool
  2929. impl core::fmt::Debug for aya::programs::cgroup_sock::CgroupSockLinkId
  2930. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2931. impl core::hash::Hash for aya::programs::cgroup_sock::CgroupSockLinkId
  2932. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  2933. impl core::marker::StructuralPartialEq for aya::programs::cgroup_sock::CgroupSockLinkId
  2934. impl equivalent::Equivalent<aya::programs::cgroup_sock::CgroupSockLink> for aya::programs::cgroup_sock::CgroupSockLinkId
  2935. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::equivalent(&self, key: &aya::programs::cgroup_sock::CgroupSockLink) -> bool
  2936. impl core::marker::Freeze for aya::programs::cgroup_sock::CgroupSockLinkId
  2937. impl core::marker::Send for aya::programs::cgroup_sock::CgroupSockLinkId
  2938. impl core::marker::Sync for aya::programs::cgroup_sock::CgroupSockLinkId
  2939. impl core::marker::Unpin for aya::programs::cgroup_sock::CgroupSockLinkId
  2940. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sock::CgroupSockLinkId
  2941. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sock::CgroupSockLinkId
  2942. impl<Q, K> equivalent::Equivalent<K> for aya::programs::cgroup_sock::CgroupSockLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  2943. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::equivalent(&self, key: &K) -> bool
  2944. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sock::CgroupSockLinkId where U: core::convert::From<T>
  2945. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::into(self) -> U
  2946. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sock::CgroupSockLinkId where U: core::convert::Into<T>
  2947. pub type aya::programs::cgroup_sock::CgroupSockLinkId::Error = core::convert::Infallible
  2948. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2949. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sock::CgroupSockLinkId where U: core::convert::TryFrom<T>
  2950. pub type aya::programs::cgroup_sock::CgroupSockLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  2951. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2952. impl<T> core::any::Any for aya::programs::cgroup_sock::CgroupSockLinkId where T: 'static + ?core::marker::Sized
  2953. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::type_id(&self) -> core::any::TypeId
  2954. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sock::CgroupSockLinkId where T: ?core::marker::Sized
  2955. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::borrow(&self) -> &T
  2956. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sock::CgroupSockLinkId where T: ?core::marker::Sized
  2957. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::borrow_mut(&mut self) -> &mut T
  2958. impl<T> core::convert::From<T> for aya::programs::cgroup_sock::CgroupSockLinkId
  2959. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::from(t: T) -> T
  2960. pub mod aya::programs::cgroup_sock_addr
  2961. pub use aya::programs::cgroup_sock_addr::CgroupSockAddrAttachType
  2962. pub struct aya::programs::cgroup_sock_addr::CgroupSockAddr
  2963. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  2964. pub const aya::programs::cgroup_sock_addr::CgroupSockAddr::PROGRAM_TYPE: aya::programs::ProgramType
  2965. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T, mode: aya::programs::links::CgroupAttachMode) -> core::result::Result<aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId, aya::programs::ProgramError>
  2966. 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>
  2967. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  2968. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  2969. 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>
  2970. 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>
  2971. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  2972. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  2973. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  2974. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  2975. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  2976. 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>
  2977. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::unpin(self) -> core::result::Result<(), std::io::error::Error>
  2978. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  2979. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  2980. impl core::fmt::Debug for aya::programs::cgroup_sock_addr::CgroupSockAddr
  2981. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2982. impl core::ops::drop::Drop for aya::programs::cgroup_sock_addr::CgroupSockAddr
  2983. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::drop(&mut self)
  2984. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sock_addr::CgroupSockAddr
  2985. pub type &'a aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = aya::programs::ProgramError
  2986. 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>
  2987. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr
  2988. pub type &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = aya::programs::ProgramError
  2989. 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>
  2990. impl core::marker::Freeze for aya::programs::cgroup_sock_addr::CgroupSockAddr
  2991. impl core::marker::Send for aya::programs::cgroup_sock_addr::CgroupSockAddr
  2992. impl core::marker::Sync for aya::programs::cgroup_sock_addr::CgroupSockAddr
  2993. impl core::marker::Unpin for aya::programs::cgroup_sock_addr::CgroupSockAddr
  2994. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sock_addr::CgroupSockAddr
  2995. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sock_addr::CgroupSockAddr
  2996. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sock_addr::CgroupSockAddr where U: core::convert::From<T>
  2997. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::into(self) -> U
  2998. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sock_addr::CgroupSockAddr where U: core::convert::Into<T>
  2999. pub type aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = core::convert::Infallible
  3000. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3001. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sock_addr::CgroupSockAddr where U: core::convert::TryFrom<T>
  3002. pub type aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = <U as core::convert::TryFrom<T>>::Error
  3003. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3004. impl<T> core::any::Any for aya::programs::cgroup_sock_addr::CgroupSockAddr where T: 'static + ?core::marker::Sized
  3005. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::type_id(&self) -> core::any::TypeId
  3006. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sock_addr::CgroupSockAddr where T: ?core::marker::Sized
  3007. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::borrow(&self) -> &T
  3008. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sock_addr::CgroupSockAddr where T: ?core::marker::Sized
  3009. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::borrow_mut(&mut self) -> &mut T
  3010. impl<T> core::convert::From<T> for aya::programs::cgroup_sock_addr::CgroupSockAddr
  3011. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::from(t: T) -> T
  3012. pub struct aya::programs::cgroup_sock_addr::CgroupSockAddrLink(_)
  3013. impl aya::programs::links::Link for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  3014. pub type aya::programs::cgroup_sock_addr::CgroupSockAddrLink::Id = aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  3015. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3016. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::id(&self) -> Self::Id
  3017. impl core::cmp::Eq for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  3018. impl core::cmp::PartialEq for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  3019. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::eq(&self, other: &Self) -> bool
  3020. impl core::convert::TryFrom<aya::programs::cgroup_sock_addr::CgroupSockAddrLink> for aya::programs::links::FdLink
  3021. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  3022. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::cgroup_sock_addr::CgroupSockAddrLink) -> core::result::Result<Self, Self::Error>
  3023. impl core::fmt::Debug for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  3024. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3025. impl core::hash::Hash for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  3026. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  3027. impl core::ops::drop::Drop for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  3028. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::drop(&mut self)
  3029. impl equivalent::Equivalent<aya::programs::cgroup_sock_addr::CgroupSockAddrLink> for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  3030. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::equivalent(&self, key: &aya::programs::cgroup_sock_addr::CgroupSockAddrLink) -> bool
  3031. impl core::marker::Freeze for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  3032. impl core::marker::Send for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  3033. impl core::marker::Sync for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  3034. impl core::marker::Unpin for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  3035. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  3036. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  3037. impl<Q, K> equivalent::Equivalent<K> for aya::programs::cgroup_sock_addr::CgroupSockAddrLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  3038. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::equivalent(&self, key: &K) -> bool
  3039. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sock_addr::CgroupSockAddrLink where U: core::convert::From<T>
  3040. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::into(self) -> U
  3041. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sock_addr::CgroupSockAddrLink where U: core::convert::Into<T>
  3042. pub type aya::programs::cgroup_sock_addr::CgroupSockAddrLink::Error = core::convert::Infallible
  3043. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3044. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sock_addr::CgroupSockAddrLink where U: core::convert::TryFrom<T>
  3045. pub type aya::programs::cgroup_sock_addr::CgroupSockAddrLink::Error = <U as core::convert::TryFrom<T>>::Error
  3046. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3047. impl<T> core::any::Any for aya::programs::cgroup_sock_addr::CgroupSockAddrLink where T: 'static + ?core::marker::Sized
  3048. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::type_id(&self) -> core::any::TypeId
  3049. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sock_addr::CgroupSockAddrLink where T: ?core::marker::Sized
  3050. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::borrow(&self) -> &T
  3051. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sock_addr::CgroupSockAddrLink where T: ?core::marker::Sized
  3052. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::borrow_mut(&mut self) -> &mut T
  3053. impl<T> core::convert::From<T> for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  3054. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::from(t: T) -> T
  3055. pub struct aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId(_)
  3056. impl core::cmp::Eq for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  3057. impl core::cmp::PartialEq for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  3058. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::eq(&self, other: &aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId) -> bool
  3059. impl core::fmt::Debug for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  3060. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3061. impl core::hash::Hash for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  3062. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  3063. impl core::marker::StructuralPartialEq for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  3064. impl equivalent::Equivalent<aya::programs::cgroup_sock_addr::CgroupSockAddrLink> for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  3065. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::equivalent(&self, key: &aya::programs::cgroup_sock_addr::CgroupSockAddrLink) -> bool
  3066. impl core::marker::Freeze for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  3067. impl core::marker::Send for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  3068. impl core::marker::Sync for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  3069. impl core::marker::Unpin for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  3070. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  3071. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  3072. impl<Q, K> equivalent::Equivalent<K> for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  3073. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::equivalent(&self, key: &K) -> bool
  3074. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId where U: core::convert::From<T>
  3075. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::into(self) -> U
  3076. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId where U: core::convert::Into<T>
  3077. pub type aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::Error = core::convert::Infallible
  3078. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3079. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId where U: core::convert::TryFrom<T>
  3080. pub type aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  3081. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3082. impl<T> core::any::Any for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId where T: 'static + ?core::marker::Sized
  3083. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::type_id(&self) -> core::any::TypeId
  3084. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId where T: ?core::marker::Sized
  3085. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::borrow(&self) -> &T
  3086. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId where T: ?core::marker::Sized
  3087. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::borrow_mut(&mut self) -> &mut T
  3088. impl<T> core::convert::From<T> for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  3089. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::from(t: T) -> T
  3090. pub mod aya::programs::cgroup_sockopt
  3091. pub use aya::programs::cgroup_sockopt::CgroupSockoptAttachType
  3092. pub struct aya::programs::cgroup_sockopt::CgroupSockopt
  3093. impl aya::programs::cgroup_sockopt::CgroupSockopt
  3094. pub const aya::programs::cgroup_sockopt::CgroupSockopt::PROGRAM_TYPE: aya::programs::ProgramType
  3095. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T, mode: aya::programs::links::CgroupAttachMode) -> core::result::Result<aya::programs::cgroup_sockopt::CgroupSockoptLinkId, aya::programs::ProgramError>
  3096. 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>
  3097. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  3098. impl aya::programs::cgroup_sockopt::CgroupSockopt
  3099. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::detach(&mut self, link_id: aya::programs::cgroup_sockopt::CgroupSockoptLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  3100. 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>
  3101. impl aya::programs::cgroup_sockopt::CgroupSockopt
  3102. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  3103. impl aya::programs::cgroup_sockopt::CgroupSockopt
  3104. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>, attach_type: aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  3105. impl aya::programs::cgroup_sockopt::CgroupSockopt
  3106. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  3107. impl aya::programs::cgroup_sockopt::CgroupSockopt
  3108. 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>
  3109. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::unpin(self) -> core::result::Result<(), std::io::error::Error>
  3110. impl aya::programs::cgroup_sockopt::CgroupSockopt
  3111. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  3112. impl core::fmt::Debug for aya::programs::cgroup_sockopt::CgroupSockopt
  3113. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3114. impl core::ops::drop::Drop for aya::programs::cgroup_sockopt::CgroupSockopt
  3115. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::drop(&mut self)
  3116. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sockopt::CgroupSockopt
  3117. pub type &'a aya::programs::cgroup_sockopt::CgroupSockopt::Error = aya::programs::ProgramError
  3118. 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>
  3119. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sockopt::CgroupSockopt
  3120. pub type &'a mut aya::programs::cgroup_sockopt::CgroupSockopt::Error = aya::programs::ProgramError
  3121. 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>
  3122. impl core::marker::Freeze for aya::programs::cgroup_sockopt::CgroupSockopt
  3123. impl core::marker::Send for aya::programs::cgroup_sockopt::CgroupSockopt
  3124. impl core::marker::Sync for aya::programs::cgroup_sockopt::CgroupSockopt
  3125. impl core::marker::Unpin for aya::programs::cgroup_sockopt::CgroupSockopt
  3126. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sockopt::CgroupSockopt
  3127. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sockopt::CgroupSockopt
  3128. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sockopt::CgroupSockopt where U: core::convert::From<T>
  3129. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::into(self) -> U
  3130. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sockopt::CgroupSockopt where U: core::convert::Into<T>
  3131. pub type aya::programs::cgroup_sockopt::CgroupSockopt::Error = core::convert::Infallible
  3132. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3133. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sockopt::CgroupSockopt where U: core::convert::TryFrom<T>
  3134. pub type aya::programs::cgroup_sockopt::CgroupSockopt::Error = <U as core::convert::TryFrom<T>>::Error
  3135. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3136. impl<T> core::any::Any for aya::programs::cgroup_sockopt::CgroupSockopt where T: 'static + ?core::marker::Sized
  3137. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::type_id(&self) -> core::any::TypeId
  3138. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sockopt::CgroupSockopt where T: ?core::marker::Sized
  3139. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::borrow(&self) -> &T
  3140. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sockopt::CgroupSockopt where T: ?core::marker::Sized
  3141. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::borrow_mut(&mut self) -> &mut T
  3142. impl<T> core::convert::From<T> for aya::programs::cgroup_sockopt::CgroupSockopt
  3143. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::from(t: T) -> T
  3144. pub struct aya::programs::cgroup_sockopt::CgroupSockoptLink(_)
  3145. impl aya::programs::links::Link for aya::programs::cgroup_sockopt::CgroupSockoptLink
  3146. pub type aya::programs::cgroup_sockopt::CgroupSockoptLink::Id = aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3147. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3148. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::id(&self) -> Self::Id
  3149. impl core::cmp::Eq for aya::programs::cgroup_sockopt::CgroupSockoptLink
  3150. impl core::cmp::PartialEq for aya::programs::cgroup_sockopt::CgroupSockoptLink
  3151. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::eq(&self, other: &Self) -> bool
  3152. impl core::fmt::Debug for aya::programs::cgroup_sockopt::CgroupSockoptLink
  3153. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3154. impl core::hash::Hash for aya::programs::cgroup_sockopt::CgroupSockoptLink
  3155. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  3156. impl core::ops::drop::Drop for aya::programs::cgroup_sockopt::CgroupSockoptLink
  3157. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::drop(&mut self)
  3158. impl equivalent::Equivalent<aya::programs::cgroup_sockopt::CgroupSockoptLink> for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3159. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::equivalent(&self, key: &aya::programs::cgroup_sockopt::CgroupSockoptLink) -> bool
  3160. impl core::marker::Freeze for aya::programs::cgroup_sockopt::CgroupSockoptLink
  3161. impl core::marker::Send for aya::programs::cgroup_sockopt::CgroupSockoptLink
  3162. impl core::marker::Sync for aya::programs::cgroup_sockopt::CgroupSockoptLink
  3163. impl core::marker::Unpin for aya::programs::cgroup_sockopt::CgroupSockoptLink
  3164. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sockopt::CgroupSockoptLink
  3165. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sockopt::CgroupSockoptLink
  3166. impl<Q, K> equivalent::Equivalent<K> for aya::programs::cgroup_sockopt::CgroupSockoptLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  3167. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::equivalent(&self, key: &K) -> bool
  3168. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sockopt::CgroupSockoptLink where U: core::convert::From<T>
  3169. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::into(self) -> U
  3170. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sockopt::CgroupSockoptLink where U: core::convert::Into<T>
  3171. pub type aya::programs::cgroup_sockopt::CgroupSockoptLink::Error = core::convert::Infallible
  3172. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3173. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sockopt::CgroupSockoptLink where U: core::convert::TryFrom<T>
  3174. pub type aya::programs::cgroup_sockopt::CgroupSockoptLink::Error = <U as core::convert::TryFrom<T>>::Error
  3175. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3176. impl<T> core::any::Any for aya::programs::cgroup_sockopt::CgroupSockoptLink where T: 'static + ?core::marker::Sized
  3177. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::type_id(&self) -> core::any::TypeId
  3178. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sockopt::CgroupSockoptLink where T: ?core::marker::Sized
  3179. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::borrow(&self) -> &T
  3180. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sockopt::CgroupSockoptLink where T: ?core::marker::Sized
  3181. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::borrow_mut(&mut self) -> &mut T
  3182. impl<T> core::convert::From<T> for aya::programs::cgroup_sockopt::CgroupSockoptLink
  3183. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::from(t: T) -> T
  3184. pub struct aya::programs::cgroup_sockopt::CgroupSockoptLinkId(_)
  3185. impl core::cmp::Eq for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3186. impl core::cmp::PartialEq for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3187. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::eq(&self, other: &aya::programs::cgroup_sockopt::CgroupSockoptLinkId) -> bool
  3188. impl core::fmt::Debug for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3189. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3190. impl core::hash::Hash for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3191. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  3192. impl core::marker::StructuralPartialEq for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3193. impl equivalent::Equivalent<aya::programs::cgroup_sockopt::CgroupSockoptLink> for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3194. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::equivalent(&self, key: &aya::programs::cgroup_sockopt::CgroupSockoptLink) -> bool
  3195. impl core::marker::Freeze for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3196. impl core::marker::Send for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3197. impl core::marker::Sync for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3198. impl core::marker::Unpin for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3199. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3200. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3201. impl<Q, K> equivalent::Equivalent<K> for aya::programs::cgroup_sockopt::CgroupSockoptLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  3202. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::equivalent(&self, key: &K) -> bool
  3203. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sockopt::CgroupSockoptLinkId where U: core::convert::From<T>
  3204. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::into(self) -> U
  3205. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sockopt::CgroupSockoptLinkId where U: core::convert::Into<T>
  3206. pub type aya::programs::cgroup_sockopt::CgroupSockoptLinkId::Error = core::convert::Infallible
  3207. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3208. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sockopt::CgroupSockoptLinkId where U: core::convert::TryFrom<T>
  3209. pub type aya::programs::cgroup_sockopt::CgroupSockoptLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  3210. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3211. impl<T> core::any::Any for aya::programs::cgroup_sockopt::CgroupSockoptLinkId where T: 'static + ?core::marker::Sized
  3212. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::type_id(&self) -> core::any::TypeId
  3213. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sockopt::CgroupSockoptLinkId where T: ?core::marker::Sized
  3214. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::borrow(&self) -> &T
  3215. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sockopt::CgroupSockoptLinkId where T: ?core::marker::Sized
  3216. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::borrow_mut(&mut self) -> &mut T
  3217. impl<T> core::convert::From<T> for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3218. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::from(t: T) -> T
  3219. pub mod aya::programs::cgroup_sysctl
  3220. pub struct aya::programs::cgroup_sysctl::CgroupSysctl
  3221. impl aya::programs::cgroup_sysctl::CgroupSysctl
  3222. pub const aya::programs::cgroup_sysctl::CgroupSysctl::PROGRAM_TYPE: aya::programs::ProgramType
  3223. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T, mode: aya::programs::links::CgroupAttachMode) -> core::result::Result<aya::programs::cgroup_sysctl::CgroupSysctlLinkId, aya::programs::ProgramError>
  3224. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  3225. impl aya::programs::cgroup_sysctl::CgroupSysctl
  3226. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::detach(&mut self, link_id: aya::programs::cgroup_sysctl::CgroupSysctlLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  3227. 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>
  3228. impl aya::programs::cgroup_sysctl::CgroupSysctl
  3229. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  3230. impl aya::programs::cgroup_sysctl::CgroupSysctl
  3231. 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>
  3232. impl aya::programs::cgroup_sysctl::CgroupSysctl
  3233. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  3234. impl aya::programs::cgroup_sysctl::CgroupSysctl
  3235. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  3236. impl aya::programs::cgroup_sysctl::CgroupSysctl
  3237. 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>
  3238. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::unpin(self) -> core::result::Result<(), std::io::error::Error>
  3239. impl aya::programs::cgroup_sysctl::CgroupSysctl
  3240. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  3241. impl core::fmt::Debug for aya::programs::cgroup_sysctl::CgroupSysctl
  3242. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3243. impl core::ops::drop::Drop for aya::programs::cgroup_sysctl::CgroupSysctl
  3244. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::drop(&mut self)
  3245. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sysctl::CgroupSysctl
  3246. pub type &'a aya::programs::cgroup_sysctl::CgroupSysctl::Error = aya::programs::ProgramError
  3247. 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>
  3248. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sysctl::CgroupSysctl
  3249. pub type &'a mut aya::programs::cgroup_sysctl::CgroupSysctl::Error = aya::programs::ProgramError
  3250. 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>
  3251. impl core::marker::Freeze for aya::programs::cgroup_sysctl::CgroupSysctl
  3252. impl core::marker::Send for aya::programs::cgroup_sysctl::CgroupSysctl
  3253. impl core::marker::Sync for aya::programs::cgroup_sysctl::CgroupSysctl
  3254. impl core::marker::Unpin for aya::programs::cgroup_sysctl::CgroupSysctl
  3255. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sysctl::CgroupSysctl
  3256. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sysctl::CgroupSysctl
  3257. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sysctl::CgroupSysctl where U: core::convert::From<T>
  3258. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::into(self) -> U
  3259. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sysctl::CgroupSysctl where U: core::convert::Into<T>
  3260. pub type aya::programs::cgroup_sysctl::CgroupSysctl::Error = core::convert::Infallible
  3261. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3262. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sysctl::CgroupSysctl where U: core::convert::TryFrom<T>
  3263. pub type aya::programs::cgroup_sysctl::CgroupSysctl::Error = <U as core::convert::TryFrom<T>>::Error
  3264. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3265. impl<T> core::any::Any for aya::programs::cgroup_sysctl::CgroupSysctl where T: 'static + ?core::marker::Sized
  3266. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::type_id(&self) -> core::any::TypeId
  3267. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sysctl::CgroupSysctl where T: ?core::marker::Sized
  3268. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::borrow(&self) -> &T
  3269. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sysctl::CgroupSysctl where T: ?core::marker::Sized
  3270. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::borrow_mut(&mut self) -> &mut T
  3271. impl<T> core::convert::From<T> for aya::programs::cgroup_sysctl::CgroupSysctl
  3272. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::from(t: T) -> T
  3273. pub struct aya::programs::cgroup_sysctl::CgroupSysctlLink(_)
  3274. impl aya::programs::links::Link for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3275. pub type aya::programs::cgroup_sysctl::CgroupSysctlLink::Id = aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3276. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3277. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::id(&self) -> Self::Id
  3278. impl core::cmp::Eq for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3279. impl core::cmp::PartialEq for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3280. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::eq(&self, other: &Self) -> bool
  3281. impl core::fmt::Debug for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3282. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3283. impl core::hash::Hash for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3284. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  3285. impl core::ops::drop::Drop for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3286. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::drop(&mut self)
  3287. impl equivalent::Equivalent<aya::programs::cgroup_sysctl::CgroupSysctlLink> for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3288. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::equivalent(&self, key: &aya::programs::cgroup_sysctl::CgroupSysctlLink) -> bool
  3289. impl core::marker::Freeze for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3290. impl core::marker::Send for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3291. impl core::marker::Sync for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3292. impl core::marker::Unpin for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3293. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3294. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3295. impl<Q, K> equivalent::Equivalent<K> for aya::programs::cgroup_sysctl::CgroupSysctlLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  3296. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::equivalent(&self, key: &K) -> bool
  3297. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sysctl::CgroupSysctlLink where U: core::convert::From<T>
  3298. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::into(self) -> U
  3299. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sysctl::CgroupSysctlLink where U: core::convert::Into<T>
  3300. pub type aya::programs::cgroup_sysctl::CgroupSysctlLink::Error = core::convert::Infallible
  3301. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3302. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sysctl::CgroupSysctlLink where U: core::convert::TryFrom<T>
  3303. pub type aya::programs::cgroup_sysctl::CgroupSysctlLink::Error = <U as core::convert::TryFrom<T>>::Error
  3304. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3305. impl<T> core::any::Any for aya::programs::cgroup_sysctl::CgroupSysctlLink where T: 'static + ?core::marker::Sized
  3306. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::type_id(&self) -> core::any::TypeId
  3307. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sysctl::CgroupSysctlLink where T: ?core::marker::Sized
  3308. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::borrow(&self) -> &T
  3309. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sysctl::CgroupSysctlLink where T: ?core::marker::Sized
  3310. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::borrow_mut(&mut self) -> &mut T
  3311. impl<T> core::convert::From<T> for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3312. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::from(t: T) -> T
  3313. pub struct aya::programs::cgroup_sysctl::CgroupSysctlLinkId(_)
  3314. impl core::cmp::Eq for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3315. impl core::cmp::PartialEq for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3316. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::eq(&self, other: &aya::programs::cgroup_sysctl::CgroupSysctlLinkId) -> bool
  3317. impl core::fmt::Debug for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3318. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3319. impl core::hash::Hash for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3320. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  3321. impl core::marker::StructuralPartialEq for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3322. impl equivalent::Equivalent<aya::programs::cgroup_sysctl::CgroupSysctlLink> for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3323. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::equivalent(&self, key: &aya::programs::cgroup_sysctl::CgroupSysctlLink) -> bool
  3324. impl core::marker::Freeze for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3325. impl core::marker::Send for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3326. impl core::marker::Sync for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3327. impl core::marker::Unpin for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3328. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3329. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3330. impl<Q, K> equivalent::Equivalent<K> for aya::programs::cgroup_sysctl::CgroupSysctlLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  3331. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::equivalent(&self, key: &K) -> bool
  3332. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sysctl::CgroupSysctlLinkId where U: core::convert::From<T>
  3333. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::into(self) -> U
  3334. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sysctl::CgroupSysctlLinkId where U: core::convert::Into<T>
  3335. pub type aya::programs::cgroup_sysctl::CgroupSysctlLinkId::Error = core::convert::Infallible
  3336. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3337. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sysctl::CgroupSysctlLinkId where U: core::convert::TryFrom<T>
  3338. pub type aya::programs::cgroup_sysctl::CgroupSysctlLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  3339. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3340. impl<T> core::any::Any for aya::programs::cgroup_sysctl::CgroupSysctlLinkId where T: 'static + ?core::marker::Sized
  3341. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::type_id(&self) -> core::any::TypeId
  3342. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sysctl::CgroupSysctlLinkId where T: ?core::marker::Sized
  3343. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::borrow(&self) -> &T
  3344. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sysctl::CgroupSysctlLinkId where T: ?core::marker::Sized
  3345. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::borrow_mut(&mut self) -> &mut T
  3346. impl<T> core::convert::From<T> for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3347. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::from(t: T) -> T
  3348. pub mod aya::programs::extension
  3349. pub enum aya::programs::extension::ExtensionError
  3350. pub aya::programs::extension::ExtensionError::NoBTF
  3351. impl core::convert::From<aya::programs::extension::ExtensionError> for aya::programs::ProgramError
  3352. pub fn aya::programs::ProgramError::from(source: aya::programs::extension::ExtensionError) -> Self
  3353. impl core::error::Error for aya::programs::extension::ExtensionError
  3354. impl core::fmt::Debug for aya::programs::extension::ExtensionError
  3355. pub fn aya::programs::extension::ExtensionError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3356. impl core::fmt::Display for aya::programs::extension::ExtensionError
  3357. pub fn aya::programs::extension::ExtensionError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3358. impl core::marker::Freeze for aya::programs::extension::ExtensionError
  3359. impl core::marker::Send for aya::programs::extension::ExtensionError
  3360. impl core::marker::Sync for aya::programs::extension::ExtensionError
  3361. impl core::marker::Unpin for aya::programs::extension::ExtensionError
  3362. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::extension::ExtensionError
  3363. impl core::panic::unwind_safe::UnwindSafe for aya::programs::extension::ExtensionError
  3364. impl<T, U> core::convert::Into<U> for aya::programs::extension::ExtensionError where U: core::convert::From<T>
  3365. pub fn aya::programs::extension::ExtensionError::into(self) -> U
  3366. impl<T, U> core::convert::TryFrom<U> for aya::programs::extension::ExtensionError where U: core::convert::Into<T>
  3367. pub type aya::programs::extension::ExtensionError::Error = core::convert::Infallible
  3368. pub fn aya::programs::extension::ExtensionError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3369. impl<T, U> core::convert::TryInto<U> for aya::programs::extension::ExtensionError where U: core::convert::TryFrom<T>
  3370. pub type aya::programs::extension::ExtensionError::Error = <U as core::convert::TryFrom<T>>::Error
  3371. pub fn aya::programs::extension::ExtensionError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3372. impl<T> alloc::string::ToString for aya::programs::extension::ExtensionError where T: core::fmt::Display + ?core::marker::Sized
  3373. pub fn aya::programs::extension::ExtensionError::to_string(&self) -> alloc::string::String
  3374. impl<T> core::any::Any for aya::programs::extension::ExtensionError where T: 'static + ?core::marker::Sized
  3375. pub fn aya::programs::extension::ExtensionError::type_id(&self) -> core::any::TypeId
  3376. impl<T> core::borrow::Borrow<T> for aya::programs::extension::ExtensionError where T: ?core::marker::Sized
  3377. pub fn aya::programs::extension::ExtensionError::borrow(&self) -> &T
  3378. impl<T> core::borrow::BorrowMut<T> for aya::programs::extension::ExtensionError where T: ?core::marker::Sized
  3379. pub fn aya::programs::extension::ExtensionError::borrow_mut(&mut self) -> &mut T
  3380. impl<T> core::convert::From<T> for aya::programs::extension::ExtensionError
  3381. pub fn aya::programs::extension::ExtensionError::from(t: T) -> T
  3382. pub struct aya::programs::extension::Extension
  3383. impl aya::programs::extension::Extension
  3384. pub const aya::programs::extension::Extension::PROGRAM_TYPE: aya::programs::ProgramType
  3385. pub fn aya::programs::extension::Extension::attach(&mut self) -> core::result::Result<aya::programs::extension::ExtensionLinkId, aya::programs::ProgramError>
  3386. 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>
  3387. pub fn aya::programs::extension::Extension::load(&mut self, program: aya::programs::ProgramFd, func_name: &str) -> core::result::Result<(), aya::programs::ProgramError>
  3388. impl aya::programs::extension::Extension
  3389. pub fn aya::programs::extension::Extension::detach(&mut self, link_id: aya::programs::extension::ExtensionLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  3390. 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>
  3391. impl aya::programs::extension::Extension
  3392. pub fn aya::programs::extension::Extension::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  3393. impl aya::programs::extension::Extension
  3394. pub fn aya::programs::extension::Extension::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  3395. impl aya::programs::extension::Extension
  3396. pub fn aya::programs::extension::Extension::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  3397. impl aya::programs::extension::Extension
  3398. pub fn aya::programs::extension::Extension::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  3399. impl aya::programs::extension::Extension
  3400. pub fn aya::programs::extension::Extension::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  3401. pub fn aya::programs::extension::Extension::unpin(self) -> core::result::Result<(), std::io::error::Error>
  3402. impl aya::programs::extension::Extension
  3403. pub fn aya::programs::extension::Extension::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  3404. impl core::fmt::Debug for aya::programs::extension::Extension
  3405. pub fn aya::programs::extension::Extension::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3406. impl core::ops::drop::Drop for aya::programs::extension::Extension
  3407. pub fn aya::programs::extension::Extension::drop(&mut self)
  3408. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::extension::Extension
  3409. pub type &'a aya::programs::extension::Extension::Error = aya::programs::ProgramError
  3410. 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>
  3411. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::extension::Extension
  3412. pub type &'a mut aya::programs::extension::Extension::Error = aya::programs::ProgramError
  3413. 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>
  3414. impl core::marker::Freeze for aya::programs::extension::Extension
  3415. impl core::marker::Send for aya::programs::extension::Extension
  3416. impl core::marker::Sync for aya::programs::extension::Extension
  3417. impl core::marker::Unpin for aya::programs::extension::Extension
  3418. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::extension::Extension
  3419. impl core::panic::unwind_safe::UnwindSafe for aya::programs::extension::Extension
  3420. impl<T, U> core::convert::Into<U> for aya::programs::extension::Extension where U: core::convert::From<T>
  3421. pub fn aya::programs::extension::Extension::into(self) -> U
  3422. impl<T, U> core::convert::TryFrom<U> for aya::programs::extension::Extension where U: core::convert::Into<T>
  3423. pub type aya::programs::extension::Extension::Error = core::convert::Infallible
  3424. pub fn aya::programs::extension::Extension::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3425. impl<T, U> core::convert::TryInto<U> for aya::programs::extension::Extension where U: core::convert::TryFrom<T>
  3426. pub type aya::programs::extension::Extension::Error = <U as core::convert::TryFrom<T>>::Error
  3427. pub fn aya::programs::extension::Extension::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3428. impl<T> core::any::Any for aya::programs::extension::Extension where T: 'static + ?core::marker::Sized
  3429. pub fn aya::programs::extension::Extension::type_id(&self) -> core::any::TypeId
  3430. impl<T> core::borrow::Borrow<T> for aya::programs::extension::Extension where T: ?core::marker::Sized
  3431. pub fn aya::programs::extension::Extension::borrow(&self) -> &T
  3432. impl<T> core::borrow::BorrowMut<T> for aya::programs::extension::Extension where T: ?core::marker::Sized
  3433. pub fn aya::programs::extension::Extension::borrow_mut(&mut self) -> &mut T
  3434. impl<T> core::convert::From<T> for aya::programs::extension::Extension
  3435. pub fn aya::programs::extension::Extension::from(t: T) -> T
  3436. pub struct aya::programs::extension::ExtensionLink(_)
  3437. impl aya::programs::links::Link for aya::programs::extension::ExtensionLink
  3438. pub type aya::programs::extension::ExtensionLink::Id = aya::programs::extension::ExtensionLinkId
  3439. pub fn aya::programs::extension::ExtensionLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3440. pub fn aya::programs::extension::ExtensionLink::id(&self) -> Self::Id
  3441. impl core::cmp::Eq for aya::programs::extension::ExtensionLink
  3442. impl core::cmp::PartialEq for aya::programs::extension::ExtensionLink
  3443. pub fn aya::programs::extension::ExtensionLink::eq(&self, other: &Self) -> bool
  3444. impl core::convert::From<aya::programs::extension::ExtensionLink> for aya::programs::links::FdLink
  3445. pub fn aya::programs::links::FdLink::from(w: aya::programs::extension::ExtensionLink) -> aya::programs::links::FdLink
  3446. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::extension::ExtensionLink
  3447. pub fn aya::programs::extension::ExtensionLink::from(b: aya::programs::links::FdLink) -> aya::programs::extension::ExtensionLink
  3448. impl core::fmt::Debug for aya::programs::extension::ExtensionLink
  3449. pub fn aya::programs::extension::ExtensionLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3450. impl core::hash::Hash for aya::programs::extension::ExtensionLink
  3451. pub fn aya::programs::extension::ExtensionLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  3452. impl core::ops::drop::Drop for aya::programs::extension::ExtensionLink
  3453. pub fn aya::programs::extension::ExtensionLink::drop(&mut self)
  3454. impl equivalent::Equivalent<aya::programs::extension::ExtensionLink> for aya::programs::extension::ExtensionLinkId
  3455. pub fn aya::programs::extension::ExtensionLinkId::equivalent(&self, key: &aya::programs::extension::ExtensionLink) -> bool
  3456. impl core::marker::Freeze for aya::programs::extension::ExtensionLink
  3457. impl core::marker::Send for aya::programs::extension::ExtensionLink
  3458. impl core::marker::Sync for aya::programs::extension::ExtensionLink
  3459. impl core::marker::Unpin for aya::programs::extension::ExtensionLink
  3460. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::extension::ExtensionLink
  3461. impl core::panic::unwind_safe::UnwindSafe for aya::programs::extension::ExtensionLink
  3462. impl<Q, K> equivalent::Equivalent<K> for aya::programs::extension::ExtensionLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  3463. pub fn aya::programs::extension::ExtensionLink::equivalent(&self, key: &K) -> bool
  3464. impl<T, U> core::convert::Into<U> for aya::programs::extension::ExtensionLink where U: core::convert::From<T>
  3465. pub fn aya::programs::extension::ExtensionLink::into(self) -> U
  3466. impl<T, U> core::convert::TryFrom<U> for aya::programs::extension::ExtensionLink where U: core::convert::Into<T>
  3467. pub type aya::programs::extension::ExtensionLink::Error = core::convert::Infallible
  3468. pub fn aya::programs::extension::ExtensionLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3469. impl<T, U> core::convert::TryInto<U> for aya::programs::extension::ExtensionLink where U: core::convert::TryFrom<T>
  3470. pub type aya::programs::extension::ExtensionLink::Error = <U as core::convert::TryFrom<T>>::Error
  3471. pub fn aya::programs::extension::ExtensionLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3472. impl<T> core::any::Any for aya::programs::extension::ExtensionLink where T: 'static + ?core::marker::Sized
  3473. pub fn aya::programs::extension::ExtensionLink::type_id(&self) -> core::any::TypeId
  3474. impl<T> core::borrow::Borrow<T> for aya::programs::extension::ExtensionLink where T: ?core::marker::Sized
  3475. pub fn aya::programs::extension::ExtensionLink::borrow(&self) -> &T
  3476. impl<T> core::borrow::BorrowMut<T> for aya::programs::extension::ExtensionLink where T: ?core::marker::Sized
  3477. pub fn aya::programs::extension::ExtensionLink::borrow_mut(&mut self) -> &mut T
  3478. impl<T> core::convert::From<T> for aya::programs::extension::ExtensionLink
  3479. pub fn aya::programs::extension::ExtensionLink::from(t: T) -> T
  3480. pub struct aya::programs::extension::ExtensionLinkId(_)
  3481. impl core::cmp::Eq for aya::programs::extension::ExtensionLinkId
  3482. impl core::cmp::PartialEq for aya::programs::extension::ExtensionLinkId
  3483. pub fn aya::programs::extension::ExtensionLinkId::eq(&self, other: &aya::programs::extension::ExtensionLinkId) -> bool
  3484. impl core::fmt::Debug for aya::programs::extension::ExtensionLinkId
  3485. pub fn aya::programs::extension::ExtensionLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3486. impl core::hash::Hash for aya::programs::extension::ExtensionLinkId
  3487. pub fn aya::programs::extension::ExtensionLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  3488. impl core::marker::StructuralPartialEq for aya::programs::extension::ExtensionLinkId
  3489. impl equivalent::Equivalent<aya::programs::extension::ExtensionLink> for aya::programs::extension::ExtensionLinkId
  3490. pub fn aya::programs::extension::ExtensionLinkId::equivalent(&self, key: &aya::programs::extension::ExtensionLink) -> bool
  3491. impl core::marker::Freeze for aya::programs::extension::ExtensionLinkId
  3492. impl core::marker::Send for aya::programs::extension::ExtensionLinkId
  3493. impl core::marker::Sync for aya::programs::extension::ExtensionLinkId
  3494. impl core::marker::Unpin for aya::programs::extension::ExtensionLinkId
  3495. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::extension::ExtensionLinkId
  3496. impl core::panic::unwind_safe::UnwindSafe for aya::programs::extension::ExtensionLinkId
  3497. impl<Q, K> equivalent::Equivalent<K> for aya::programs::extension::ExtensionLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  3498. pub fn aya::programs::extension::ExtensionLinkId::equivalent(&self, key: &K) -> bool
  3499. impl<T, U> core::convert::Into<U> for aya::programs::extension::ExtensionLinkId where U: core::convert::From<T>
  3500. pub fn aya::programs::extension::ExtensionLinkId::into(self) -> U
  3501. impl<T, U> core::convert::TryFrom<U> for aya::programs::extension::ExtensionLinkId where U: core::convert::Into<T>
  3502. pub type aya::programs::extension::ExtensionLinkId::Error = core::convert::Infallible
  3503. pub fn aya::programs::extension::ExtensionLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3504. impl<T, U> core::convert::TryInto<U> for aya::programs::extension::ExtensionLinkId where U: core::convert::TryFrom<T>
  3505. pub type aya::programs::extension::ExtensionLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  3506. pub fn aya::programs::extension::ExtensionLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3507. impl<T> core::any::Any for aya::programs::extension::ExtensionLinkId where T: 'static + ?core::marker::Sized
  3508. pub fn aya::programs::extension::ExtensionLinkId::type_id(&self) -> core::any::TypeId
  3509. impl<T> core::borrow::Borrow<T> for aya::programs::extension::ExtensionLinkId where T: ?core::marker::Sized
  3510. pub fn aya::programs::extension::ExtensionLinkId::borrow(&self) -> &T
  3511. impl<T> core::borrow::BorrowMut<T> for aya::programs::extension::ExtensionLinkId where T: ?core::marker::Sized
  3512. pub fn aya::programs::extension::ExtensionLinkId::borrow_mut(&mut self) -> &mut T
  3513. impl<T> core::convert::From<T> for aya::programs::extension::ExtensionLinkId
  3514. pub fn aya::programs::extension::ExtensionLinkId::from(t: T) -> T
  3515. pub mod aya::programs::fentry
  3516. pub struct aya::programs::fentry::FEntry
  3517. impl aya::programs::fentry::FEntry
  3518. pub const aya::programs::fentry::FEntry::PROGRAM_TYPE: aya::programs::ProgramType
  3519. pub fn aya::programs::fentry::FEntry::attach(&mut self) -> core::result::Result<aya::programs::fentry::FEntryLinkId, aya::programs::ProgramError>
  3520. pub fn aya::programs::fentry::FEntry::load(&mut self, fn_name: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError>
  3521. impl aya::programs::fentry::FEntry
  3522. pub fn aya::programs::fentry::FEntry::detach(&mut self, link_id: aya::programs::fentry::FEntryLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  3523. 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>
  3524. impl aya::programs::fentry::FEntry
  3525. pub fn aya::programs::fentry::FEntry::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  3526. impl aya::programs::fentry::FEntry
  3527. pub fn aya::programs::fentry::FEntry::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  3528. impl aya::programs::fentry::FEntry
  3529. pub unsafe fn aya::programs::fentry::FEntry::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  3530. impl aya::programs::fentry::FEntry
  3531. pub fn aya::programs::fentry::FEntry::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  3532. impl aya::programs::fentry::FEntry
  3533. pub fn aya::programs::fentry::FEntry::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  3534. pub fn aya::programs::fentry::FEntry::unpin(self) -> core::result::Result<(), std::io::error::Error>
  3535. impl aya::programs::fentry::FEntry
  3536. pub fn aya::programs::fentry::FEntry::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  3537. impl core::fmt::Debug for aya::programs::fentry::FEntry
  3538. pub fn aya::programs::fentry::FEntry::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3539. impl core::ops::drop::Drop for aya::programs::fentry::FEntry
  3540. pub fn aya::programs::fentry::FEntry::drop(&mut self)
  3541. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::fentry::FEntry
  3542. pub type &'a aya::programs::fentry::FEntry::Error = aya::programs::ProgramError
  3543. 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>
  3544. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::fentry::FEntry
  3545. pub type &'a mut aya::programs::fentry::FEntry::Error = aya::programs::ProgramError
  3546. 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>
  3547. impl core::marker::Freeze for aya::programs::fentry::FEntry
  3548. impl core::marker::Send for aya::programs::fentry::FEntry
  3549. impl core::marker::Sync for aya::programs::fentry::FEntry
  3550. impl core::marker::Unpin for aya::programs::fentry::FEntry
  3551. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::fentry::FEntry
  3552. impl core::panic::unwind_safe::UnwindSafe for aya::programs::fentry::FEntry
  3553. impl<T, U> core::convert::Into<U> for aya::programs::fentry::FEntry where U: core::convert::From<T>
  3554. pub fn aya::programs::fentry::FEntry::into(self) -> U
  3555. impl<T, U> core::convert::TryFrom<U> for aya::programs::fentry::FEntry where U: core::convert::Into<T>
  3556. pub type aya::programs::fentry::FEntry::Error = core::convert::Infallible
  3557. pub fn aya::programs::fentry::FEntry::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3558. impl<T, U> core::convert::TryInto<U> for aya::programs::fentry::FEntry where U: core::convert::TryFrom<T>
  3559. pub type aya::programs::fentry::FEntry::Error = <U as core::convert::TryFrom<T>>::Error
  3560. pub fn aya::programs::fentry::FEntry::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3561. impl<T> core::any::Any for aya::programs::fentry::FEntry where T: 'static + ?core::marker::Sized
  3562. pub fn aya::programs::fentry::FEntry::type_id(&self) -> core::any::TypeId
  3563. impl<T> core::borrow::Borrow<T> for aya::programs::fentry::FEntry where T: ?core::marker::Sized
  3564. pub fn aya::programs::fentry::FEntry::borrow(&self) -> &T
  3565. impl<T> core::borrow::BorrowMut<T> for aya::programs::fentry::FEntry where T: ?core::marker::Sized
  3566. pub fn aya::programs::fentry::FEntry::borrow_mut(&mut self) -> &mut T
  3567. impl<T> core::convert::From<T> for aya::programs::fentry::FEntry
  3568. pub fn aya::programs::fentry::FEntry::from(t: T) -> T
  3569. pub struct aya::programs::fentry::FEntryLink(_)
  3570. impl aya::programs::links::Link for aya::programs::fentry::FEntryLink
  3571. pub type aya::programs::fentry::FEntryLink::Id = aya::programs::fentry::FEntryLinkId
  3572. pub fn aya::programs::fentry::FEntryLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3573. pub fn aya::programs::fentry::FEntryLink::id(&self) -> Self::Id
  3574. impl core::cmp::Eq for aya::programs::fentry::FEntryLink
  3575. impl core::cmp::PartialEq for aya::programs::fentry::FEntryLink
  3576. pub fn aya::programs::fentry::FEntryLink::eq(&self, other: &Self) -> bool
  3577. impl core::convert::From<aya::programs::fentry::FEntryLink> for aya::programs::links::FdLink
  3578. pub fn aya::programs::links::FdLink::from(w: aya::programs::fentry::FEntryLink) -> aya::programs::links::FdLink
  3579. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::fentry::FEntryLink
  3580. pub fn aya::programs::fentry::FEntryLink::from(b: aya::programs::links::FdLink) -> aya::programs::fentry::FEntryLink
  3581. impl core::fmt::Debug for aya::programs::fentry::FEntryLink
  3582. pub fn aya::programs::fentry::FEntryLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3583. impl core::hash::Hash for aya::programs::fentry::FEntryLink
  3584. pub fn aya::programs::fentry::FEntryLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  3585. impl core::ops::drop::Drop for aya::programs::fentry::FEntryLink
  3586. pub fn aya::programs::fentry::FEntryLink::drop(&mut self)
  3587. impl equivalent::Equivalent<aya::programs::fentry::FEntryLink> for aya::programs::fentry::FEntryLinkId
  3588. pub fn aya::programs::fentry::FEntryLinkId::equivalent(&self, key: &aya::programs::fentry::FEntryLink) -> bool
  3589. impl core::marker::Freeze for aya::programs::fentry::FEntryLink
  3590. impl core::marker::Send for aya::programs::fentry::FEntryLink
  3591. impl core::marker::Sync for aya::programs::fentry::FEntryLink
  3592. impl core::marker::Unpin for aya::programs::fentry::FEntryLink
  3593. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::fentry::FEntryLink
  3594. impl core::panic::unwind_safe::UnwindSafe for aya::programs::fentry::FEntryLink
  3595. impl<Q, K> equivalent::Equivalent<K> for aya::programs::fentry::FEntryLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  3596. pub fn aya::programs::fentry::FEntryLink::equivalent(&self, key: &K) -> bool
  3597. impl<T, U> core::convert::Into<U> for aya::programs::fentry::FEntryLink where U: core::convert::From<T>
  3598. pub fn aya::programs::fentry::FEntryLink::into(self) -> U
  3599. impl<T, U> core::convert::TryFrom<U> for aya::programs::fentry::FEntryLink where U: core::convert::Into<T>
  3600. pub type aya::programs::fentry::FEntryLink::Error = core::convert::Infallible
  3601. pub fn aya::programs::fentry::FEntryLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3602. impl<T, U> core::convert::TryInto<U> for aya::programs::fentry::FEntryLink where U: core::convert::TryFrom<T>
  3603. pub type aya::programs::fentry::FEntryLink::Error = <U as core::convert::TryFrom<T>>::Error
  3604. pub fn aya::programs::fentry::FEntryLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3605. impl<T> core::any::Any for aya::programs::fentry::FEntryLink where T: 'static + ?core::marker::Sized
  3606. pub fn aya::programs::fentry::FEntryLink::type_id(&self) -> core::any::TypeId
  3607. impl<T> core::borrow::Borrow<T> for aya::programs::fentry::FEntryLink where T: ?core::marker::Sized
  3608. pub fn aya::programs::fentry::FEntryLink::borrow(&self) -> &T
  3609. impl<T> core::borrow::BorrowMut<T> for aya::programs::fentry::FEntryLink where T: ?core::marker::Sized
  3610. pub fn aya::programs::fentry::FEntryLink::borrow_mut(&mut self) -> &mut T
  3611. impl<T> core::convert::From<T> for aya::programs::fentry::FEntryLink
  3612. pub fn aya::programs::fentry::FEntryLink::from(t: T) -> T
  3613. pub struct aya::programs::fentry::FEntryLinkId(_)
  3614. impl core::cmp::Eq for aya::programs::fentry::FEntryLinkId
  3615. impl core::cmp::PartialEq for aya::programs::fentry::FEntryLinkId
  3616. pub fn aya::programs::fentry::FEntryLinkId::eq(&self, other: &aya::programs::fentry::FEntryLinkId) -> bool
  3617. impl core::fmt::Debug for aya::programs::fentry::FEntryLinkId
  3618. pub fn aya::programs::fentry::FEntryLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3619. impl core::hash::Hash for aya::programs::fentry::FEntryLinkId
  3620. pub fn aya::programs::fentry::FEntryLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  3621. impl core::marker::StructuralPartialEq for aya::programs::fentry::FEntryLinkId
  3622. impl equivalent::Equivalent<aya::programs::fentry::FEntryLink> for aya::programs::fentry::FEntryLinkId
  3623. pub fn aya::programs::fentry::FEntryLinkId::equivalent(&self, key: &aya::programs::fentry::FEntryLink) -> bool
  3624. impl core::marker::Freeze for aya::programs::fentry::FEntryLinkId
  3625. impl core::marker::Send for aya::programs::fentry::FEntryLinkId
  3626. impl core::marker::Sync for aya::programs::fentry::FEntryLinkId
  3627. impl core::marker::Unpin for aya::programs::fentry::FEntryLinkId
  3628. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::fentry::FEntryLinkId
  3629. impl core::panic::unwind_safe::UnwindSafe for aya::programs::fentry::FEntryLinkId
  3630. impl<Q, K> equivalent::Equivalent<K> for aya::programs::fentry::FEntryLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  3631. pub fn aya::programs::fentry::FEntryLinkId::equivalent(&self, key: &K) -> bool
  3632. impl<T, U> core::convert::Into<U> for aya::programs::fentry::FEntryLinkId where U: core::convert::From<T>
  3633. pub fn aya::programs::fentry::FEntryLinkId::into(self) -> U
  3634. impl<T, U> core::convert::TryFrom<U> for aya::programs::fentry::FEntryLinkId where U: core::convert::Into<T>
  3635. pub type aya::programs::fentry::FEntryLinkId::Error = core::convert::Infallible
  3636. pub fn aya::programs::fentry::FEntryLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3637. impl<T, U> core::convert::TryInto<U> for aya::programs::fentry::FEntryLinkId where U: core::convert::TryFrom<T>
  3638. pub type aya::programs::fentry::FEntryLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  3639. pub fn aya::programs::fentry::FEntryLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3640. impl<T> core::any::Any for aya::programs::fentry::FEntryLinkId where T: 'static + ?core::marker::Sized
  3641. pub fn aya::programs::fentry::FEntryLinkId::type_id(&self) -> core::any::TypeId
  3642. impl<T> core::borrow::Borrow<T> for aya::programs::fentry::FEntryLinkId where T: ?core::marker::Sized
  3643. pub fn aya::programs::fentry::FEntryLinkId::borrow(&self) -> &T
  3644. impl<T> core::borrow::BorrowMut<T> for aya::programs::fentry::FEntryLinkId where T: ?core::marker::Sized
  3645. pub fn aya::programs::fentry::FEntryLinkId::borrow_mut(&mut self) -> &mut T
  3646. impl<T> core::convert::From<T> for aya::programs::fentry::FEntryLinkId
  3647. pub fn aya::programs::fentry::FEntryLinkId::from(t: T) -> T
  3648. pub mod aya::programs::fexit
  3649. pub struct aya::programs::fexit::FExit
  3650. impl aya::programs::fexit::FExit
  3651. pub const aya::programs::fexit::FExit::PROGRAM_TYPE: aya::programs::ProgramType
  3652. pub fn aya::programs::fexit::FExit::attach(&mut self) -> core::result::Result<aya::programs::fexit::FExitLinkId, aya::programs::ProgramError>
  3653. pub fn aya::programs::fexit::FExit::load(&mut self, fn_name: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError>
  3654. impl aya::programs::fexit::FExit
  3655. pub fn aya::programs::fexit::FExit::detach(&mut self, link_id: aya::programs::fexit::FExitLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  3656. 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>
  3657. impl aya::programs::fexit::FExit
  3658. pub fn aya::programs::fexit::FExit::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  3659. impl aya::programs::fexit::FExit
  3660. pub fn aya::programs::fexit::FExit::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  3661. impl aya::programs::fexit::FExit
  3662. pub unsafe fn aya::programs::fexit::FExit::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  3663. impl aya::programs::fexit::FExit
  3664. pub fn aya::programs::fexit::FExit::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  3665. impl aya::programs::fexit::FExit
  3666. pub fn aya::programs::fexit::FExit::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  3667. pub fn aya::programs::fexit::FExit::unpin(self) -> core::result::Result<(), std::io::error::Error>
  3668. impl aya::programs::fexit::FExit
  3669. pub fn aya::programs::fexit::FExit::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  3670. impl core::fmt::Debug for aya::programs::fexit::FExit
  3671. pub fn aya::programs::fexit::FExit::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3672. impl core::ops::drop::Drop for aya::programs::fexit::FExit
  3673. pub fn aya::programs::fexit::FExit::drop(&mut self)
  3674. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::fexit::FExit
  3675. pub type &'a aya::programs::fexit::FExit::Error = aya::programs::ProgramError
  3676. 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>
  3677. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::fexit::FExit
  3678. pub type &'a mut aya::programs::fexit::FExit::Error = aya::programs::ProgramError
  3679. 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>
  3680. impl core::marker::Freeze for aya::programs::fexit::FExit
  3681. impl core::marker::Send for aya::programs::fexit::FExit
  3682. impl core::marker::Sync for aya::programs::fexit::FExit
  3683. impl core::marker::Unpin for aya::programs::fexit::FExit
  3684. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::fexit::FExit
  3685. impl core::panic::unwind_safe::UnwindSafe for aya::programs::fexit::FExit
  3686. impl<T, U> core::convert::Into<U> for aya::programs::fexit::FExit where U: core::convert::From<T>
  3687. pub fn aya::programs::fexit::FExit::into(self) -> U
  3688. impl<T, U> core::convert::TryFrom<U> for aya::programs::fexit::FExit where U: core::convert::Into<T>
  3689. pub type aya::programs::fexit::FExit::Error = core::convert::Infallible
  3690. pub fn aya::programs::fexit::FExit::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3691. impl<T, U> core::convert::TryInto<U> for aya::programs::fexit::FExit where U: core::convert::TryFrom<T>
  3692. pub type aya::programs::fexit::FExit::Error = <U as core::convert::TryFrom<T>>::Error
  3693. pub fn aya::programs::fexit::FExit::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3694. impl<T> core::any::Any for aya::programs::fexit::FExit where T: 'static + ?core::marker::Sized
  3695. pub fn aya::programs::fexit::FExit::type_id(&self) -> core::any::TypeId
  3696. impl<T> core::borrow::Borrow<T> for aya::programs::fexit::FExit where T: ?core::marker::Sized
  3697. pub fn aya::programs::fexit::FExit::borrow(&self) -> &T
  3698. impl<T> core::borrow::BorrowMut<T> for aya::programs::fexit::FExit where T: ?core::marker::Sized
  3699. pub fn aya::programs::fexit::FExit::borrow_mut(&mut self) -> &mut T
  3700. impl<T> core::convert::From<T> for aya::programs::fexit::FExit
  3701. pub fn aya::programs::fexit::FExit::from(t: T) -> T
  3702. pub struct aya::programs::fexit::FExitLink(_)
  3703. impl aya::programs::links::Link for aya::programs::fexit::FExitLink
  3704. pub type aya::programs::fexit::FExitLink::Id = aya::programs::fexit::FExitLinkId
  3705. pub fn aya::programs::fexit::FExitLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3706. pub fn aya::programs::fexit::FExitLink::id(&self) -> Self::Id
  3707. impl core::cmp::Eq for aya::programs::fexit::FExitLink
  3708. impl core::cmp::PartialEq for aya::programs::fexit::FExitLink
  3709. pub fn aya::programs::fexit::FExitLink::eq(&self, other: &Self) -> bool
  3710. impl core::convert::From<aya::programs::fexit::FExitLink> for aya::programs::links::FdLink
  3711. pub fn aya::programs::links::FdLink::from(w: aya::programs::fexit::FExitLink) -> aya::programs::links::FdLink
  3712. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::fexit::FExitLink
  3713. pub fn aya::programs::fexit::FExitLink::from(b: aya::programs::links::FdLink) -> aya::programs::fexit::FExitLink
  3714. impl core::fmt::Debug for aya::programs::fexit::FExitLink
  3715. pub fn aya::programs::fexit::FExitLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3716. impl core::hash::Hash for aya::programs::fexit::FExitLink
  3717. pub fn aya::programs::fexit::FExitLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  3718. impl core::ops::drop::Drop for aya::programs::fexit::FExitLink
  3719. pub fn aya::programs::fexit::FExitLink::drop(&mut self)
  3720. impl equivalent::Equivalent<aya::programs::fexit::FExitLink> for aya::programs::fexit::FExitLinkId
  3721. pub fn aya::programs::fexit::FExitLinkId::equivalent(&self, key: &aya::programs::fexit::FExitLink) -> bool
  3722. impl core::marker::Freeze for aya::programs::fexit::FExitLink
  3723. impl core::marker::Send for aya::programs::fexit::FExitLink
  3724. impl core::marker::Sync for aya::programs::fexit::FExitLink
  3725. impl core::marker::Unpin for aya::programs::fexit::FExitLink
  3726. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::fexit::FExitLink
  3727. impl core::panic::unwind_safe::UnwindSafe for aya::programs::fexit::FExitLink
  3728. impl<Q, K> equivalent::Equivalent<K> for aya::programs::fexit::FExitLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  3729. pub fn aya::programs::fexit::FExitLink::equivalent(&self, key: &K) -> bool
  3730. impl<T, U> core::convert::Into<U> for aya::programs::fexit::FExitLink where U: core::convert::From<T>
  3731. pub fn aya::programs::fexit::FExitLink::into(self) -> U
  3732. impl<T, U> core::convert::TryFrom<U> for aya::programs::fexit::FExitLink where U: core::convert::Into<T>
  3733. pub type aya::programs::fexit::FExitLink::Error = core::convert::Infallible
  3734. pub fn aya::programs::fexit::FExitLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3735. impl<T, U> core::convert::TryInto<U> for aya::programs::fexit::FExitLink where U: core::convert::TryFrom<T>
  3736. pub type aya::programs::fexit::FExitLink::Error = <U as core::convert::TryFrom<T>>::Error
  3737. pub fn aya::programs::fexit::FExitLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3738. impl<T> core::any::Any for aya::programs::fexit::FExitLink where T: 'static + ?core::marker::Sized
  3739. pub fn aya::programs::fexit::FExitLink::type_id(&self) -> core::any::TypeId
  3740. impl<T> core::borrow::Borrow<T> for aya::programs::fexit::FExitLink where T: ?core::marker::Sized
  3741. pub fn aya::programs::fexit::FExitLink::borrow(&self) -> &T
  3742. impl<T> core::borrow::BorrowMut<T> for aya::programs::fexit::FExitLink where T: ?core::marker::Sized
  3743. pub fn aya::programs::fexit::FExitLink::borrow_mut(&mut self) -> &mut T
  3744. impl<T> core::convert::From<T> for aya::programs::fexit::FExitLink
  3745. pub fn aya::programs::fexit::FExitLink::from(t: T) -> T
  3746. pub struct aya::programs::fexit::FExitLinkId(_)
  3747. impl core::cmp::Eq for aya::programs::fexit::FExitLinkId
  3748. impl core::cmp::PartialEq for aya::programs::fexit::FExitLinkId
  3749. pub fn aya::programs::fexit::FExitLinkId::eq(&self, other: &aya::programs::fexit::FExitLinkId) -> bool
  3750. impl core::fmt::Debug for aya::programs::fexit::FExitLinkId
  3751. pub fn aya::programs::fexit::FExitLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3752. impl core::hash::Hash for aya::programs::fexit::FExitLinkId
  3753. pub fn aya::programs::fexit::FExitLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  3754. impl core::marker::StructuralPartialEq for aya::programs::fexit::FExitLinkId
  3755. impl equivalent::Equivalent<aya::programs::fexit::FExitLink> for aya::programs::fexit::FExitLinkId
  3756. pub fn aya::programs::fexit::FExitLinkId::equivalent(&self, key: &aya::programs::fexit::FExitLink) -> bool
  3757. impl core::marker::Freeze for aya::programs::fexit::FExitLinkId
  3758. impl core::marker::Send for aya::programs::fexit::FExitLinkId
  3759. impl core::marker::Sync for aya::programs::fexit::FExitLinkId
  3760. impl core::marker::Unpin for aya::programs::fexit::FExitLinkId
  3761. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::fexit::FExitLinkId
  3762. impl core::panic::unwind_safe::UnwindSafe for aya::programs::fexit::FExitLinkId
  3763. impl<Q, K> equivalent::Equivalent<K> for aya::programs::fexit::FExitLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  3764. pub fn aya::programs::fexit::FExitLinkId::equivalent(&self, key: &K) -> bool
  3765. impl<T, U> core::convert::Into<U> for aya::programs::fexit::FExitLinkId where U: core::convert::From<T>
  3766. pub fn aya::programs::fexit::FExitLinkId::into(self) -> U
  3767. impl<T, U> core::convert::TryFrom<U> for aya::programs::fexit::FExitLinkId where U: core::convert::Into<T>
  3768. pub type aya::programs::fexit::FExitLinkId::Error = core::convert::Infallible
  3769. pub fn aya::programs::fexit::FExitLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3770. impl<T, U> core::convert::TryInto<U> for aya::programs::fexit::FExitLinkId where U: core::convert::TryFrom<T>
  3771. pub type aya::programs::fexit::FExitLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  3772. pub fn aya::programs::fexit::FExitLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3773. impl<T> core::any::Any for aya::programs::fexit::FExitLinkId where T: 'static + ?core::marker::Sized
  3774. pub fn aya::programs::fexit::FExitLinkId::type_id(&self) -> core::any::TypeId
  3775. impl<T> core::borrow::Borrow<T> for aya::programs::fexit::FExitLinkId where T: ?core::marker::Sized
  3776. pub fn aya::programs::fexit::FExitLinkId::borrow(&self) -> &T
  3777. impl<T> core::borrow::BorrowMut<T> for aya::programs::fexit::FExitLinkId where T: ?core::marker::Sized
  3778. pub fn aya::programs::fexit::FExitLinkId::borrow_mut(&mut self) -> &mut T
  3779. impl<T> core::convert::From<T> for aya::programs::fexit::FExitLinkId
  3780. pub fn aya::programs::fexit::FExitLinkId::from(t: T) -> T
  3781. pub mod aya::programs::flow_dissector
  3782. pub struct aya::programs::flow_dissector::FlowDissector
  3783. impl aya::programs::flow_dissector::FlowDissector
  3784. pub const aya::programs::flow_dissector::FlowDissector::PROGRAM_TYPE: aya::programs::ProgramType
  3785. pub fn aya::programs::flow_dissector::FlowDissector::attach<T: std::os::fd::owned::AsFd>(&mut self, netns: T) -> core::result::Result<aya::programs::flow_dissector::FlowDissectorLinkId, aya::programs::ProgramError>
  3786. pub fn aya::programs::flow_dissector::FlowDissector::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  3787. impl aya::programs::flow_dissector::FlowDissector
  3788. pub fn aya::programs::flow_dissector::FlowDissector::detach(&mut self, link_id: aya::programs::flow_dissector::FlowDissectorLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  3789. pub fn aya::programs::flow_dissector::FlowDissector::take_link(&mut self, link_id: aya::programs::flow_dissector::FlowDissectorLinkId) -> core::result::Result<aya::programs::flow_dissector::FlowDissectorLink, aya::programs::ProgramError>
  3790. impl aya::programs::flow_dissector::FlowDissector
  3791. pub fn aya::programs::flow_dissector::FlowDissector::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  3792. impl aya::programs::flow_dissector::FlowDissector
  3793. pub fn aya::programs::flow_dissector::FlowDissector::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  3794. impl aya::programs::flow_dissector::FlowDissector
  3795. pub fn aya::programs::flow_dissector::FlowDissector::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  3796. impl aya::programs::flow_dissector::FlowDissector
  3797. pub fn aya::programs::flow_dissector::FlowDissector::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  3798. pub fn aya::programs::flow_dissector::FlowDissector::unpin(self) -> core::result::Result<(), std::io::error::Error>
  3799. impl aya::programs::flow_dissector::FlowDissector
  3800. pub fn aya::programs::flow_dissector::FlowDissector::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  3801. impl core::fmt::Debug for aya::programs::flow_dissector::FlowDissector
  3802. pub fn aya::programs::flow_dissector::FlowDissector::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3803. impl core::ops::drop::Drop for aya::programs::flow_dissector::FlowDissector
  3804. pub fn aya::programs::flow_dissector::FlowDissector::drop(&mut self)
  3805. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::flow_dissector::FlowDissector
  3806. pub type &'a aya::programs::flow_dissector::FlowDissector::Error = aya::programs::ProgramError
  3807. pub fn &'a aya::programs::flow_dissector::FlowDissector::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::flow_dissector::FlowDissector, aya::programs::ProgramError>
  3808. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::flow_dissector::FlowDissector
  3809. pub type &'a mut aya::programs::flow_dissector::FlowDissector::Error = aya::programs::ProgramError
  3810. pub fn &'a mut aya::programs::flow_dissector::FlowDissector::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::flow_dissector::FlowDissector, aya::programs::ProgramError>
  3811. impl core::marker::Freeze for aya::programs::flow_dissector::FlowDissector
  3812. impl core::marker::Send for aya::programs::flow_dissector::FlowDissector
  3813. impl core::marker::Sync for aya::programs::flow_dissector::FlowDissector
  3814. impl core::marker::Unpin for aya::programs::flow_dissector::FlowDissector
  3815. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::flow_dissector::FlowDissector
  3816. impl core::panic::unwind_safe::UnwindSafe for aya::programs::flow_dissector::FlowDissector
  3817. impl<T, U> core::convert::Into<U> for aya::programs::flow_dissector::FlowDissector where U: core::convert::From<T>
  3818. pub fn aya::programs::flow_dissector::FlowDissector::into(self) -> U
  3819. impl<T, U> core::convert::TryFrom<U> for aya::programs::flow_dissector::FlowDissector where U: core::convert::Into<T>
  3820. pub type aya::programs::flow_dissector::FlowDissector::Error = core::convert::Infallible
  3821. pub fn aya::programs::flow_dissector::FlowDissector::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3822. impl<T, U> core::convert::TryInto<U> for aya::programs::flow_dissector::FlowDissector where U: core::convert::TryFrom<T>
  3823. pub type aya::programs::flow_dissector::FlowDissector::Error = <U as core::convert::TryFrom<T>>::Error
  3824. pub fn aya::programs::flow_dissector::FlowDissector::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3825. impl<T> core::any::Any for aya::programs::flow_dissector::FlowDissector where T: 'static + ?core::marker::Sized
  3826. pub fn aya::programs::flow_dissector::FlowDissector::type_id(&self) -> core::any::TypeId
  3827. impl<T> core::borrow::Borrow<T> for aya::programs::flow_dissector::FlowDissector where T: ?core::marker::Sized
  3828. pub fn aya::programs::flow_dissector::FlowDissector::borrow(&self) -> &T
  3829. impl<T> core::borrow::BorrowMut<T> for aya::programs::flow_dissector::FlowDissector where T: ?core::marker::Sized
  3830. pub fn aya::programs::flow_dissector::FlowDissector::borrow_mut(&mut self) -> &mut T
  3831. impl<T> core::convert::From<T> for aya::programs::flow_dissector::FlowDissector
  3832. pub fn aya::programs::flow_dissector::FlowDissector::from(t: T) -> T
  3833. pub struct aya::programs::flow_dissector::FlowDissectorLink(_)
  3834. impl aya::programs::links::Link for aya::programs::flow_dissector::FlowDissectorLink
  3835. pub type aya::programs::flow_dissector::FlowDissectorLink::Id = aya::programs::flow_dissector::FlowDissectorLinkId
  3836. pub fn aya::programs::flow_dissector::FlowDissectorLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3837. pub fn aya::programs::flow_dissector::FlowDissectorLink::id(&self) -> Self::Id
  3838. impl core::cmp::Eq for aya::programs::flow_dissector::FlowDissectorLink
  3839. impl core::cmp::PartialEq for aya::programs::flow_dissector::FlowDissectorLink
  3840. pub fn aya::programs::flow_dissector::FlowDissectorLink::eq(&self, other: &Self) -> bool
  3841. impl core::fmt::Debug for aya::programs::flow_dissector::FlowDissectorLink
  3842. pub fn aya::programs::flow_dissector::FlowDissectorLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3843. impl core::hash::Hash for aya::programs::flow_dissector::FlowDissectorLink
  3844. pub fn aya::programs::flow_dissector::FlowDissectorLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  3845. impl core::ops::drop::Drop for aya::programs::flow_dissector::FlowDissectorLink
  3846. pub fn aya::programs::flow_dissector::FlowDissectorLink::drop(&mut self)
  3847. impl equivalent::Equivalent<aya::programs::flow_dissector::FlowDissectorLink> for aya::programs::flow_dissector::FlowDissectorLinkId
  3848. pub fn aya::programs::flow_dissector::FlowDissectorLinkId::equivalent(&self, key: &aya::programs::flow_dissector::FlowDissectorLink) -> bool
  3849. impl core::marker::Freeze for aya::programs::flow_dissector::FlowDissectorLink
  3850. impl core::marker::Send for aya::programs::flow_dissector::FlowDissectorLink
  3851. impl core::marker::Sync for aya::programs::flow_dissector::FlowDissectorLink
  3852. impl core::marker::Unpin for aya::programs::flow_dissector::FlowDissectorLink
  3853. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::flow_dissector::FlowDissectorLink
  3854. impl core::panic::unwind_safe::UnwindSafe for aya::programs::flow_dissector::FlowDissectorLink
  3855. impl<Q, K> equivalent::Equivalent<K> for aya::programs::flow_dissector::FlowDissectorLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  3856. pub fn aya::programs::flow_dissector::FlowDissectorLink::equivalent(&self, key: &K) -> bool
  3857. impl<T, U> core::convert::Into<U> for aya::programs::flow_dissector::FlowDissectorLink where U: core::convert::From<T>
  3858. pub fn aya::programs::flow_dissector::FlowDissectorLink::into(self) -> U
  3859. impl<T, U> core::convert::TryFrom<U> for aya::programs::flow_dissector::FlowDissectorLink where U: core::convert::Into<T>
  3860. pub type aya::programs::flow_dissector::FlowDissectorLink::Error = core::convert::Infallible
  3861. pub fn aya::programs::flow_dissector::FlowDissectorLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3862. impl<T, U> core::convert::TryInto<U> for aya::programs::flow_dissector::FlowDissectorLink where U: core::convert::TryFrom<T>
  3863. pub type aya::programs::flow_dissector::FlowDissectorLink::Error = <U as core::convert::TryFrom<T>>::Error
  3864. pub fn aya::programs::flow_dissector::FlowDissectorLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3865. impl<T> core::any::Any for aya::programs::flow_dissector::FlowDissectorLink where T: 'static + ?core::marker::Sized
  3866. pub fn aya::programs::flow_dissector::FlowDissectorLink::type_id(&self) -> core::any::TypeId
  3867. impl<T> core::borrow::Borrow<T> for aya::programs::flow_dissector::FlowDissectorLink where T: ?core::marker::Sized
  3868. pub fn aya::programs::flow_dissector::FlowDissectorLink::borrow(&self) -> &T
  3869. impl<T> core::borrow::BorrowMut<T> for aya::programs::flow_dissector::FlowDissectorLink where T: ?core::marker::Sized
  3870. pub fn aya::programs::flow_dissector::FlowDissectorLink::borrow_mut(&mut self) -> &mut T
  3871. impl<T> core::convert::From<T> for aya::programs::flow_dissector::FlowDissectorLink
  3872. pub fn aya::programs::flow_dissector::FlowDissectorLink::from(t: T) -> T
  3873. pub struct aya::programs::flow_dissector::FlowDissectorLinkId(_)
  3874. impl core::cmp::Eq for aya::programs::flow_dissector::FlowDissectorLinkId
  3875. impl core::cmp::PartialEq for aya::programs::flow_dissector::FlowDissectorLinkId
  3876. pub fn aya::programs::flow_dissector::FlowDissectorLinkId::eq(&self, other: &aya::programs::flow_dissector::FlowDissectorLinkId) -> bool
  3877. impl core::fmt::Debug for aya::programs::flow_dissector::FlowDissectorLinkId
  3878. pub fn aya::programs::flow_dissector::FlowDissectorLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3879. impl core::hash::Hash for aya::programs::flow_dissector::FlowDissectorLinkId
  3880. pub fn aya::programs::flow_dissector::FlowDissectorLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  3881. impl core::marker::StructuralPartialEq for aya::programs::flow_dissector::FlowDissectorLinkId
  3882. impl equivalent::Equivalent<aya::programs::flow_dissector::FlowDissectorLink> for aya::programs::flow_dissector::FlowDissectorLinkId
  3883. pub fn aya::programs::flow_dissector::FlowDissectorLinkId::equivalent(&self, key: &aya::programs::flow_dissector::FlowDissectorLink) -> bool
  3884. impl core::marker::Freeze for aya::programs::flow_dissector::FlowDissectorLinkId
  3885. impl core::marker::Send for aya::programs::flow_dissector::FlowDissectorLinkId
  3886. impl core::marker::Sync for aya::programs::flow_dissector::FlowDissectorLinkId
  3887. impl core::marker::Unpin for aya::programs::flow_dissector::FlowDissectorLinkId
  3888. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::flow_dissector::FlowDissectorLinkId
  3889. impl core::panic::unwind_safe::UnwindSafe for aya::programs::flow_dissector::FlowDissectorLinkId
  3890. impl<Q, K> equivalent::Equivalent<K> for aya::programs::flow_dissector::FlowDissectorLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  3891. pub fn aya::programs::flow_dissector::FlowDissectorLinkId::equivalent(&self, key: &K) -> bool
  3892. impl<T, U> core::convert::Into<U> for aya::programs::flow_dissector::FlowDissectorLinkId where U: core::convert::From<T>
  3893. pub fn aya::programs::flow_dissector::FlowDissectorLinkId::into(self) -> U
  3894. impl<T, U> core::convert::TryFrom<U> for aya::programs::flow_dissector::FlowDissectorLinkId where U: core::convert::Into<T>
  3895. pub type aya::programs::flow_dissector::FlowDissectorLinkId::Error = core::convert::Infallible
  3896. pub fn aya::programs::flow_dissector::FlowDissectorLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3897. impl<T, U> core::convert::TryInto<U> for aya::programs::flow_dissector::FlowDissectorLinkId where U: core::convert::TryFrom<T>
  3898. pub type aya::programs::flow_dissector::FlowDissectorLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  3899. pub fn aya::programs::flow_dissector::FlowDissectorLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3900. impl<T> core::any::Any for aya::programs::flow_dissector::FlowDissectorLinkId where T: 'static + ?core::marker::Sized
  3901. pub fn aya::programs::flow_dissector::FlowDissectorLinkId::type_id(&self) -> core::any::TypeId
  3902. impl<T> core::borrow::Borrow<T> for aya::programs::flow_dissector::FlowDissectorLinkId where T: ?core::marker::Sized
  3903. pub fn aya::programs::flow_dissector::FlowDissectorLinkId::borrow(&self) -> &T
  3904. impl<T> core::borrow::BorrowMut<T> for aya::programs::flow_dissector::FlowDissectorLinkId where T: ?core::marker::Sized
  3905. pub fn aya::programs::flow_dissector::FlowDissectorLinkId::borrow_mut(&mut self) -> &mut T
  3906. impl<T> core::convert::From<T> for aya::programs::flow_dissector::FlowDissectorLinkId
  3907. pub fn aya::programs::flow_dissector::FlowDissectorLinkId::from(t: T) -> T
  3908. pub mod aya::programs::iter
  3909. pub struct aya::programs::iter::Iter
  3910. impl aya::programs::iter::Iter
  3911. pub const aya::programs::iter::Iter::PROGRAM_TYPE: aya::programs::ProgramType
  3912. pub fn aya::programs::iter::Iter::attach(&mut self) -> core::result::Result<aya::programs::iter::IterLinkId, aya::programs::ProgramError>
  3913. pub fn aya::programs::iter::Iter::load(&mut self, iter_type: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError>
  3914. impl aya::programs::iter::Iter
  3915. pub fn aya::programs::iter::Iter::detach(&mut self, link_id: aya::programs::iter::IterLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  3916. pub fn aya::programs::iter::Iter::take_link(&mut self, link_id: aya::programs::iter::IterLinkId) -> core::result::Result<aya::programs::iter::IterLink, aya::programs::ProgramError>
  3917. impl aya::programs::iter::Iter
  3918. pub fn aya::programs::iter::Iter::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  3919. impl aya::programs::iter::Iter
  3920. pub fn aya::programs::iter::Iter::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  3921. impl aya::programs::iter::Iter
  3922. pub fn aya::programs::iter::Iter::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  3923. impl aya::programs::iter::Iter
  3924. pub fn aya::programs::iter::Iter::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  3925. impl aya::programs::iter::Iter
  3926. pub fn aya::programs::iter::Iter::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  3927. pub fn aya::programs::iter::Iter::unpin(self) -> core::result::Result<(), std::io::error::Error>
  3928. impl aya::programs::iter::Iter
  3929. pub fn aya::programs::iter::Iter::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  3930. impl core::fmt::Debug for aya::programs::iter::Iter
  3931. pub fn aya::programs::iter::Iter::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3932. impl core::ops::drop::Drop for aya::programs::iter::Iter
  3933. pub fn aya::programs::iter::Iter::drop(&mut self)
  3934. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::iter::Iter
  3935. pub type &'a aya::programs::iter::Iter::Error = aya::programs::ProgramError
  3936. pub fn &'a aya::programs::iter::Iter::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::iter::Iter, aya::programs::ProgramError>
  3937. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::iter::Iter
  3938. pub type &'a mut aya::programs::iter::Iter::Error = aya::programs::ProgramError
  3939. pub fn &'a mut aya::programs::iter::Iter::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::iter::Iter, aya::programs::ProgramError>
  3940. impl core::marker::Freeze for aya::programs::iter::Iter
  3941. impl core::marker::Send for aya::programs::iter::Iter
  3942. impl core::marker::Sync for aya::programs::iter::Iter
  3943. impl core::marker::Unpin for aya::programs::iter::Iter
  3944. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::iter::Iter
  3945. impl core::panic::unwind_safe::UnwindSafe for aya::programs::iter::Iter
  3946. impl<T, U> core::convert::Into<U> for aya::programs::iter::Iter where U: core::convert::From<T>
  3947. pub fn aya::programs::iter::Iter::into(self) -> U
  3948. impl<T, U> core::convert::TryFrom<U> for aya::programs::iter::Iter where U: core::convert::Into<T>
  3949. pub type aya::programs::iter::Iter::Error = core::convert::Infallible
  3950. pub fn aya::programs::iter::Iter::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3951. impl<T, U> core::convert::TryInto<U> for aya::programs::iter::Iter where U: core::convert::TryFrom<T>
  3952. pub type aya::programs::iter::Iter::Error = <U as core::convert::TryFrom<T>>::Error
  3953. pub fn aya::programs::iter::Iter::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3954. impl<T> core::any::Any for aya::programs::iter::Iter where T: 'static + ?core::marker::Sized
  3955. pub fn aya::programs::iter::Iter::type_id(&self) -> core::any::TypeId
  3956. impl<T> core::borrow::Borrow<T> for aya::programs::iter::Iter where T: ?core::marker::Sized
  3957. pub fn aya::programs::iter::Iter::borrow(&self) -> &T
  3958. impl<T> core::borrow::BorrowMut<T> for aya::programs::iter::Iter where T: ?core::marker::Sized
  3959. pub fn aya::programs::iter::Iter::borrow_mut(&mut self) -> &mut T
  3960. impl<T> core::convert::From<T> for aya::programs::iter::Iter
  3961. pub fn aya::programs::iter::Iter::from(t: T) -> T
  3962. pub struct aya::programs::iter::IterFd
  3963. impl core::fmt::Debug for aya::programs::iter::IterFd
  3964. pub fn aya::programs::iter::IterFd::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3965. impl std::os::fd::owned::AsFd for aya::programs::iter::IterFd
  3966. pub fn aya::programs::iter::IterFd::as_fd(&self) -> std::os::fd::owned::BorrowedFd<'_>
  3967. impl core::marker::Freeze for aya::programs::iter::IterFd
  3968. impl core::marker::Send for aya::programs::iter::IterFd
  3969. impl core::marker::Sync for aya::programs::iter::IterFd
  3970. impl core::marker::Unpin for aya::programs::iter::IterFd
  3971. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::iter::IterFd
  3972. impl core::panic::unwind_safe::UnwindSafe for aya::programs::iter::IterFd
  3973. impl<T, U> core::convert::Into<U> for aya::programs::iter::IterFd where U: core::convert::From<T>
  3974. pub fn aya::programs::iter::IterFd::into(self) -> U
  3975. impl<T, U> core::convert::TryFrom<U> for aya::programs::iter::IterFd where U: core::convert::Into<T>
  3976. pub type aya::programs::iter::IterFd::Error = core::convert::Infallible
  3977. pub fn aya::programs::iter::IterFd::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3978. impl<T, U> core::convert::TryInto<U> for aya::programs::iter::IterFd where U: core::convert::TryFrom<T>
  3979. pub type aya::programs::iter::IterFd::Error = <U as core::convert::TryFrom<T>>::Error
  3980. pub fn aya::programs::iter::IterFd::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3981. impl<T> core::any::Any for aya::programs::iter::IterFd where T: 'static + ?core::marker::Sized
  3982. pub fn aya::programs::iter::IterFd::type_id(&self) -> core::any::TypeId
  3983. impl<T> core::borrow::Borrow<T> for aya::programs::iter::IterFd where T: ?core::marker::Sized
  3984. pub fn aya::programs::iter::IterFd::borrow(&self) -> &T
  3985. impl<T> core::borrow::BorrowMut<T> for aya::programs::iter::IterFd where T: ?core::marker::Sized
  3986. pub fn aya::programs::iter::IterFd::borrow_mut(&mut self) -> &mut T
  3987. impl<T> core::convert::From<T> for aya::programs::iter::IterFd
  3988. pub fn aya::programs::iter::IterFd::from(t: T) -> T
  3989. pub struct aya::programs::iter::IterLink(_)
  3990. impl aya::programs::iter::IterLink
  3991. pub fn aya::programs::iter::IterLink::into_file(self) -> core::result::Result<std::fs::File, aya::programs::links::LinkError>
  3992. impl aya::programs::links::Link for aya::programs::iter::IterLink
  3993. pub type aya::programs::iter::IterLink::Id = aya::programs::iter::IterLinkId
  3994. pub fn aya::programs::iter::IterLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3995. pub fn aya::programs::iter::IterLink::id(&self) -> Self::Id
  3996. impl core::cmp::Eq for aya::programs::iter::IterLink
  3997. impl core::cmp::PartialEq for aya::programs::iter::IterLink
  3998. pub fn aya::programs::iter::IterLink::eq(&self, other: &Self) -> bool
  3999. impl core::convert::TryFrom<aya::programs::iter::IterLink> for aya::programs::links::FdLink
  4000. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  4001. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::iter::IterLink) -> core::result::Result<Self, Self::Error>
  4002. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::iter::IterLink
  4003. pub type aya::programs::iter::IterLink::Error = aya::programs::links::LinkError
  4004. pub fn aya::programs::iter::IterLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  4005. impl core::fmt::Debug for aya::programs::iter::IterLink
  4006. pub fn aya::programs::iter::IterLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4007. impl core::hash::Hash for aya::programs::iter::IterLink
  4008. pub fn aya::programs::iter::IterLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  4009. impl core::ops::drop::Drop for aya::programs::iter::IterLink
  4010. pub fn aya::programs::iter::IterLink::drop(&mut self)
  4011. impl equivalent::Equivalent<aya::programs::iter::IterLink> for aya::programs::iter::IterLinkId
  4012. pub fn aya::programs::iter::IterLinkId::equivalent(&self, key: &aya::programs::iter::IterLink) -> bool
  4013. impl core::marker::Freeze for aya::programs::iter::IterLink
  4014. impl core::marker::Send for aya::programs::iter::IterLink
  4015. impl core::marker::Sync for aya::programs::iter::IterLink
  4016. impl core::marker::Unpin for aya::programs::iter::IterLink
  4017. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::iter::IterLink
  4018. impl core::panic::unwind_safe::UnwindSafe for aya::programs::iter::IterLink
  4019. impl<Q, K> equivalent::Equivalent<K> for aya::programs::iter::IterLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  4020. pub fn aya::programs::iter::IterLink::equivalent(&self, key: &K) -> bool
  4021. impl<T, U> core::convert::Into<U> for aya::programs::iter::IterLink where U: core::convert::From<T>
  4022. pub fn aya::programs::iter::IterLink::into(self) -> U
  4023. impl<T, U> core::convert::TryFrom<U> for aya::programs::iter::IterLink where U: core::convert::Into<T>
  4024. pub type aya::programs::iter::IterLink::Error = core::convert::Infallible
  4025. pub fn aya::programs::iter::IterLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4026. impl<T, U> core::convert::TryInto<U> for aya::programs::iter::IterLink where U: core::convert::TryFrom<T>
  4027. pub type aya::programs::iter::IterLink::Error = <U as core::convert::TryFrom<T>>::Error
  4028. pub fn aya::programs::iter::IterLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4029. impl<T> core::any::Any for aya::programs::iter::IterLink where T: 'static + ?core::marker::Sized
  4030. pub fn aya::programs::iter::IterLink::type_id(&self) -> core::any::TypeId
  4031. impl<T> core::borrow::Borrow<T> for aya::programs::iter::IterLink where T: ?core::marker::Sized
  4032. pub fn aya::programs::iter::IterLink::borrow(&self) -> &T
  4033. impl<T> core::borrow::BorrowMut<T> for aya::programs::iter::IterLink where T: ?core::marker::Sized
  4034. pub fn aya::programs::iter::IterLink::borrow_mut(&mut self) -> &mut T
  4035. impl<T> core::convert::From<T> for aya::programs::iter::IterLink
  4036. pub fn aya::programs::iter::IterLink::from(t: T) -> T
  4037. pub struct aya::programs::iter::IterLinkId(_)
  4038. impl core::cmp::Eq for aya::programs::iter::IterLinkId
  4039. impl core::cmp::PartialEq for aya::programs::iter::IterLinkId
  4040. pub fn aya::programs::iter::IterLinkId::eq(&self, other: &aya::programs::iter::IterLinkId) -> bool
  4041. impl core::fmt::Debug for aya::programs::iter::IterLinkId
  4042. pub fn aya::programs::iter::IterLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4043. impl core::hash::Hash for aya::programs::iter::IterLinkId
  4044. pub fn aya::programs::iter::IterLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  4045. impl core::marker::StructuralPartialEq for aya::programs::iter::IterLinkId
  4046. impl equivalent::Equivalent<aya::programs::iter::IterLink> for aya::programs::iter::IterLinkId
  4047. pub fn aya::programs::iter::IterLinkId::equivalent(&self, key: &aya::programs::iter::IterLink) -> bool
  4048. impl core::marker::Freeze for aya::programs::iter::IterLinkId
  4049. impl core::marker::Send for aya::programs::iter::IterLinkId
  4050. impl core::marker::Sync for aya::programs::iter::IterLinkId
  4051. impl core::marker::Unpin for aya::programs::iter::IterLinkId
  4052. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::iter::IterLinkId
  4053. impl core::panic::unwind_safe::UnwindSafe for aya::programs::iter::IterLinkId
  4054. impl<Q, K> equivalent::Equivalent<K> for aya::programs::iter::IterLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  4055. pub fn aya::programs::iter::IterLinkId::equivalent(&self, key: &K) -> bool
  4056. impl<T, U> core::convert::Into<U> for aya::programs::iter::IterLinkId where U: core::convert::From<T>
  4057. pub fn aya::programs::iter::IterLinkId::into(self) -> U
  4058. impl<T, U> core::convert::TryFrom<U> for aya::programs::iter::IterLinkId where U: core::convert::Into<T>
  4059. pub type aya::programs::iter::IterLinkId::Error = core::convert::Infallible
  4060. pub fn aya::programs::iter::IterLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4061. impl<T, U> core::convert::TryInto<U> for aya::programs::iter::IterLinkId where U: core::convert::TryFrom<T>
  4062. pub type aya::programs::iter::IterLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  4063. pub fn aya::programs::iter::IterLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4064. impl<T> core::any::Any for aya::programs::iter::IterLinkId where T: 'static + ?core::marker::Sized
  4065. pub fn aya::programs::iter::IterLinkId::type_id(&self) -> core::any::TypeId
  4066. impl<T> core::borrow::Borrow<T> for aya::programs::iter::IterLinkId where T: ?core::marker::Sized
  4067. pub fn aya::programs::iter::IterLinkId::borrow(&self) -> &T
  4068. impl<T> core::borrow::BorrowMut<T> for aya::programs::iter::IterLinkId where T: ?core::marker::Sized
  4069. pub fn aya::programs::iter::IterLinkId::borrow_mut(&mut self) -> &mut T
  4070. impl<T> core::convert::From<T> for aya::programs::iter::IterLinkId
  4071. pub fn aya::programs::iter::IterLinkId::from(t: T) -> T
  4072. pub mod aya::programs::kprobe
  4073. pub enum aya::programs::kprobe::KProbeError
  4074. pub aya::programs::kprobe::KProbeError::FileError
  4075. pub aya::programs::kprobe::KProbeError::FileError::filename: std::path::PathBuf
  4076. pub aya::programs::kprobe::KProbeError::FileError::io_error: std::io::error::Error
  4077. impl core::convert::From<aya::programs::kprobe::KProbeError> for aya::programs::ProgramError
  4078. pub fn aya::programs::ProgramError::from(source: aya::programs::kprobe::KProbeError) -> Self
  4079. impl core::error::Error for aya::programs::kprobe::KProbeError
  4080. pub fn aya::programs::kprobe::KProbeError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  4081. impl core::fmt::Debug for aya::programs::kprobe::KProbeError
  4082. pub fn aya::programs::kprobe::KProbeError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4083. impl core::fmt::Display for aya::programs::kprobe::KProbeError
  4084. pub fn aya::programs::kprobe::KProbeError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4085. impl core::marker::Freeze for aya::programs::kprobe::KProbeError
  4086. impl core::marker::Send for aya::programs::kprobe::KProbeError
  4087. impl core::marker::Sync for aya::programs::kprobe::KProbeError
  4088. impl core::marker::Unpin for aya::programs::kprobe::KProbeError
  4089. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::kprobe::KProbeError
  4090. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::kprobe::KProbeError
  4091. impl<T, U> core::convert::Into<U> for aya::programs::kprobe::KProbeError where U: core::convert::From<T>
  4092. pub fn aya::programs::kprobe::KProbeError::into(self) -> U
  4093. impl<T, U> core::convert::TryFrom<U> for aya::programs::kprobe::KProbeError where U: core::convert::Into<T>
  4094. pub type aya::programs::kprobe::KProbeError::Error = core::convert::Infallible
  4095. pub fn aya::programs::kprobe::KProbeError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4096. impl<T, U> core::convert::TryInto<U> for aya::programs::kprobe::KProbeError where U: core::convert::TryFrom<T>
  4097. pub type aya::programs::kprobe::KProbeError::Error = <U as core::convert::TryFrom<T>>::Error
  4098. pub fn aya::programs::kprobe::KProbeError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4099. impl<T> alloc::string::ToString for aya::programs::kprobe::KProbeError where T: core::fmt::Display + ?core::marker::Sized
  4100. pub fn aya::programs::kprobe::KProbeError::to_string(&self) -> alloc::string::String
  4101. impl<T> core::any::Any for aya::programs::kprobe::KProbeError where T: 'static + ?core::marker::Sized
  4102. pub fn aya::programs::kprobe::KProbeError::type_id(&self) -> core::any::TypeId
  4103. impl<T> core::borrow::Borrow<T> for aya::programs::kprobe::KProbeError where T: ?core::marker::Sized
  4104. pub fn aya::programs::kprobe::KProbeError::borrow(&self) -> &T
  4105. impl<T> core::borrow::BorrowMut<T> for aya::programs::kprobe::KProbeError where T: ?core::marker::Sized
  4106. pub fn aya::programs::kprobe::KProbeError::borrow_mut(&mut self) -> &mut T
  4107. impl<T> core::convert::From<T> for aya::programs::kprobe::KProbeError
  4108. pub fn aya::programs::kprobe::KProbeError::from(t: T) -> T
  4109. pub struct aya::programs::kprobe::KProbe
  4110. impl aya::programs::kprobe::KProbe
  4111. pub const aya::programs::kprobe::KProbe::PROGRAM_TYPE: aya::programs::ProgramType
  4112. 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>
  4113. 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>
  4114. pub fn aya::programs::kprobe::KProbe::kind(&self) -> aya::programs::ProbeKind
  4115. pub fn aya::programs::kprobe::KProbe::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  4116. impl aya::programs::kprobe::KProbe
  4117. pub fn aya::programs::kprobe::KProbe::detach(&mut self, link_id: aya::programs::kprobe::KProbeLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  4118. 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>
  4119. impl aya::programs::kprobe::KProbe
  4120. pub fn aya::programs::kprobe::KProbe::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  4121. impl aya::programs::kprobe::KProbe
  4122. pub unsafe fn aya::programs::kprobe::KProbe::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>, kind: aya::programs::ProbeKind) -> core::result::Result<Self, aya::programs::ProgramError>
  4123. impl aya::programs::kprobe::KProbe
  4124. pub fn aya::programs::kprobe::KProbe::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  4125. impl aya::programs::kprobe::KProbe
  4126. pub fn aya::programs::kprobe::KProbe::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  4127. pub fn aya::programs::kprobe::KProbe::unpin(self) -> core::result::Result<(), std::io::error::Error>
  4128. impl aya::programs::kprobe::KProbe
  4129. pub fn aya::programs::kprobe::KProbe::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  4130. impl core::fmt::Debug for aya::programs::kprobe::KProbe
  4131. pub fn aya::programs::kprobe::KProbe::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4132. impl core::ops::drop::Drop for aya::programs::kprobe::KProbe
  4133. pub fn aya::programs::kprobe::KProbe::drop(&mut self)
  4134. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::kprobe::KProbe
  4135. pub type &'a aya::programs::kprobe::KProbe::Error = aya::programs::ProgramError
  4136. 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>
  4137. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::kprobe::KProbe
  4138. pub type &'a mut aya::programs::kprobe::KProbe::Error = aya::programs::ProgramError
  4139. 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>
  4140. impl core::marker::Freeze for aya::programs::kprobe::KProbe
  4141. impl core::marker::Send for aya::programs::kprobe::KProbe
  4142. impl core::marker::Sync for aya::programs::kprobe::KProbe
  4143. impl core::marker::Unpin for aya::programs::kprobe::KProbe
  4144. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::kprobe::KProbe
  4145. impl core::panic::unwind_safe::UnwindSafe for aya::programs::kprobe::KProbe
  4146. impl<T, U> core::convert::Into<U> for aya::programs::kprobe::KProbe where U: core::convert::From<T>
  4147. pub fn aya::programs::kprobe::KProbe::into(self) -> U
  4148. impl<T, U> core::convert::TryFrom<U> for aya::programs::kprobe::KProbe where U: core::convert::Into<T>
  4149. pub type aya::programs::kprobe::KProbe::Error = core::convert::Infallible
  4150. pub fn aya::programs::kprobe::KProbe::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4151. impl<T, U> core::convert::TryInto<U> for aya::programs::kprobe::KProbe where U: core::convert::TryFrom<T>
  4152. pub type aya::programs::kprobe::KProbe::Error = <U as core::convert::TryFrom<T>>::Error
  4153. pub fn aya::programs::kprobe::KProbe::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4154. impl<T> core::any::Any for aya::programs::kprobe::KProbe where T: 'static + ?core::marker::Sized
  4155. pub fn aya::programs::kprobe::KProbe::type_id(&self) -> core::any::TypeId
  4156. impl<T> core::borrow::Borrow<T> for aya::programs::kprobe::KProbe where T: ?core::marker::Sized
  4157. pub fn aya::programs::kprobe::KProbe::borrow(&self) -> &T
  4158. impl<T> core::borrow::BorrowMut<T> for aya::programs::kprobe::KProbe where T: ?core::marker::Sized
  4159. pub fn aya::programs::kprobe::KProbe::borrow_mut(&mut self) -> &mut T
  4160. impl<T> core::convert::From<T> for aya::programs::kprobe::KProbe
  4161. pub fn aya::programs::kprobe::KProbe::from(t: T) -> T
  4162. pub struct aya::programs::kprobe::KProbeLink(_)
  4163. impl aya::programs::links::Link for aya::programs::kprobe::KProbeLink
  4164. pub type aya::programs::kprobe::KProbeLink::Id = aya::programs::kprobe::KProbeLinkId
  4165. pub fn aya::programs::kprobe::KProbeLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4166. pub fn aya::programs::kprobe::KProbeLink::id(&self) -> Self::Id
  4167. impl core::cmp::Eq for aya::programs::kprobe::KProbeLink
  4168. impl core::cmp::PartialEq for aya::programs::kprobe::KProbeLink
  4169. pub fn aya::programs::kprobe::KProbeLink::eq(&self, other: &Self) -> bool
  4170. impl core::convert::TryFrom<aya::programs::kprobe::KProbeLink> for aya::programs::links::FdLink
  4171. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  4172. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::kprobe::KProbeLink) -> core::result::Result<Self, Self::Error>
  4173. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::kprobe::KProbeLink
  4174. pub type aya::programs::kprobe::KProbeLink::Error = aya::programs::links::LinkError
  4175. pub fn aya::programs::kprobe::KProbeLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  4176. impl core::fmt::Debug for aya::programs::kprobe::KProbeLink
  4177. pub fn aya::programs::kprobe::KProbeLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4178. impl core::hash::Hash for aya::programs::kprobe::KProbeLink
  4179. pub fn aya::programs::kprobe::KProbeLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  4180. impl core::ops::drop::Drop for aya::programs::kprobe::KProbeLink
  4181. pub fn aya::programs::kprobe::KProbeLink::drop(&mut self)
  4182. impl equivalent::Equivalent<aya::programs::kprobe::KProbeLink> for aya::programs::kprobe::KProbeLinkId
  4183. pub fn aya::programs::kprobe::KProbeLinkId::equivalent(&self, key: &aya::programs::kprobe::KProbeLink) -> bool
  4184. impl core::marker::Freeze for aya::programs::kprobe::KProbeLink
  4185. impl core::marker::Send for aya::programs::kprobe::KProbeLink
  4186. impl core::marker::Sync for aya::programs::kprobe::KProbeLink
  4187. impl core::marker::Unpin for aya::programs::kprobe::KProbeLink
  4188. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::kprobe::KProbeLink
  4189. impl core::panic::unwind_safe::UnwindSafe for aya::programs::kprobe::KProbeLink
  4190. impl<Q, K> equivalent::Equivalent<K> for aya::programs::kprobe::KProbeLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  4191. pub fn aya::programs::kprobe::KProbeLink::equivalent(&self, key: &K) -> bool
  4192. impl<T, U> core::convert::Into<U> for aya::programs::kprobe::KProbeLink where U: core::convert::From<T>
  4193. pub fn aya::programs::kprobe::KProbeLink::into(self) -> U
  4194. impl<T, U> core::convert::TryFrom<U> for aya::programs::kprobe::KProbeLink where U: core::convert::Into<T>
  4195. pub type aya::programs::kprobe::KProbeLink::Error = core::convert::Infallible
  4196. pub fn aya::programs::kprobe::KProbeLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4197. impl<T, U> core::convert::TryInto<U> for aya::programs::kprobe::KProbeLink where U: core::convert::TryFrom<T>
  4198. pub type aya::programs::kprobe::KProbeLink::Error = <U as core::convert::TryFrom<T>>::Error
  4199. pub fn aya::programs::kprobe::KProbeLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4200. impl<T> core::any::Any for aya::programs::kprobe::KProbeLink where T: 'static + ?core::marker::Sized
  4201. pub fn aya::programs::kprobe::KProbeLink::type_id(&self) -> core::any::TypeId
  4202. impl<T> core::borrow::Borrow<T> for aya::programs::kprobe::KProbeLink where T: ?core::marker::Sized
  4203. pub fn aya::programs::kprobe::KProbeLink::borrow(&self) -> &T
  4204. impl<T> core::borrow::BorrowMut<T> for aya::programs::kprobe::KProbeLink where T: ?core::marker::Sized
  4205. pub fn aya::programs::kprobe::KProbeLink::borrow_mut(&mut self) -> &mut T
  4206. impl<T> core::convert::From<T> for aya::programs::kprobe::KProbeLink
  4207. pub fn aya::programs::kprobe::KProbeLink::from(t: T) -> T
  4208. pub struct aya::programs::kprobe::KProbeLinkId(_)
  4209. impl core::cmp::Eq for aya::programs::kprobe::KProbeLinkId
  4210. impl core::cmp::PartialEq for aya::programs::kprobe::KProbeLinkId
  4211. pub fn aya::programs::kprobe::KProbeLinkId::eq(&self, other: &aya::programs::kprobe::KProbeLinkId) -> bool
  4212. impl core::fmt::Debug for aya::programs::kprobe::KProbeLinkId
  4213. pub fn aya::programs::kprobe::KProbeLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4214. impl core::hash::Hash for aya::programs::kprobe::KProbeLinkId
  4215. pub fn aya::programs::kprobe::KProbeLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  4216. impl core::marker::StructuralPartialEq for aya::programs::kprobe::KProbeLinkId
  4217. impl equivalent::Equivalent<aya::programs::kprobe::KProbeLink> for aya::programs::kprobe::KProbeLinkId
  4218. pub fn aya::programs::kprobe::KProbeLinkId::equivalent(&self, key: &aya::programs::kprobe::KProbeLink) -> bool
  4219. impl core::marker::Freeze for aya::programs::kprobe::KProbeLinkId
  4220. impl core::marker::Send for aya::programs::kprobe::KProbeLinkId
  4221. impl core::marker::Sync for aya::programs::kprobe::KProbeLinkId
  4222. impl core::marker::Unpin for aya::programs::kprobe::KProbeLinkId
  4223. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::kprobe::KProbeLinkId
  4224. impl core::panic::unwind_safe::UnwindSafe for aya::programs::kprobe::KProbeLinkId
  4225. impl<Q, K> equivalent::Equivalent<K> for aya::programs::kprobe::KProbeLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  4226. pub fn aya::programs::kprobe::KProbeLinkId::equivalent(&self, key: &K) -> bool
  4227. impl<T, U> core::convert::Into<U> for aya::programs::kprobe::KProbeLinkId where U: core::convert::From<T>
  4228. pub fn aya::programs::kprobe::KProbeLinkId::into(self) -> U
  4229. impl<T, U> core::convert::TryFrom<U> for aya::programs::kprobe::KProbeLinkId where U: core::convert::Into<T>
  4230. pub type aya::programs::kprobe::KProbeLinkId::Error = core::convert::Infallible
  4231. pub fn aya::programs::kprobe::KProbeLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4232. impl<T, U> core::convert::TryInto<U> for aya::programs::kprobe::KProbeLinkId where U: core::convert::TryFrom<T>
  4233. pub type aya::programs::kprobe::KProbeLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  4234. pub fn aya::programs::kprobe::KProbeLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4235. impl<T> core::any::Any for aya::programs::kprobe::KProbeLinkId where T: 'static + ?core::marker::Sized
  4236. pub fn aya::programs::kprobe::KProbeLinkId::type_id(&self) -> core::any::TypeId
  4237. impl<T> core::borrow::Borrow<T> for aya::programs::kprobe::KProbeLinkId where T: ?core::marker::Sized
  4238. pub fn aya::programs::kprobe::KProbeLinkId::borrow(&self) -> &T
  4239. impl<T> core::borrow::BorrowMut<T> for aya::programs::kprobe::KProbeLinkId where T: ?core::marker::Sized
  4240. pub fn aya::programs::kprobe::KProbeLinkId::borrow_mut(&mut self) -> &mut T
  4241. impl<T> core::convert::From<T> for aya::programs::kprobe::KProbeLinkId
  4242. pub fn aya::programs::kprobe::KProbeLinkId::from(t: T) -> T
  4243. pub mod aya::programs::links
  4244. pub enum aya::programs::links::CgroupAttachMode
  4245. pub aya::programs::links::CgroupAttachMode::AllowMultiple
  4246. pub aya::programs::links::CgroupAttachMode::AllowOverride
  4247. pub aya::programs::links::CgroupAttachMode::Single
  4248. impl core::clone::Clone for aya::programs::links::CgroupAttachMode
  4249. pub fn aya::programs::links::CgroupAttachMode::clone(&self) -> aya::programs::links::CgroupAttachMode
  4250. impl core::convert::From<aya::programs::links::CgroupAttachMode> for u32
  4251. pub fn u32::from(mode: aya::programs::links::CgroupAttachMode) -> Self
  4252. impl core::default::Default for aya::programs::links::CgroupAttachMode
  4253. pub fn aya::programs::links::CgroupAttachMode::default() -> aya::programs::links::CgroupAttachMode
  4254. impl core::fmt::Debug for aya::programs::links::CgroupAttachMode
  4255. pub fn aya::programs::links::CgroupAttachMode::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4256. impl core::marker::Copy for aya::programs::links::CgroupAttachMode
  4257. impl core::marker::Freeze for aya::programs::links::CgroupAttachMode
  4258. impl core::marker::Send for aya::programs::links::CgroupAttachMode
  4259. impl core::marker::Sync for aya::programs::links::CgroupAttachMode
  4260. impl core::marker::Unpin for aya::programs::links::CgroupAttachMode
  4261. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::CgroupAttachMode
  4262. impl core::panic::unwind_safe::UnwindSafe for aya::programs::links::CgroupAttachMode
  4263. impl<T, U> core::convert::Into<U> for aya::programs::links::CgroupAttachMode where U: core::convert::From<T>
  4264. pub fn aya::programs::links::CgroupAttachMode::into(self) -> U
  4265. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::CgroupAttachMode where U: core::convert::Into<T>
  4266. pub type aya::programs::links::CgroupAttachMode::Error = core::convert::Infallible
  4267. pub fn aya::programs::links::CgroupAttachMode::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4268. impl<T, U> core::convert::TryInto<U> for aya::programs::links::CgroupAttachMode where U: core::convert::TryFrom<T>
  4269. pub type aya::programs::links::CgroupAttachMode::Error = <U as core::convert::TryFrom<T>>::Error
  4270. pub fn aya::programs::links::CgroupAttachMode::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4271. impl<T> alloc::borrow::ToOwned for aya::programs::links::CgroupAttachMode where T: core::clone::Clone
  4272. pub type aya::programs::links::CgroupAttachMode::Owned = T
  4273. pub fn aya::programs::links::CgroupAttachMode::clone_into(&self, target: &mut T)
  4274. pub fn aya::programs::links::CgroupAttachMode::to_owned(&self) -> T
  4275. impl<T> core::any::Any for aya::programs::links::CgroupAttachMode where T: 'static + ?core::marker::Sized
  4276. pub fn aya::programs::links::CgroupAttachMode::type_id(&self) -> core::any::TypeId
  4277. impl<T> core::borrow::Borrow<T> for aya::programs::links::CgroupAttachMode where T: ?core::marker::Sized
  4278. pub fn aya::programs::links::CgroupAttachMode::borrow(&self) -> &T
  4279. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::CgroupAttachMode where T: ?core::marker::Sized
  4280. pub fn aya::programs::links::CgroupAttachMode::borrow_mut(&mut self) -> &mut T
  4281. impl<T> core::clone::CloneToUninit for aya::programs::links::CgroupAttachMode where T: core::clone::Clone
  4282. pub unsafe fn aya::programs::links::CgroupAttachMode::clone_to_uninit(&self, dest: *mut u8)
  4283. impl<T> core::convert::From<T> for aya::programs::links::CgroupAttachMode
  4284. pub fn aya::programs::links::CgroupAttachMode::from(t: T) -> T
  4285. pub enum aya::programs::links::LinkError
  4286. pub aya::programs::links::LinkError::InvalidLink
  4287. pub aya::programs::links::LinkError::SyscallError(aya::sys::SyscallError)
  4288. pub aya::programs::links::LinkError::UnknownLinkType(u32)
  4289. impl core::convert::From<aya::sys::SyscallError> for aya::programs::links::LinkError
  4290. pub fn aya::programs::links::LinkError::from(source: aya::sys::SyscallError) -> Self
  4291. impl core::error::Error for aya::programs::links::LinkError
  4292. pub fn aya::programs::links::LinkError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  4293. impl core::fmt::Debug for aya::programs::links::LinkError
  4294. pub fn aya::programs::links::LinkError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4295. impl core::fmt::Display for aya::programs::links::LinkError
  4296. pub fn aya::programs::links::LinkError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4297. impl core::marker::Freeze for aya::programs::links::LinkError
  4298. impl core::marker::Send for aya::programs::links::LinkError
  4299. impl core::marker::Sync for aya::programs::links::LinkError
  4300. impl core::marker::Unpin for aya::programs::links::LinkError
  4301. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::LinkError
  4302. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::links::LinkError
  4303. impl<T, U> core::convert::Into<U> for aya::programs::links::LinkError where U: core::convert::From<T>
  4304. pub fn aya::programs::links::LinkError::into(self) -> U
  4305. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::LinkError where U: core::convert::Into<T>
  4306. pub type aya::programs::links::LinkError::Error = core::convert::Infallible
  4307. pub fn aya::programs::links::LinkError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4308. impl<T, U> core::convert::TryInto<U> for aya::programs::links::LinkError where U: core::convert::TryFrom<T>
  4309. pub type aya::programs::links::LinkError::Error = <U as core::convert::TryFrom<T>>::Error
  4310. pub fn aya::programs::links::LinkError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4311. impl<T> alloc::string::ToString for aya::programs::links::LinkError where T: core::fmt::Display + ?core::marker::Sized
  4312. pub fn aya::programs::links::LinkError::to_string(&self) -> alloc::string::String
  4313. impl<T> core::any::Any for aya::programs::links::LinkError where T: 'static + ?core::marker::Sized
  4314. pub fn aya::programs::links::LinkError::type_id(&self) -> core::any::TypeId
  4315. impl<T> core::borrow::Borrow<T> for aya::programs::links::LinkError where T: ?core::marker::Sized
  4316. pub fn aya::programs::links::LinkError::borrow(&self) -> &T
  4317. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::LinkError where T: ?core::marker::Sized
  4318. pub fn aya::programs::links::LinkError::borrow_mut(&mut self) -> &mut T
  4319. impl<T> core::convert::From<T> for aya::programs::links::LinkError
  4320. pub fn aya::programs::links::LinkError::from(t: T) -> T
  4321. #[non_exhaustive] pub enum aya::programs::links::LinkType
  4322. pub aya::programs::links::LinkType::Cgroup = 3
  4323. pub aya::programs::links::LinkType::Iter = 4
  4324. pub aya::programs::links::LinkType::KProbeMulti = 8
  4325. pub aya::programs::links::LinkType::Netfilter = 10
  4326. pub aya::programs::links::LinkType::Netkit = 13
  4327. pub aya::programs::links::LinkType::Netns = 5
  4328. pub aya::programs::links::LinkType::PerfEvent = 7
  4329. pub aya::programs::links::LinkType::RawTracePoint = 1
  4330. pub aya::programs::links::LinkType::StructOps = 9
  4331. pub aya::programs::links::LinkType::Tcx = 11
  4332. pub aya::programs::links::LinkType::Tracing = 2
  4333. pub aya::programs::links::LinkType::UProbeMulti = 12
  4334. pub aya::programs::links::LinkType::Unspecified = 0
  4335. pub aya::programs::links::LinkType::Xdp = 6
  4336. impl core::clone::Clone for aya::programs::links::LinkType
  4337. pub fn aya::programs::links::LinkType::clone(&self) -> aya::programs::links::LinkType
  4338. impl core::cmp::PartialEq for aya::programs::links::LinkType
  4339. pub fn aya::programs::links::LinkType::eq(&self, other: &aya::programs::links::LinkType) -> bool
  4340. impl core::convert::TryFrom<aya_obj::generated::linux_bindings_x86_64::bpf_link_type> for aya::programs::links::LinkType
  4341. pub type aya::programs::links::LinkType::Error = aya::programs::links::LinkError
  4342. pub fn aya::programs::links::LinkType::try_from(link_type: aya_obj::generated::linux_bindings_x86_64::bpf_link_type) -> core::result::Result<Self, Self::Error>
  4343. impl core::fmt::Debug for aya::programs::links::LinkType
  4344. pub fn aya::programs::links::LinkType::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4345. impl core::marker::Copy for aya::programs::links::LinkType
  4346. impl core::marker::StructuralPartialEq for aya::programs::links::LinkType
  4347. impl core::marker::Freeze for aya::programs::links::LinkType
  4348. impl core::marker::Send for aya::programs::links::LinkType
  4349. impl core::marker::Sync for aya::programs::links::LinkType
  4350. impl core::marker::Unpin for aya::programs::links::LinkType
  4351. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::LinkType
  4352. impl core::panic::unwind_safe::UnwindSafe for aya::programs::links::LinkType
  4353. impl<T, U> core::convert::Into<U> for aya::programs::links::LinkType where U: core::convert::From<T>
  4354. pub fn aya::programs::links::LinkType::into(self) -> U
  4355. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::LinkType where U: core::convert::Into<T>
  4356. pub type aya::programs::links::LinkType::Error = core::convert::Infallible
  4357. pub fn aya::programs::links::LinkType::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4358. impl<T, U> core::convert::TryInto<U> for aya::programs::links::LinkType where U: core::convert::TryFrom<T>
  4359. pub type aya::programs::links::LinkType::Error = <U as core::convert::TryFrom<T>>::Error
  4360. pub fn aya::programs::links::LinkType::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4361. impl<T> alloc::borrow::ToOwned for aya::programs::links::LinkType where T: core::clone::Clone
  4362. pub type aya::programs::links::LinkType::Owned = T
  4363. pub fn aya::programs::links::LinkType::clone_into(&self, target: &mut T)
  4364. pub fn aya::programs::links::LinkType::to_owned(&self) -> T
  4365. impl<T> core::any::Any for aya::programs::links::LinkType where T: 'static + ?core::marker::Sized
  4366. pub fn aya::programs::links::LinkType::type_id(&self) -> core::any::TypeId
  4367. impl<T> core::borrow::Borrow<T> for aya::programs::links::LinkType where T: ?core::marker::Sized
  4368. pub fn aya::programs::links::LinkType::borrow(&self) -> &T
  4369. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::LinkType where T: ?core::marker::Sized
  4370. pub fn aya::programs::links::LinkType::borrow_mut(&mut self) -> &mut T
  4371. impl<T> core::clone::CloneToUninit for aya::programs::links::LinkType where T: core::clone::Clone
  4372. pub unsafe fn aya::programs::links::LinkType::clone_to_uninit(&self, dest: *mut u8)
  4373. impl<T> core::convert::From<T> for aya::programs::links::LinkType
  4374. pub fn aya::programs::links::LinkType::from(t: T) -> T
  4375. pub struct aya::programs::links::FdLink
  4376. impl aya::programs::links::FdLink
  4377. pub fn aya::programs::links::FdLink::info(&self) -> core::result::Result<aya::programs::links::LinkInfo, aya::programs::links::LinkError>
  4378. 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>
  4379. impl aya::programs::links::Link for aya::programs::links::FdLink
  4380. pub type aya::programs::links::FdLink::Id = aya::programs::links::FdLinkId
  4381. pub fn aya::programs::links::FdLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4382. pub fn aya::programs::links::FdLink::id(&self) -> Self::Id
  4383. impl core::cmp::Eq for aya::programs::links::FdLink
  4384. impl core::cmp::PartialEq for aya::programs::links::FdLink
  4385. pub fn aya::programs::links::FdLink::eq(&self, other: &Self) -> bool
  4386. impl core::convert::From<aya::programs::extension::ExtensionLink> for aya::programs::links::FdLink
  4387. pub fn aya::programs::links::FdLink::from(w: aya::programs::extension::ExtensionLink) -> aya::programs::links::FdLink
  4388. impl core::convert::From<aya::programs::fentry::FEntryLink> for aya::programs::links::FdLink
  4389. pub fn aya::programs::links::FdLink::from(w: aya::programs::fentry::FEntryLink) -> aya::programs::links::FdLink
  4390. impl core::convert::From<aya::programs::fexit::FExitLink> for aya::programs::links::FdLink
  4391. pub fn aya::programs::links::FdLink::from(w: aya::programs::fexit::FExitLink) -> aya::programs::links::FdLink
  4392. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::extension::ExtensionLink
  4393. pub fn aya::programs::extension::ExtensionLink::from(b: aya::programs::links::FdLink) -> aya::programs::extension::ExtensionLink
  4394. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::fentry::FEntryLink
  4395. pub fn aya::programs::fentry::FEntryLink::from(b: aya::programs::links::FdLink) -> aya::programs::fentry::FEntryLink
  4396. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::fexit::FExitLink
  4397. pub fn aya::programs::fexit::FExitLink::from(b: aya::programs::links::FdLink) -> aya::programs::fexit::FExitLink
  4398. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::lsm::LsmLink
  4399. pub fn aya::programs::lsm::LsmLink::from(b: aya::programs::links::FdLink) -> aya::programs::lsm::LsmLink
  4400. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::raw_trace_point::RawTracePointLink
  4401. pub fn aya::programs::raw_trace_point::RawTracePointLink::from(b: aya::programs::links::FdLink) -> aya::programs::raw_trace_point::RawTracePointLink
  4402. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::sk_lookup::SkLookupLink
  4403. pub fn aya::programs::sk_lookup::SkLookupLink::from(b: aya::programs::links::FdLink) -> aya::programs::sk_lookup::SkLookupLink
  4404. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::tp_btf::BtfTracePointLink
  4405. pub fn aya::programs::tp_btf::BtfTracePointLink::from(b: aya::programs::links::FdLink) -> aya::programs::tp_btf::BtfTracePointLink
  4406. impl core::convert::From<aya::programs::links::PinnedLink> for aya::programs::links::FdLink
  4407. pub fn aya::programs::links::FdLink::from(p: aya::programs::links::PinnedLink) -> Self
  4408. impl core::convert::From<aya::programs::lsm::LsmLink> for aya::programs::links::FdLink
  4409. pub fn aya::programs::links::FdLink::from(w: aya::programs::lsm::LsmLink) -> aya::programs::links::FdLink
  4410. impl core::convert::From<aya::programs::raw_trace_point::RawTracePointLink> for aya::programs::links::FdLink
  4411. pub fn aya::programs::links::FdLink::from(w: aya::programs::raw_trace_point::RawTracePointLink) -> aya::programs::links::FdLink
  4412. impl core::convert::From<aya::programs::sk_lookup::SkLookupLink> for aya::programs::links::FdLink
  4413. pub fn aya::programs::links::FdLink::from(w: aya::programs::sk_lookup::SkLookupLink) -> aya::programs::links::FdLink
  4414. impl core::convert::From<aya::programs::tp_btf::BtfTracePointLink> for aya::programs::links::FdLink
  4415. pub fn aya::programs::links::FdLink::from(w: aya::programs::tp_btf::BtfTracePointLink) -> aya::programs::links::FdLink
  4416. impl core::convert::TryFrom<aya::programs::cgroup_skb::CgroupSkbLink> for aya::programs::links::FdLink
  4417. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  4418. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::cgroup_skb::CgroupSkbLink) -> core::result::Result<Self, Self::Error>
  4419. impl core::convert::TryFrom<aya::programs::cgroup_sock::CgroupSockLink> for aya::programs::links::FdLink
  4420. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  4421. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::cgroup_sock::CgroupSockLink) -> core::result::Result<Self, Self::Error>
  4422. impl core::convert::TryFrom<aya::programs::cgroup_sock_addr::CgroupSockAddrLink> for aya::programs::links::FdLink
  4423. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  4424. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::cgroup_sock_addr::CgroupSockAddrLink) -> core::result::Result<Self, Self::Error>
  4425. impl core::convert::TryFrom<aya::programs::iter::IterLink> for aya::programs::links::FdLink
  4426. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  4427. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::iter::IterLink) -> core::result::Result<Self, Self::Error>
  4428. impl core::convert::TryFrom<aya::programs::kprobe::KProbeLink> for aya::programs::links::FdLink
  4429. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  4430. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::kprobe::KProbeLink) -> core::result::Result<Self, Self::Error>
  4431. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::iter::IterLink
  4432. pub type aya::programs::iter::IterLink::Error = aya::programs::links::LinkError
  4433. pub fn aya::programs::iter::IterLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  4434. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::kprobe::KProbeLink
  4435. pub type aya::programs::kprobe::KProbeLink::Error = aya::programs::links::LinkError
  4436. pub fn aya::programs::kprobe::KProbeLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  4437. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::perf_event::PerfEventLink
  4438. pub type aya::programs::perf_event::PerfEventLink::Error = aya::programs::links::LinkError
  4439. pub fn aya::programs::perf_event::PerfEventLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  4440. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::tc::SchedClassifierLink
  4441. pub type aya::programs::tc::SchedClassifierLink::Error = aya::programs::links::LinkError
  4442. pub fn aya::programs::tc::SchedClassifierLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  4443. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::trace_point::TracePointLink
  4444. pub type aya::programs::trace_point::TracePointLink::Error = aya::programs::links::LinkError
  4445. pub fn aya::programs::trace_point::TracePointLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  4446. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::uprobe::UProbeLink
  4447. pub type aya::programs::uprobe::UProbeLink::Error = aya::programs::links::LinkError
  4448. pub fn aya::programs::uprobe::UProbeLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  4449. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::xdp::XdpLink
  4450. pub type aya::programs::xdp::XdpLink::Error = aya::programs::links::LinkError
  4451. pub fn aya::programs::xdp::XdpLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  4452. impl core::convert::TryFrom<aya::programs::perf_event::PerfEventLink> for aya::programs::links::FdLink
  4453. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  4454. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::perf_event::PerfEventLink) -> core::result::Result<Self, Self::Error>
  4455. impl core::convert::TryFrom<aya::programs::sock_ops::SockOpsLink> for aya::programs::links::FdLink
  4456. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  4457. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::sock_ops::SockOpsLink) -> core::result::Result<Self, Self::Error>
  4458. impl core::convert::TryFrom<aya::programs::tc::SchedClassifierLink> for aya::programs::links::FdLink
  4459. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  4460. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::tc::SchedClassifierLink) -> core::result::Result<Self, Self::Error>
  4461. impl core::convert::TryFrom<aya::programs::trace_point::TracePointLink> for aya::programs::links::FdLink
  4462. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  4463. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::trace_point::TracePointLink) -> core::result::Result<Self, Self::Error>
  4464. impl core::convert::TryFrom<aya::programs::uprobe::UProbeLink> for aya::programs::links::FdLink
  4465. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  4466. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::uprobe::UProbeLink) -> core::result::Result<Self, Self::Error>
  4467. impl core::convert::TryFrom<aya::programs::xdp::XdpLink> for aya::programs::links::FdLink
  4468. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  4469. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::xdp::XdpLink) -> core::result::Result<Self, Self::Error>
  4470. impl core::fmt::Debug for aya::programs::links::FdLink
  4471. pub fn aya::programs::links::FdLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4472. impl core::hash::Hash for aya::programs::links::FdLink
  4473. pub fn aya::programs::links::FdLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  4474. impl equivalent::Equivalent<aya::programs::links::FdLink> for aya::programs::links::FdLinkId
  4475. pub fn aya::programs::links::FdLinkId::equivalent(&self, key: &aya::programs::links::FdLink) -> bool
  4476. impl<'a> core::convert::TryFrom<&'a aya::programs::tc::SchedClassifierLink> for &'a aya::programs::links::FdLink
  4477. pub type &'a aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  4478. pub fn &'a aya::programs::links::FdLink::try_from(value: &'a aya::programs::tc::SchedClassifierLink) -> core::result::Result<Self, Self::Error>
  4479. impl core::marker::Freeze for aya::programs::links::FdLink
  4480. impl core::marker::Send for aya::programs::links::FdLink
  4481. impl core::marker::Sync for aya::programs::links::FdLink
  4482. impl core::marker::Unpin for aya::programs::links::FdLink
  4483. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::FdLink
  4484. impl core::panic::unwind_safe::UnwindSafe for aya::programs::links::FdLink
  4485. impl<Q, K> equivalent::Equivalent<K> for aya::programs::links::FdLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  4486. pub fn aya::programs::links::FdLink::equivalent(&self, key: &K) -> bool
  4487. impl<T, U> core::convert::Into<U> for aya::programs::links::FdLink where U: core::convert::From<T>
  4488. pub fn aya::programs::links::FdLink::into(self) -> U
  4489. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::FdLink where U: core::convert::Into<T>
  4490. pub type aya::programs::links::FdLink::Error = core::convert::Infallible
  4491. pub fn aya::programs::links::FdLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4492. impl<T, U> core::convert::TryInto<U> for aya::programs::links::FdLink where U: core::convert::TryFrom<T>
  4493. pub type aya::programs::links::FdLink::Error = <U as core::convert::TryFrom<T>>::Error
  4494. pub fn aya::programs::links::FdLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4495. impl<T> core::any::Any for aya::programs::links::FdLink where T: 'static + ?core::marker::Sized
  4496. pub fn aya::programs::links::FdLink::type_id(&self) -> core::any::TypeId
  4497. impl<T> core::borrow::Borrow<T> for aya::programs::links::FdLink where T: ?core::marker::Sized
  4498. pub fn aya::programs::links::FdLink::borrow(&self) -> &T
  4499. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::FdLink where T: ?core::marker::Sized
  4500. pub fn aya::programs::links::FdLink::borrow_mut(&mut self) -> &mut T
  4501. impl<T> core::convert::From<T> for aya::programs::links::FdLink
  4502. pub fn aya::programs::links::FdLink::from(t: T) -> T
  4503. pub struct aya::programs::links::FdLinkId(_)
  4504. impl core::cmp::Eq for aya::programs::links::FdLinkId
  4505. impl core::cmp::PartialEq for aya::programs::links::FdLinkId
  4506. pub fn aya::programs::links::FdLinkId::eq(&self, other: &aya::programs::links::FdLinkId) -> bool
  4507. impl core::fmt::Debug for aya::programs::links::FdLinkId
  4508. pub fn aya::programs::links::FdLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4509. impl core::hash::Hash for aya::programs::links::FdLinkId
  4510. pub fn aya::programs::links::FdLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  4511. impl core::marker::StructuralPartialEq for aya::programs::links::FdLinkId
  4512. impl equivalent::Equivalent<aya::programs::links::FdLink> for aya::programs::links::FdLinkId
  4513. pub fn aya::programs::links::FdLinkId::equivalent(&self, key: &aya::programs::links::FdLink) -> bool
  4514. impl core::marker::Freeze for aya::programs::links::FdLinkId
  4515. impl core::marker::Send for aya::programs::links::FdLinkId
  4516. impl core::marker::Sync for aya::programs::links::FdLinkId
  4517. impl core::marker::Unpin for aya::programs::links::FdLinkId
  4518. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::FdLinkId
  4519. impl core::panic::unwind_safe::UnwindSafe for aya::programs::links::FdLinkId
  4520. impl<Q, K> equivalent::Equivalent<K> for aya::programs::links::FdLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  4521. pub fn aya::programs::links::FdLinkId::equivalent(&self, key: &K) -> bool
  4522. impl<T, U> core::convert::Into<U> for aya::programs::links::FdLinkId where U: core::convert::From<T>
  4523. pub fn aya::programs::links::FdLinkId::into(self) -> U
  4524. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::FdLinkId where U: core::convert::Into<T>
  4525. pub type aya::programs::links::FdLinkId::Error = core::convert::Infallible
  4526. pub fn aya::programs::links::FdLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4527. impl<T, U> core::convert::TryInto<U> for aya::programs::links::FdLinkId where U: core::convert::TryFrom<T>
  4528. pub type aya::programs::links::FdLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  4529. pub fn aya::programs::links::FdLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4530. impl<T> core::any::Any for aya::programs::links::FdLinkId where T: 'static + ?core::marker::Sized
  4531. pub fn aya::programs::links::FdLinkId::type_id(&self) -> core::any::TypeId
  4532. impl<T> core::borrow::Borrow<T> for aya::programs::links::FdLinkId where T: ?core::marker::Sized
  4533. pub fn aya::programs::links::FdLinkId::borrow(&self) -> &T
  4534. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::FdLinkId where T: ?core::marker::Sized
  4535. pub fn aya::programs::links::FdLinkId::borrow_mut(&mut self) -> &mut T
  4536. impl<T> core::convert::From<T> for aya::programs::links::FdLinkId
  4537. pub fn aya::programs::links::FdLinkId::from(t: T) -> T
  4538. pub struct aya::programs::links::LinkInfo(_)
  4539. impl aya::programs::links::LinkInfo
  4540. pub fn aya::programs::links::LinkInfo::id(&self) -> u32
  4541. pub fn aya::programs::links::LinkInfo::link_type(&self) -> core::result::Result<aya::programs::links::LinkType, aya::programs::links::LinkError>
  4542. pub fn aya::programs::links::LinkInfo::program_id(&self) -> u32
  4543. impl core::marker::Freeze for aya::programs::links::LinkInfo
  4544. impl core::marker::Send for aya::programs::links::LinkInfo
  4545. impl core::marker::Sync for aya::programs::links::LinkInfo
  4546. impl core::marker::Unpin for aya::programs::links::LinkInfo
  4547. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::LinkInfo
  4548. impl core::panic::unwind_safe::UnwindSafe for aya::programs::links::LinkInfo
  4549. impl<T, U> core::convert::Into<U> for aya::programs::links::LinkInfo where U: core::convert::From<T>
  4550. pub fn aya::programs::links::LinkInfo::into(self) -> U
  4551. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::LinkInfo where U: core::convert::Into<T>
  4552. pub type aya::programs::links::LinkInfo::Error = core::convert::Infallible
  4553. pub fn aya::programs::links::LinkInfo::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4554. impl<T, U> core::convert::TryInto<U> for aya::programs::links::LinkInfo where U: core::convert::TryFrom<T>
  4555. pub type aya::programs::links::LinkInfo::Error = <U as core::convert::TryFrom<T>>::Error
  4556. pub fn aya::programs::links::LinkInfo::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4557. impl<T> core::any::Any for aya::programs::links::LinkInfo where T: 'static + ?core::marker::Sized
  4558. pub fn aya::programs::links::LinkInfo::type_id(&self) -> core::any::TypeId
  4559. impl<T> core::borrow::Borrow<T> for aya::programs::links::LinkInfo where T: ?core::marker::Sized
  4560. pub fn aya::programs::links::LinkInfo::borrow(&self) -> &T
  4561. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::LinkInfo where T: ?core::marker::Sized
  4562. pub fn aya::programs::links::LinkInfo::borrow_mut(&mut self) -> &mut T
  4563. impl<T> core::convert::From<T> for aya::programs::links::LinkInfo
  4564. pub fn aya::programs::links::LinkInfo::from(t: T) -> T
  4565. pub struct aya::programs::links::LinkOrder
  4566. impl aya::programs::links::LinkOrder
  4567. pub fn aya::programs::links::LinkOrder::after_link<L: aya::programs::MultiProgLink>(link: &L) -> core::result::Result<Self, aya::programs::links::LinkError>
  4568. pub fn aya::programs::links::LinkOrder::after_program<P: aya::programs::MultiProgram>(program: &P) -> core::result::Result<Self, aya::programs::ProgramError>
  4569. pub fn aya::programs::links::LinkOrder::after_program_id(id: aya::programs::ProgramId) -> Self
  4570. pub fn aya::programs::links::LinkOrder::before_link<L: aya::programs::MultiProgLink>(link: &L) -> core::result::Result<Self, aya::programs::links::LinkError>
  4571. pub fn aya::programs::links::LinkOrder::before_program<P: aya::programs::MultiProgram>(program: &P) -> core::result::Result<Self, aya::programs::ProgramError>
  4572. pub fn aya::programs::links::LinkOrder::before_program_id(id: aya::programs::ProgramId) -> Self
  4573. pub fn aya::programs::links::LinkOrder::first() -> Self
  4574. pub fn aya::programs::links::LinkOrder::last() -> Self
  4575. impl core::default::Default for aya::programs::links::LinkOrder
  4576. pub fn aya::programs::links::LinkOrder::default() -> Self
  4577. impl core::fmt::Debug for aya::programs::links::LinkOrder
  4578. pub fn aya::programs::links::LinkOrder::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4579. impl core::marker::Freeze for aya::programs::links::LinkOrder
  4580. impl core::marker::Send for aya::programs::links::LinkOrder
  4581. impl core::marker::Sync for aya::programs::links::LinkOrder
  4582. impl core::marker::Unpin for aya::programs::links::LinkOrder
  4583. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::LinkOrder
  4584. impl core::panic::unwind_safe::UnwindSafe for aya::programs::links::LinkOrder
  4585. impl<T, U> core::convert::Into<U> for aya::programs::links::LinkOrder where U: core::convert::From<T>
  4586. pub fn aya::programs::links::LinkOrder::into(self) -> U
  4587. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::LinkOrder where U: core::convert::Into<T>
  4588. pub type aya::programs::links::LinkOrder::Error = core::convert::Infallible
  4589. pub fn aya::programs::links::LinkOrder::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4590. impl<T, U> core::convert::TryInto<U> for aya::programs::links::LinkOrder where U: core::convert::TryFrom<T>
  4591. pub type aya::programs::links::LinkOrder::Error = <U as core::convert::TryFrom<T>>::Error
  4592. pub fn aya::programs::links::LinkOrder::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4593. impl<T> core::any::Any for aya::programs::links::LinkOrder where T: 'static + ?core::marker::Sized
  4594. pub fn aya::programs::links::LinkOrder::type_id(&self) -> core::any::TypeId
  4595. impl<T> core::borrow::Borrow<T> for aya::programs::links::LinkOrder where T: ?core::marker::Sized
  4596. pub fn aya::programs::links::LinkOrder::borrow(&self) -> &T
  4597. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::LinkOrder where T: ?core::marker::Sized
  4598. pub fn aya::programs::links::LinkOrder::borrow_mut(&mut self) -> &mut T
  4599. impl<T> core::convert::From<T> for aya::programs::links::LinkOrder
  4600. pub fn aya::programs::links::LinkOrder::from(t: T) -> T
  4601. pub struct aya::programs::links::PinnedLink
  4602. impl aya::programs::links::PinnedLink
  4603. 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>
  4604. pub fn aya::programs::links::PinnedLink::unpin(self) -> core::result::Result<aya::programs::links::FdLink, std::io::error::Error>
  4605. impl core::convert::From<aya::programs::links::PinnedLink> for aya::programs::links::FdLink
  4606. pub fn aya::programs::links::FdLink::from(p: aya::programs::links::PinnedLink) -> Self
  4607. impl core::fmt::Debug for aya::programs::links::PinnedLink
  4608. pub fn aya::programs::links::PinnedLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4609. impl core::marker::Freeze for aya::programs::links::PinnedLink
  4610. impl core::marker::Send for aya::programs::links::PinnedLink
  4611. impl core::marker::Sync for aya::programs::links::PinnedLink
  4612. impl core::marker::Unpin for aya::programs::links::PinnedLink
  4613. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::PinnedLink
  4614. impl core::panic::unwind_safe::UnwindSafe for aya::programs::links::PinnedLink
  4615. impl<T, U> core::convert::Into<U> for aya::programs::links::PinnedLink where U: core::convert::From<T>
  4616. pub fn aya::programs::links::PinnedLink::into(self) -> U
  4617. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::PinnedLink where U: core::convert::Into<T>
  4618. pub type aya::programs::links::PinnedLink::Error = core::convert::Infallible
  4619. pub fn aya::programs::links::PinnedLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4620. impl<T, U> core::convert::TryInto<U> for aya::programs::links::PinnedLink where U: core::convert::TryFrom<T>
  4621. pub type aya::programs::links::PinnedLink::Error = <U as core::convert::TryFrom<T>>::Error
  4622. pub fn aya::programs::links::PinnedLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4623. impl<T> core::any::Any for aya::programs::links::PinnedLink where T: 'static + ?core::marker::Sized
  4624. pub fn aya::programs::links::PinnedLink::type_id(&self) -> core::any::TypeId
  4625. impl<T> core::borrow::Borrow<T> for aya::programs::links::PinnedLink where T: ?core::marker::Sized
  4626. pub fn aya::programs::links::PinnedLink::borrow(&self) -> &T
  4627. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::PinnedLink where T: ?core::marker::Sized
  4628. pub fn aya::programs::links::PinnedLink::borrow_mut(&mut self) -> &mut T
  4629. impl<T> core::convert::From<T> for aya::programs::links::PinnedLink
  4630. pub fn aya::programs::links::PinnedLink::from(t: T) -> T
  4631. pub struct aya::programs::links::ProgAttachLink
  4632. impl aya::programs::links::Link for aya::programs::links::ProgAttachLink
  4633. pub type aya::programs::links::ProgAttachLink::Id = aya::programs::links::ProgAttachLinkId
  4634. pub fn aya::programs::links::ProgAttachLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4635. pub fn aya::programs::links::ProgAttachLink::id(&self) -> Self::Id
  4636. impl core::cmp::Eq for aya::programs::links::ProgAttachLink
  4637. impl core::cmp::PartialEq for aya::programs::links::ProgAttachLink
  4638. pub fn aya::programs::links::ProgAttachLink::eq(&self, other: &Self) -> bool
  4639. impl core::convert::From<aya::programs::links::ProgAttachLink> for aya::programs::sk_msg::SkMsgLink
  4640. pub fn aya::programs::sk_msg::SkMsgLink::from(b: aya::programs::links::ProgAttachLink) -> aya::programs::sk_msg::SkMsgLink
  4641. impl core::convert::From<aya::programs::links::ProgAttachLink> for aya::programs::sk_skb::SkSkbLink
  4642. pub fn aya::programs::sk_skb::SkSkbLink::from(b: aya::programs::links::ProgAttachLink) -> aya::programs::sk_skb::SkSkbLink
  4643. impl core::convert::From<aya::programs::sk_msg::SkMsgLink> for aya::programs::links::ProgAttachLink
  4644. pub fn aya::programs::links::ProgAttachLink::from(w: aya::programs::sk_msg::SkMsgLink) -> aya::programs::links::ProgAttachLink
  4645. impl core::convert::From<aya::programs::sk_skb::SkSkbLink> for aya::programs::links::ProgAttachLink
  4646. pub fn aya::programs::links::ProgAttachLink::from(w: aya::programs::sk_skb::SkSkbLink) -> aya::programs::links::ProgAttachLink
  4647. impl core::fmt::Debug for aya::programs::links::ProgAttachLink
  4648. pub fn aya::programs::links::ProgAttachLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4649. impl core::hash::Hash for aya::programs::links::ProgAttachLink
  4650. pub fn aya::programs::links::ProgAttachLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  4651. impl equivalent::Equivalent<aya::programs::links::ProgAttachLink> for aya::programs::links::ProgAttachLinkId
  4652. pub fn aya::programs::links::ProgAttachLinkId::equivalent(&self, key: &aya::programs::links::ProgAttachLink) -> bool
  4653. impl core::marker::Freeze for aya::programs::links::ProgAttachLink
  4654. impl core::marker::Send for aya::programs::links::ProgAttachLink
  4655. impl core::marker::Sync for aya::programs::links::ProgAttachLink
  4656. impl core::marker::Unpin for aya::programs::links::ProgAttachLink
  4657. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::ProgAttachLink
  4658. impl core::panic::unwind_safe::UnwindSafe for aya::programs::links::ProgAttachLink
  4659. impl<Q, K> equivalent::Equivalent<K> for aya::programs::links::ProgAttachLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  4660. pub fn aya::programs::links::ProgAttachLink::equivalent(&self, key: &K) -> bool
  4661. impl<T, U> core::convert::Into<U> for aya::programs::links::ProgAttachLink where U: core::convert::From<T>
  4662. pub fn aya::programs::links::ProgAttachLink::into(self) -> U
  4663. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::ProgAttachLink where U: core::convert::Into<T>
  4664. pub type aya::programs::links::ProgAttachLink::Error = core::convert::Infallible
  4665. pub fn aya::programs::links::ProgAttachLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4666. impl<T, U> core::convert::TryInto<U> for aya::programs::links::ProgAttachLink where U: core::convert::TryFrom<T>
  4667. pub type aya::programs::links::ProgAttachLink::Error = <U as core::convert::TryFrom<T>>::Error
  4668. pub fn aya::programs::links::ProgAttachLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4669. impl<T> core::any::Any for aya::programs::links::ProgAttachLink where T: 'static + ?core::marker::Sized
  4670. pub fn aya::programs::links::ProgAttachLink::type_id(&self) -> core::any::TypeId
  4671. impl<T> core::borrow::Borrow<T> for aya::programs::links::ProgAttachLink where T: ?core::marker::Sized
  4672. pub fn aya::programs::links::ProgAttachLink::borrow(&self) -> &T
  4673. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::ProgAttachLink where T: ?core::marker::Sized
  4674. pub fn aya::programs::links::ProgAttachLink::borrow_mut(&mut self) -> &mut T
  4675. impl<T> core::convert::From<T> for aya::programs::links::ProgAttachLink
  4676. pub fn aya::programs::links::ProgAttachLink::from(t: T) -> T
  4677. pub struct aya::programs::links::ProgAttachLinkId(_, _, _)
  4678. impl core::cmp::Eq for aya::programs::links::ProgAttachLinkId
  4679. impl core::cmp::PartialEq for aya::programs::links::ProgAttachLinkId
  4680. pub fn aya::programs::links::ProgAttachLinkId::eq(&self, other: &aya::programs::links::ProgAttachLinkId) -> bool
  4681. impl core::fmt::Debug for aya::programs::links::ProgAttachLinkId
  4682. pub fn aya::programs::links::ProgAttachLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4683. impl core::hash::Hash for aya::programs::links::ProgAttachLinkId
  4684. pub fn aya::programs::links::ProgAttachLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  4685. impl core::marker::StructuralPartialEq for aya::programs::links::ProgAttachLinkId
  4686. impl equivalent::Equivalent<aya::programs::links::ProgAttachLink> for aya::programs::links::ProgAttachLinkId
  4687. pub fn aya::programs::links::ProgAttachLinkId::equivalent(&self, key: &aya::programs::links::ProgAttachLink) -> bool
  4688. impl core::marker::Freeze for aya::programs::links::ProgAttachLinkId
  4689. impl core::marker::Send for aya::programs::links::ProgAttachLinkId
  4690. impl core::marker::Sync for aya::programs::links::ProgAttachLinkId
  4691. impl core::marker::Unpin for aya::programs::links::ProgAttachLinkId
  4692. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::ProgAttachLinkId
  4693. impl core::panic::unwind_safe::UnwindSafe for aya::programs::links::ProgAttachLinkId
  4694. impl<Q, K> equivalent::Equivalent<K> for aya::programs::links::ProgAttachLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  4695. pub fn aya::programs::links::ProgAttachLinkId::equivalent(&self, key: &K) -> bool
  4696. impl<T, U> core::convert::Into<U> for aya::programs::links::ProgAttachLinkId where U: core::convert::From<T>
  4697. pub fn aya::programs::links::ProgAttachLinkId::into(self) -> U
  4698. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::ProgAttachLinkId where U: core::convert::Into<T>
  4699. pub type aya::programs::links::ProgAttachLinkId::Error = core::convert::Infallible
  4700. pub fn aya::programs::links::ProgAttachLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4701. impl<T, U> core::convert::TryInto<U> for aya::programs::links::ProgAttachLinkId where U: core::convert::TryFrom<T>
  4702. pub type aya::programs::links::ProgAttachLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  4703. pub fn aya::programs::links::ProgAttachLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4704. impl<T> core::any::Any for aya::programs::links::ProgAttachLinkId where T: 'static + ?core::marker::Sized
  4705. pub fn aya::programs::links::ProgAttachLinkId::type_id(&self) -> core::any::TypeId
  4706. impl<T> core::borrow::Borrow<T> for aya::programs::links::ProgAttachLinkId where T: ?core::marker::Sized
  4707. pub fn aya::programs::links::ProgAttachLinkId::borrow(&self) -> &T
  4708. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::ProgAttachLinkId where T: ?core::marker::Sized
  4709. pub fn aya::programs::links::ProgAttachLinkId::borrow_mut(&mut self) -> &mut T
  4710. impl<T> core::convert::From<T> for aya::programs::links::ProgAttachLinkId
  4711. pub fn aya::programs::links::ProgAttachLinkId::from(t: T) -> T
  4712. pub trait aya::programs::links::Link: core::fmt::Debug + core::cmp::Eq + core::hash::Hash + 'static
  4713. pub type aya::programs::links::Link::Id: core::fmt::Debug + core::cmp::Eq + core::hash::Hash + equivalent::Equivalent<Self>
  4714. pub fn aya::programs::links::Link::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4715. pub fn aya::programs::links::Link::id(&self) -> Self::Id
  4716. impl aya::programs::links::Link for aya::programs::cgroup_device::CgroupDeviceLink
  4717. pub type aya::programs::cgroup_device::CgroupDeviceLink::Id = aya::programs::cgroup_device::CgroupDeviceLinkId
  4718. pub fn aya::programs::cgroup_device::CgroupDeviceLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4719. pub fn aya::programs::cgroup_device::CgroupDeviceLink::id(&self) -> Self::Id
  4720. impl aya::programs::links::Link for aya::programs::cgroup_skb::CgroupSkbLink
  4721. pub type aya::programs::cgroup_skb::CgroupSkbLink::Id = aya::programs::cgroup_skb::CgroupSkbLinkId
  4722. pub fn aya::programs::cgroup_skb::CgroupSkbLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4723. pub fn aya::programs::cgroup_skb::CgroupSkbLink::id(&self) -> Self::Id
  4724. impl aya::programs::links::Link for aya::programs::cgroup_sock::CgroupSockLink
  4725. pub type aya::programs::cgroup_sock::CgroupSockLink::Id = aya::programs::cgroup_sock::CgroupSockLinkId
  4726. pub fn aya::programs::cgroup_sock::CgroupSockLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4727. pub fn aya::programs::cgroup_sock::CgroupSockLink::id(&self) -> Self::Id
  4728. impl aya::programs::links::Link for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  4729. pub type aya::programs::cgroup_sock_addr::CgroupSockAddrLink::Id = aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  4730. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4731. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::id(&self) -> Self::Id
  4732. impl aya::programs::links::Link for aya::programs::cgroup_sockopt::CgroupSockoptLink
  4733. pub type aya::programs::cgroup_sockopt::CgroupSockoptLink::Id = aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  4734. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4735. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::id(&self) -> Self::Id
  4736. impl aya::programs::links::Link for aya::programs::cgroup_sysctl::CgroupSysctlLink
  4737. pub type aya::programs::cgroup_sysctl::CgroupSysctlLink::Id = aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  4738. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4739. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::id(&self) -> Self::Id
  4740. impl aya::programs::links::Link for aya::programs::extension::ExtensionLink
  4741. pub type aya::programs::extension::ExtensionLink::Id = aya::programs::extension::ExtensionLinkId
  4742. pub fn aya::programs::extension::ExtensionLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4743. pub fn aya::programs::extension::ExtensionLink::id(&self) -> Self::Id
  4744. impl aya::programs::links::Link for aya::programs::fentry::FEntryLink
  4745. pub type aya::programs::fentry::FEntryLink::Id = aya::programs::fentry::FEntryLinkId
  4746. pub fn aya::programs::fentry::FEntryLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4747. pub fn aya::programs::fentry::FEntryLink::id(&self) -> Self::Id
  4748. impl aya::programs::links::Link for aya::programs::fexit::FExitLink
  4749. pub type aya::programs::fexit::FExitLink::Id = aya::programs::fexit::FExitLinkId
  4750. pub fn aya::programs::fexit::FExitLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4751. pub fn aya::programs::fexit::FExitLink::id(&self) -> Self::Id
  4752. impl aya::programs::links::Link for aya::programs::flow_dissector::FlowDissectorLink
  4753. pub type aya::programs::flow_dissector::FlowDissectorLink::Id = aya::programs::flow_dissector::FlowDissectorLinkId
  4754. pub fn aya::programs::flow_dissector::FlowDissectorLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4755. pub fn aya::programs::flow_dissector::FlowDissectorLink::id(&self) -> Self::Id
  4756. impl aya::programs::links::Link for aya::programs::iter::IterLink
  4757. pub type aya::programs::iter::IterLink::Id = aya::programs::iter::IterLinkId
  4758. pub fn aya::programs::iter::IterLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4759. pub fn aya::programs::iter::IterLink::id(&self) -> Self::Id
  4760. impl aya::programs::links::Link for aya::programs::kprobe::KProbeLink
  4761. pub type aya::programs::kprobe::KProbeLink::Id = aya::programs::kprobe::KProbeLinkId
  4762. pub fn aya::programs::kprobe::KProbeLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4763. pub fn aya::programs::kprobe::KProbeLink::id(&self) -> Self::Id
  4764. impl aya::programs::links::Link for aya::programs::links::FdLink
  4765. pub type aya::programs::links::FdLink::Id = aya::programs::links::FdLinkId
  4766. pub fn aya::programs::links::FdLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4767. pub fn aya::programs::links::FdLink::id(&self) -> Self::Id
  4768. impl aya::programs::links::Link for aya::programs::links::ProgAttachLink
  4769. pub type aya::programs::links::ProgAttachLink::Id = aya::programs::links::ProgAttachLinkId
  4770. pub fn aya::programs::links::ProgAttachLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4771. pub fn aya::programs::links::ProgAttachLink::id(&self) -> Self::Id
  4772. impl aya::programs::links::Link for aya::programs::lirc_mode2::LircLink
  4773. pub type aya::programs::lirc_mode2::LircLink::Id = aya::programs::lirc_mode2::LircLinkId
  4774. pub fn aya::programs::lirc_mode2::LircLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4775. pub fn aya::programs::lirc_mode2::LircLink::id(&self) -> Self::Id
  4776. impl aya::programs::links::Link for aya::programs::lsm::LsmLink
  4777. pub type aya::programs::lsm::LsmLink::Id = aya::programs::lsm::LsmLinkId
  4778. pub fn aya::programs::lsm::LsmLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4779. pub fn aya::programs::lsm::LsmLink::id(&self) -> Self::Id
  4780. impl aya::programs::links::Link for aya::programs::perf_attach::PerfLink
  4781. pub type aya::programs::perf_attach::PerfLink::Id = aya::programs::perf_attach::PerfLinkId
  4782. pub fn aya::programs::perf_attach::PerfLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4783. pub fn aya::programs::perf_attach::PerfLink::id(&self) -> Self::Id
  4784. impl aya::programs::links::Link for aya::programs::perf_event::PerfEventLink
  4785. pub type aya::programs::perf_event::PerfEventLink::Id = aya::programs::perf_event::PerfEventLinkId
  4786. pub fn aya::programs::perf_event::PerfEventLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4787. pub fn aya::programs::perf_event::PerfEventLink::id(&self) -> Self::Id
  4788. impl aya::programs::links::Link for aya::programs::raw_trace_point::RawTracePointLink
  4789. pub type aya::programs::raw_trace_point::RawTracePointLink::Id = aya::programs::raw_trace_point::RawTracePointLinkId
  4790. pub fn aya::programs::raw_trace_point::RawTracePointLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4791. pub fn aya::programs::raw_trace_point::RawTracePointLink::id(&self) -> Self::Id
  4792. impl aya::programs::links::Link for aya::programs::sk_lookup::SkLookupLink
  4793. pub type aya::programs::sk_lookup::SkLookupLink::Id = aya::programs::sk_lookup::SkLookupLinkId
  4794. pub fn aya::programs::sk_lookup::SkLookupLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4795. pub fn aya::programs::sk_lookup::SkLookupLink::id(&self) -> Self::Id
  4796. impl aya::programs::links::Link for aya::programs::sk_msg::SkMsgLink
  4797. pub type aya::programs::sk_msg::SkMsgLink::Id = aya::programs::sk_msg::SkMsgLinkId
  4798. pub fn aya::programs::sk_msg::SkMsgLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4799. pub fn aya::programs::sk_msg::SkMsgLink::id(&self) -> Self::Id
  4800. impl aya::programs::links::Link for aya::programs::sk_skb::SkSkbLink
  4801. pub type aya::programs::sk_skb::SkSkbLink::Id = aya::programs::sk_skb::SkSkbLinkId
  4802. pub fn aya::programs::sk_skb::SkSkbLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4803. pub fn aya::programs::sk_skb::SkSkbLink::id(&self) -> Self::Id
  4804. impl aya::programs::links::Link for aya::programs::sock_ops::SockOpsLink
  4805. pub type aya::programs::sock_ops::SockOpsLink::Id = aya::programs::sock_ops::SockOpsLinkId
  4806. pub fn aya::programs::sock_ops::SockOpsLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4807. pub fn aya::programs::sock_ops::SockOpsLink::id(&self) -> Self::Id
  4808. impl aya::programs::links::Link for aya::programs::socket_filter::SocketFilterLink
  4809. pub type aya::programs::socket_filter::SocketFilterLink::Id = aya::programs::socket_filter::SocketFilterLinkId
  4810. pub fn aya::programs::socket_filter::SocketFilterLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4811. pub fn aya::programs::socket_filter::SocketFilterLink::id(&self) -> Self::Id
  4812. impl aya::programs::links::Link for aya::programs::tc::SchedClassifierLink
  4813. pub type aya::programs::tc::SchedClassifierLink::Id = aya::programs::tc::SchedClassifierLinkId
  4814. pub fn aya::programs::tc::SchedClassifierLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4815. pub fn aya::programs::tc::SchedClassifierLink::id(&self) -> Self::Id
  4816. impl aya::programs::links::Link for aya::programs::tp_btf::BtfTracePointLink
  4817. pub type aya::programs::tp_btf::BtfTracePointLink::Id = aya::programs::tp_btf::BtfTracePointLinkId
  4818. pub fn aya::programs::tp_btf::BtfTracePointLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4819. pub fn aya::programs::tp_btf::BtfTracePointLink::id(&self) -> Self::Id
  4820. impl aya::programs::links::Link for aya::programs::trace_point::TracePointLink
  4821. pub type aya::programs::trace_point::TracePointLink::Id = aya::programs::trace_point::TracePointLinkId
  4822. pub fn aya::programs::trace_point::TracePointLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4823. pub fn aya::programs::trace_point::TracePointLink::id(&self) -> Self::Id
  4824. impl aya::programs::links::Link for aya::programs::uprobe::UProbeLink
  4825. pub type aya::programs::uprobe::UProbeLink::Id = aya::programs::uprobe::UProbeLinkId
  4826. pub fn aya::programs::uprobe::UProbeLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4827. pub fn aya::programs::uprobe::UProbeLink::id(&self) -> Self::Id
  4828. impl aya::programs::links::Link for aya::programs::xdp::XdpLink
  4829. pub type aya::programs::xdp::XdpLink::Id = aya::programs::xdp::XdpLinkId
  4830. pub fn aya::programs::xdp::XdpLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4831. pub fn aya::programs::xdp::XdpLink::id(&self) -> Self::Id
  4832. pub mod aya::programs::lirc_mode2
  4833. pub struct aya::programs::lirc_mode2::LircLink
  4834. impl aya::programs::lirc_mode2::LircLink
  4835. pub fn aya::programs::lirc_mode2::LircLink::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  4836. impl aya::programs::links::Link for aya::programs::lirc_mode2::LircLink
  4837. pub type aya::programs::lirc_mode2::LircLink::Id = aya::programs::lirc_mode2::LircLinkId
  4838. pub fn aya::programs::lirc_mode2::LircLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4839. pub fn aya::programs::lirc_mode2::LircLink::id(&self) -> Self::Id
  4840. impl core::cmp::Eq for aya::programs::lirc_mode2::LircLink
  4841. impl core::cmp::PartialEq for aya::programs::lirc_mode2::LircLink
  4842. pub fn aya::programs::lirc_mode2::LircLink::eq(&self, other: &Self) -> bool
  4843. impl core::fmt::Debug for aya::programs::lirc_mode2::LircLink
  4844. pub fn aya::programs::lirc_mode2::LircLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4845. impl core::hash::Hash for aya::programs::lirc_mode2::LircLink
  4846. pub fn aya::programs::lirc_mode2::LircLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  4847. impl equivalent::Equivalent<aya::programs::lirc_mode2::LircLink> for aya::programs::lirc_mode2::LircLinkId
  4848. pub fn aya::programs::lirc_mode2::LircLinkId::equivalent(&self, key: &aya::programs::lirc_mode2::LircLink) -> bool
  4849. impl core::marker::Freeze for aya::programs::lirc_mode2::LircLink
  4850. impl core::marker::Send for aya::programs::lirc_mode2::LircLink
  4851. impl core::marker::Sync for aya::programs::lirc_mode2::LircLink
  4852. impl core::marker::Unpin for aya::programs::lirc_mode2::LircLink
  4853. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::lirc_mode2::LircLink
  4854. impl core::panic::unwind_safe::UnwindSafe for aya::programs::lirc_mode2::LircLink
  4855. impl<Q, K> equivalent::Equivalent<K> for aya::programs::lirc_mode2::LircLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  4856. pub fn aya::programs::lirc_mode2::LircLink::equivalent(&self, key: &K) -> bool
  4857. impl<T, U> core::convert::Into<U> for aya::programs::lirc_mode2::LircLink where U: core::convert::From<T>
  4858. pub fn aya::programs::lirc_mode2::LircLink::into(self) -> U
  4859. impl<T, U> core::convert::TryFrom<U> for aya::programs::lirc_mode2::LircLink where U: core::convert::Into<T>
  4860. pub type aya::programs::lirc_mode2::LircLink::Error = core::convert::Infallible
  4861. pub fn aya::programs::lirc_mode2::LircLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4862. impl<T, U> core::convert::TryInto<U> for aya::programs::lirc_mode2::LircLink where U: core::convert::TryFrom<T>
  4863. pub type aya::programs::lirc_mode2::LircLink::Error = <U as core::convert::TryFrom<T>>::Error
  4864. pub fn aya::programs::lirc_mode2::LircLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4865. impl<T> core::any::Any for aya::programs::lirc_mode2::LircLink where T: 'static + ?core::marker::Sized
  4866. pub fn aya::programs::lirc_mode2::LircLink::type_id(&self) -> core::any::TypeId
  4867. impl<T> core::borrow::Borrow<T> for aya::programs::lirc_mode2::LircLink where T: ?core::marker::Sized
  4868. pub fn aya::programs::lirc_mode2::LircLink::borrow(&self) -> &T
  4869. impl<T> core::borrow::BorrowMut<T> for aya::programs::lirc_mode2::LircLink where T: ?core::marker::Sized
  4870. pub fn aya::programs::lirc_mode2::LircLink::borrow_mut(&mut self) -> &mut T
  4871. impl<T> core::convert::From<T> for aya::programs::lirc_mode2::LircLink
  4872. pub fn aya::programs::lirc_mode2::LircLink::from(t: T) -> T
  4873. pub struct aya::programs::lirc_mode2::LircLinkId(_, _)
  4874. impl core::cmp::Eq for aya::programs::lirc_mode2::LircLinkId
  4875. impl core::cmp::PartialEq for aya::programs::lirc_mode2::LircLinkId
  4876. pub fn aya::programs::lirc_mode2::LircLinkId::eq(&self, other: &aya::programs::lirc_mode2::LircLinkId) -> bool
  4877. impl core::fmt::Debug for aya::programs::lirc_mode2::LircLinkId
  4878. pub fn aya::programs::lirc_mode2::LircLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4879. impl core::hash::Hash for aya::programs::lirc_mode2::LircLinkId
  4880. pub fn aya::programs::lirc_mode2::LircLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  4881. impl core::marker::StructuralPartialEq for aya::programs::lirc_mode2::LircLinkId
  4882. impl equivalent::Equivalent<aya::programs::lirc_mode2::LircLink> for aya::programs::lirc_mode2::LircLinkId
  4883. pub fn aya::programs::lirc_mode2::LircLinkId::equivalent(&self, key: &aya::programs::lirc_mode2::LircLink) -> bool
  4884. impl core::marker::Freeze for aya::programs::lirc_mode2::LircLinkId
  4885. impl core::marker::Send for aya::programs::lirc_mode2::LircLinkId
  4886. impl core::marker::Sync for aya::programs::lirc_mode2::LircLinkId
  4887. impl core::marker::Unpin for aya::programs::lirc_mode2::LircLinkId
  4888. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::lirc_mode2::LircLinkId
  4889. impl core::panic::unwind_safe::UnwindSafe for aya::programs::lirc_mode2::LircLinkId
  4890. impl<Q, K> equivalent::Equivalent<K> for aya::programs::lirc_mode2::LircLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  4891. pub fn aya::programs::lirc_mode2::LircLinkId::equivalent(&self, key: &K) -> bool
  4892. impl<T, U> core::convert::Into<U> for aya::programs::lirc_mode2::LircLinkId where U: core::convert::From<T>
  4893. pub fn aya::programs::lirc_mode2::LircLinkId::into(self) -> U
  4894. impl<T, U> core::convert::TryFrom<U> for aya::programs::lirc_mode2::LircLinkId where U: core::convert::Into<T>
  4895. pub type aya::programs::lirc_mode2::LircLinkId::Error = core::convert::Infallible
  4896. pub fn aya::programs::lirc_mode2::LircLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4897. impl<T, U> core::convert::TryInto<U> for aya::programs::lirc_mode2::LircLinkId where U: core::convert::TryFrom<T>
  4898. pub type aya::programs::lirc_mode2::LircLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  4899. pub fn aya::programs::lirc_mode2::LircLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4900. impl<T> core::any::Any for aya::programs::lirc_mode2::LircLinkId where T: 'static + ?core::marker::Sized
  4901. pub fn aya::programs::lirc_mode2::LircLinkId::type_id(&self) -> core::any::TypeId
  4902. impl<T> core::borrow::Borrow<T> for aya::programs::lirc_mode2::LircLinkId where T: ?core::marker::Sized
  4903. pub fn aya::programs::lirc_mode2::LircLinkId::borrow(&self) -> &T
  4904. impl<T> core::borrow::BorrowMut<T> for aya::programs::lirc_mode2::LircLinkId where T: ?core::marker::Sized
  4905. pub fn aya::programs::lirc_mode2::LircLinkId::borrow_mut(&mut self) -> &mut T
  4906. impl<T> core::convert::From<T> for aya::programs::lirc_mode2::LircLinkId
  4907. pub fn aya::programs::lirc_mode2::LircLinkId::from(t: T) -> T
  4908. pub struct aya::programs::lirc_mode2::LircMode2
  4909. impl aya::programs::lirc_mode2::LircMode2
  4910. pub const aya::programs::lirc_mode2::LircMode2::PROGRAM_TYPE: aya::programs::ProgramType
  4911. 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>
  4912. pub fn aya::programs::lirc_mode2::LircMode2::detach(&mut self, link_id: aya::programs::lirc_mode2::LircLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  4913. pub fn aya::programs::lirc_mode2::LircMode2::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  4914. 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>
  4915. 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>
  4916. impl aya::programs::lirc_mode2::LircMode2
  4917. pub fn aya::programs::lirc_mode2::LircMode2::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  4918. impl aya::programs::lirc_mode2::LircMode2
  4919. 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>
  4920. impl aya::programs::lirc_mode2::LircMode2
  4921. pub fn aya::programs::lirc_mode2::LircMode2::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  4922. impl aya::programs::lirc_mode2::LircMode2
  4923. pub fn aya::programs::lirc_mode2::LircMode2::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  4924. impl aya::programs::lirc_mode2::LircMode2
  4925. 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>
  4926. pub fn aya::programs::lirc_mode2::LircMode2::unpin(self) -> core::result::Result<(), std::io::error::Error>
  4927. impl aya::programs::lirc_mode2::LircMode2
  4928. pub fn aya::programs::lirc_mode2::LircMode2::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  4929. impl core::fmt::Debug for aya::programs::lirc_mode2::LircMode2
  4930. pub fn aya::programs::lirc_mode2::LircMode2::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4931. impl core::ops::drop::Drop for aya::programs::lirc_mode2::LircMode2
  4932. pub fn aya::programs::lirc_mode2::LircMode2::drop(&mut self)
  4933. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::lirc_mode2::LircMode2
  4934. pub type &'a aya::programs::lirc_mode2::LircMode2::Error = aya::programs::ProgramError
  4935. 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>
  4936. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::lirc_mode2::LircMode2
  4937. pub type &'a mut aya::programs::lirc_mode2::LircMode2::Error = aya::programs::ProgramError
  4938. 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>
  4939. impl core::marker::Freeze for aya::programs::lirc_mode2::LircMode2
  4940. impl core::marker::Send for aya::programs::lirc_mode2::LircMode2
  4941. impl core::marker::Sync for aya::programs::lirc_mode2::LircMode2
  4942. impl core::marker::Unpin for aya::programs::lirc_mode2::LircMode2
  4943. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::lirc_mode2::LircMode2
  4944. impl core::panic::unwind_safe::UnwindSafe for aya::programs::lirc_mode2::LircMode2
  4945. impl<T, U> core::convert::Into<U> for aya::programs::lirc_mode2::LircMode2 where U: core::convert::From<T>
  4946. pub fn aya::programs::lirc_mode2::LircMode2::into(self) -> U
  4947. impl<T, U> core::convert::TryFrom<U> for aya::programs::lirc_mode2::LircMode2 where U: core::convert::Into<T>
  4948. pub type aya::programs::lirc_mode2::LircMode2::Error = core::convert::Infallible
  4949. pub fn aya::programs::lirc_mode2::LircMode2::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4950. impl<T, U> core::convert::TryInto<U> for aya::programs::lirc_mode2::LircMode2 where U: core::convert::TryFrom<T>
  4951. pub type aya::programs::lirc_mode2::LircMode2::Error = <U as core::convert::TryFrom<T>>::Error
  4952. pub fn aya::programs::lirc_mode2::LircMode2::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4953. impl<T> core::any::Any for aya::programs::lirc_mode2::LircMode2 where T: 'static + ?core::marker::Sized
  4954. pub fn aya::programs::lirc_mode2::LircMode2::type_id(&self) -> core::any::TypeId
  4955. impl<T> core::borrow::Borrow<T> for aya::programs::lirc_mode2::LircMode2 where T: ?core::marker::Sized
  4956. pub fn aya::programs::lirc_mode2::LircMode2::borrow(&self) -> &T
  4957. impl<T> core::borrow::BorrowMut<T> for aya::programs::lirc_mode2::LircMode2 where T: ?core::marker::Sized
  4958. pub fn aya::programs::lirc_mode2::LircMode2::borrow_mut(&mut self) -> &mut T
  4959. impl<T> core::convert::From<T> for aya::programs::lirc_mode2::LircMode2
  4960. pub fn aya::programs::lirc_mode2::LircMode2::from(t: T) -> T
  4961. pub mod aya::programs::lsm
  4962. pub struct aya::programs::lsm::Lsm
  4963. impl aya::programs::lsm::Lsm
  4964. pub const aya::programs::lsm::Lsm::PROGRAM_TYPE: aya::programs::ProgramType
  4965. pub fn aya::programs::lsm::Lsm::attach(&mut self) -> core::result::Result<aya::programs::lsm::LsmLinkId, aya::programs::ProgramError>
  4966. 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>
  4967. impl aya::programs::lsm::Lsm
  4968. pub fn aya::programs::lsm::Lsm::detach(&mut self, link_id: aya::programs::lsm::LsmLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  4969. 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>
  4970. impl aya::programs::lsm::Lsm
  4971. pub fn aya::programs::lsm::Lsm::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  4972. impl aya::programs::lsm::Lsm
  4973. pub fn aya::programs::lsm::Lsm::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  4974. impl aya::programs::lsm::Lsm
  4975. pub fn aya::programs::lsm::Lsm::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  4976. impl aya::programs::lsm::Lsm
  4977. pub fn aya::programs::lsm::Lsm::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  4978. impl aya::programs::lsm::Lsm
  4979. pub fn aya::programs::lsm::Lsm::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  4980. pub fn aya::programs::lsm::Lsm::unpin(self) -> core::result::Result<(), std::io::error::Error>
  4981. impl aya::programs::lsm::Lsm
  4982. pub fn aya::programs::lsm::Lsm::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  4983. impl core::fmt::Debug for aya::programs::lsm::Lsm
  4984. pub fn aya::programs::lsm::Lsm::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4985. impl core::ops::drop::Drop for aya::programs::lsm::Lsm
  4986. pub fn aya::programs::lsm::Lsm::drop(&mut self)
  4987. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::lsm::Lsm
  4988. pub type &'a aya::programs::lsm::Lsm::Error = aya::programs::ProgramError
  4989. 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>
  4990. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::lsm::Lsm
  4991. pub type &'a mut aya::programs::lsm::Lsm::Error = aya::programs::ProgramError
  4992. 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>
  4993. impl core::marker::Freeze for aya::programs::lsm::Lsm
  4994. impl core::marker::Send for aya::programs::lsm::Lsm
  4995. impl core::marker::Sync for aya::programs::lsm::Lsm
  4996. impl core::marker::Unpin for aya::programs::lsm::Lsm
  4997. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::lsm::Lsm
  4998. impl core::panic::unwind_safe::UnwindSafe for aya::programs::lsm::Lsm
  4999. impl<T, U> core::convert::Into<U> for aya::programs::lsm::Lsm where U: core::convert::From<T>
  5000. pub fn aya::programs::lsm::Lsm::into(self) -> U
  5001. impl<T, U> core::convert::TryFrom<U> for aya::programs::lsm::Lsm where U: core::convert::Into<T>
  5002. pub type aya::programs::lsm::Lsm::Error = core::convert::Infallible
  5003. pub fn aya::programs::lsm::Lsm::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5004. impl<T, U> core::convert::TryInto<U> for aya::programs::lsm::Lsm where U: core::convert::TryFrom<T>
  5005. pub type aya::programs::lsm::Lsm::Error = <U as core::convert::TryFrom<T>>::Error
  5006. pub fn aya::programs::lsm::Lsm::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5007. impl<T> core::any::Any for aya::programs::lsm::Lsm where T: 'static + ?core::marker::Sized
  5008. pub fn aya::programs::lsm::Lsm::type_id(&self) -> core::any::TypeId
  5009. impl<T> core::borrow::Borrow<T> for aya::programs::lsm::Lsm where T: ?core::marker::Sized
  5010. pub fn aya::programs::lsm::Lsm::borrow(&self) -> &T
  5011. impl<T> core::borrow::BorrowMut<T> for aya::programs::lsm::Lsm where T: ?core::marker::Sized
  5012. pub fn aya::programs::lsm::Lsm::borrow_mut(&mut self) -> &mut T
  5013. impl<T> core::convert::From<T> for aya::programs::lsm::Lsm
  5014. pub fn aya::programs::lsm::Lsm::from(t: T) -> T
  5015. pub struct aya::programs::lsm::LsmLink(_)
  5016. impl aya::programs::links::Link for aya::programs::lsm::LsmLink
  5017. pub type aya::programs::lsm::LsmLink::Id = aya::programs::lsm::LsmLinkId
  5018. pub fn aya::programs::lsm::LsmLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  5019. pub fn aya::programs::lsm::LsmLink::id(&self) -> Self::Id
  5020. impl core::cmp::Eq for aya::programs::lsm::LsmLink
  5021. impl core::cmp::PartialEq for aya::programs::lsm::LsmLink
  5022. pub fn aya::programs::lsm::LsmLink::eq(&self, other: &Self) -> bool
  5023. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::lsm::LsmLink
  5024. pub fn aya::programs::lsm::LsmLink::from(b: aya::programs::links::FdLink) -> aya::programs::lsm::LsmLink
  5025. impl core::convert::From<aya::programs::lsm::LsmLink> for aya::programs::links::FdLink
  5026. pub fn aya::programs::links::FdLink::from(w: aya::programs::lsm::LsmLink) -> aya::programs::links::FdLink
  5027. impl core::fmt::Debug for aya::programs::lsm::LsmLink
  5028. pub fn aya::programs::lsm::LsmLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5029. impl core::hash::Hash for aya::programs::lsm::LsmLink
  5030. pub fn aya::programs::lsm::LsmLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  5031. impl core::ops::drop::Drop for aya::programs::lsm::LsmLink
  5032. pub fn aya::programs::lsm::LsmLink::drop(&mut self)
  5033. impl equivalent::Equivalent<aya::programs::lsm::LsmLink> for aya::programs::lsm::LsmLinkId
  5034. pub fn aya::programs::lsm::LsmLinkId::equivalent(&self, key: &aya::programs::lsm::LsmLink) -> bool
  5035. impl core::marker::Freeze for aya::programs::lsm::LsmLink
  5036. impl core::marker::Send for aya::programs::lsm::LsmLink
  5037. impl core::marker::Sync for aya::programs::lsm::LsmLink
  5038. impl core::marker::Unpin for aya::programs::lsm::LsmLink
  5039. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::lsm::LsmLink
  5040. impl core::panic::unwind_safe::UnwindSafe for aya::programs::lsm::LsmLink
  5041. impl<Q, K> equivalent::Equivalent<K> for aya::programs::lsm::LsmLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  5042. pub fn aya::programs::lsm::LsmLink::equivalent(&self, key: &K) -> bool
  5043. impl<T, U> core::convert::Into<U> for aya::programs::lsm::LsmLink where U: core::convert::From<T>
  5044. pub fn aya::programs::lsm::LsmLink::into(self) -> U
  5045. impl<T, U> core::convert::TryFrom<U> for aya::programs::lsm::LsmLink where U: core::convert::Into<T>
  5046. pub type aya::programs::lsm::LsmLink::Error = core::convert::Infallible
  5047. pub fn aya::programs::lsm::LsmLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5048. impl<T, U> core::convert::TryInto<U> for aya::programs::lsm::LsmLink where U: core::convert::TryFrom<T>
  5049. pub type aya::programs::lsm::LsmLink::Error = <U as core::convert::TryFrom<T>>::Error
  5050. pub fn aya::programs::lsm::LsmLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5051. impl<T> core::any::Any for aya::programs::lsm::LsmLink where T: 'static + ?core::marker::Sized
  5052. pub fn aya::programs::lsm::LsmLink::type_id(&self) -> core::any::TypeId
  5053. impl<T> core::borrow::Borrow<T> for aya::programs::lsm::LsmLink where T: ?core::marker::Sized
  5054. pub fn aya::programs::lsm::LsmLink::borrow(&self) -> &T
  5055. impl<T> core::borrow::BorrowMut<T> for aya::programs::lsm::LsmLink where T: ?core::marker::Sized
  5056. pub fn aya::programs::lsm::LsmLink::borrow_mut(&mut self) -> &mut T
  5057. impl<T> core::convert::From<T> for aya::programs::lsm::LsmLink
  5058. pub fn aya::programs::lsm::LsmLink::from(t: T) -> T
  5059. pub struct aya::programs::lsm::LsmLinkId(_)
  5060. impl core::cmp::Eq for aya::programs::lsm::LsmLinkId
  5061. impl core::cmp::PartialEq for aya::programs::lsm::LsmLinkId
  5062. pub fn aya::programs::lsm::LsmLinkId::eq(&self, other: &aya::programs::lsm::LsmLinkId) -> bool
  5063. impl core::fmt::Debug for aya::programs::lsm::LsmLinkId
  5064. pub fn aya::programs::lsm::LsmLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5065. impl core::hash::Hash for aya::programs::lsm::LsmLinkId
  5066. pub fn aya::programs::lsm::LsmLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  5067. impl core::marker::StructuralPartialEq for aya::programs::lsm::LsmLinkId
  5068. impl equivalent::Equivalent<aya::programs::lsm::LsmLink> for aya::programs::lsm::LsmLinkId
  5069. pub fn aya::programs::lsm::LsmLinkId::equivalent(&self, key: &aya::programs::lsm::LsmLink) -> bool
  5070. impl core::marker::Freeze for aya::programs::lsm::LsmLinkId
  5071. impl core::marker::Send for aya::programs::lsm::LsmLinkId
  5072. impl core::marker::Sync for aya::programs::lsm::LsmLinkId
  5073. impl core::marker::Unpin for aya::programs::lsm::LsmLinkId
  5074. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::lsm::LsmLinkId
  5075. impl core::panic::unwind_safe::UnwindSafe for aya::programs::lsm::LsmLinkId
  5076. impl<Q, K> equivalent::Equivalent<K> for aya::programs::lsm::LsmLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  5077. pub fn aya::programs::lsm::LsmLinkId::equivalent(&self, key: &K) -> bool
  5078. impl<T, U> core::convert::Into<U> for aya::programs::lsm::LsmLinkId where U: core::convert::From<T>
  5079. pub fn aya::programs::lsm::LsmLinkId::into(self) -> U
  5080. impl<T, U> core::convert::TryFrom<U> for aya::programs::lsm::LsmLinkId where U: core::convert::Into<T>
  5081. pub type aya::programs::lsm::LsmLinkId::Error = core::convert::Infallible
  5082. pub fn aya::programs::lsm::LsmLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5083. impl<T, U> core::convert::TryInto<U> for aya::programs::lsm::LsmLinkId where U: core::convert::TryFrom<T>
  5084. pub type aya::programs::lsm::LsmLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  5085. pub fn aya::programs::lsm::LsmLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5086. impl<T> core::any::Any for aya::programs::lsm::LsmLinkId where T: 'static + ?core::marker::Sized
  5087. pub fn aya::programs::lsm::LsmLinkId::type_id(&self) -> core::any::TypeId
  5088. impl<T> core::borrow::Borrow<T> for aya::programs::lsm::LsmLinkId where T: ?core::marker::Sized
  5089. pub fn aya::programs::lsm::LsmLinkId::borrow(&self) -> &T
  5090. impl<T> core::borrow::BorrowMut<T> for aya::programs::lsm::LsmLinkId where T: ?core::marker::Sized
  5091. pub fn aya::programs::lsm::LsmLinkId::borrow_mut(&mut self) -> &mut T
  5092. impl<T> core::convert::From<T> for aya::programs::lsm::LsmLinkId
  5093. pub fn aya::programs::lsm::LsmLinkId::from(t: T) -> T
  5094. pub mod aya::programs::perf_attach
  5095. pub struct aya::programs::perf_attach::PerfLink
  5096. impl aya::programs::links::Link for aya::programs::perf_attach::PerfLink
  5097. pub type aya::programs::perf_attach::PerfLink::Id = aya::programs::perf_attach::PerfLinkId
  5098. pub fn aya::programs::perf_attach::PerfLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  5099. pub fn aya::programs::perf_attach::PerfLink::id(&self) -> Self::Id
  5100. impl core::cmp::Eq for aya::programs::perf_attach::PerfLink
  5101. impl core::cmp::PartialEq for aya::programs::perf_attach::PerfLink
  5102. pub fn aya::programs::perf_attach::PerfLink::eq(&self, other: &Self) -> bool
  5103. impl core::fmt::Debug for aya::programs::perf_attach::PerfLink
  5104. pub fn aya::programs::perf_attach::PerfLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5105. impl core::hash::Hash for aya::programs::perf_attach::PerfLink
  5106. pub fn aya::programs::perf_attach::PerfLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  5107. impl equivalent::Equivalent<aya::programs::perf_attach::PerfLink> for aya::programs::perf_attach::PerfLinkId
  5108. pub fn aya::programs::perf_attach::PerfLinkId::equivalent(&self, key: &aya::programs::perf_attach::PerfLink) -> bool
  5109. impl core::marker::Freeze for aya::programs::perf_attach::PerfLink
  5110. impl core::marker::Send for aya::programs::perf_attach::PerfLink
  5111. impl core::marker::Sync for aya::programs::perf_attach::PerfLink
  5112. impl core::marker::Unpin for aya::programs::perf_attach::PerfLink
  5113. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_attach::PerfLink
  5114. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_attach::PerfLink
  5115. impl<Q, K> equivalent::Equivalent<K> for aya::programs::perf_attach::PerfLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  5116. pub fn aya::programs::perf_attach::PerfLink::equivalent(&self, key: &K) -> bool
  5117. impl<T, U> core::convert::Into<U> for aya::programs::perf_attach::PerfLink where U: core::convert::From<T>
  5118. pub fn aya::programs::perf_attach::PerfLink::into(self) -> U
  5119. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_attach::PerfLink where U: core::convert::Into<T>
  5120. pub type aya::programs::perf_attach::PerfLink::Error = core::convert::Infallible
  5121. pub fn aya::programs::perf_attach::PerfLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5122. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_attach::PerfLink where U: core::convert::TryFrom<T>
  5123. pub type aya::programs::perf_attach::PerfLink::Error = <U as core::convert::TryFrom<T>>::Error
  5124. pub fn aya::programs::perf_attach::PerfLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5125. impl<T> core::any::Any for aya::programs::perf_attach::PerfLink where T: 'static + ?core::marker::Sized
  5126. pub fn aya::programs::perf_attach::PerfLink::type_id(&self) -> core::any::TypeId
  5127. impl<T> core::borrow::Borrow<T> for aya::programs::perf_attach::PerfLink where T: ?core::marker::Sized
  5128. pub fn aya::programs::perf_attach::PerfLink::borrow(&self) -> &T
  5129. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_attach::PerfLink where T: ?core::marker::Sized
  5130. pub fn aya::programs::perf_attach::PerfLink::borrow_mut(&mut self) -> &mut T
  5131. impl<T> core::convert::From<T> for aya::programs::perf_attach::PerfLink
  5132. pub fn aya::programs::perf_attach::PerfLink::from(t: T) -> T
  5133. pub struct aya::programs::perf_attach::PerfLinkId(_)
  5134. impl core::cmp::Eq for aya::programs::perf_attach::PerfLinkId
  5135. impl core::cmp::PartialEq for aya::programs::perf_attach::PerfLinkId
  5136. pub fn aya::programs::perf_attach::PerfLinkId::eq(&self, other: &aya::programs::perf_attach::PerfLinkId) -> bool
  5137. impl core::fmt::Debug for aya::programs::perf_attach::PerfLinkId
  5138. pub fn aya::programs::perf_attach::PerfLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5139. impl core::hash::Hash for aya::programs::perf_attach::PerfLinkId
  5140. pub fn aya::programs::perf_attach::PerfLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  5141. impl core::marker::StructuralPartialEq for aya::programs::perf_attach::PerfLinkId
  5142. impl equivalent::Equivalent<aya::programs::perf_attach::PerfLink> for aya::programs::perf_attach::PerfLinkId
  5143. pub fn aya::programs::perf_attach::PerfLinkId::equivalent(&self, key: &aya::programs::perf_attach::PerfLink) -> bool
  5144. impl core::marker::Freeze for aya::programs::perf_attach::PerfLinkId
  5145. impl core::marker::Send for aya::programs::perf_attach::PerfLinkId
  5146. impl core::marker::Sync for aya::programs::perf_attach::PerfLinkId
  5147. impl core::marker::Unpin for aya::programs::perf_attach::PerfLinkId
  5148. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_attach::PerfLinkId
  5149. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_attach::PerfLinkId
  5150. impl<Q, K> equivalent::Equivalent<K> for aya::programs::perf_attach::PerfLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  5151. pub fn aya::programs::perf_attach::PerfLinkId::equivalent(&self, key: &K) -> bool
  5152. impl<T, U> core::convert::Into<U> for aya::programs::perf_attach::PerfLinkId where U: core::convert::From<T>
  5153. pub fn aya::programs::perf_attach::PerfLinkId::into(self) -> U
  5154. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_attach::PerfLinkId where U: core::convert::Into<T>
  5155. pub type aya::programs::perf_attach::PerfLinkId::Error = core::convert::Infallible
  5156. pub fn aya::programs::perf_attach::PerfLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5157. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_attach::PerfLinkId where U: core::convert::TryFrom<T>
  5158. pub type aya::programs::perf_attach::PerfLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  5159. pub fn aya::programs::perf_attach::PerfLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5160. impl<T> core::any::Any for aya::programs::perf_attach::PerfLinkId where T: 'static + ?core::marker::Sized
  5161. pub fn aya::programs::perf_attach::PerfLinkId::type_id(&self) -> core::any::TypeId
  5162. impl<T> core::borrow::Borrow<T> for aya::programs::perf_attach::PerfLinkId where T: ?core::marker::Sized
  5163. pub fn aya::programs::perf_attach::PerfLinkId::borrow(&self) -> &T
  5164. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_attach::PerfLinkId where T: ?core::marker::Sized
  5165. pub fn aya::programs::perf_attach::PerfLinkId::borrow_mut(&mut self) -> &mut T
  5166. impl<T> core::convert::From<T> for aya::programs::perf_attach::PerfLinkId
  5167. pub fn aya::programs::perf_attach::PerfLinkId::from(t: T) -> T
  5168. pub mod aya::programs::perf_event
  5169. pub use aya::programs::perf_event::perf_hw_cache_id
  5170. pub use aya::programs::perf_event::perf_hw_cache_op_id
  5171. pub use aya::programs::perf_event::perf_hw_cache_op_result_id
  5172. pub use aya::programs::perf_event::perf_hw_id
  5173. pub use aya::programs::perf_event::perf_sw_ids
  5174. pub enum aya::programs::perf_event::PerfEventScope
  5175. pub aya::programs::perf_event::PerfEventScope::AllProcessesOneCpu
  5176. pub aya::programs::perf_event::PerfEventScope::AllProcessesOneCpu::cpu: u32
  5177. pub aya::programs::perf_event::PerfEventScope::CallingProcessAnyCpu
  5178. pub aya::programs::perf_event::PerfEventScope::CallingProcessOneCpu
  5179. pub aya::programs::perf_event::PerfEventScope::CallingProcessOneCpu::cpu: u32
  5180. pub aya::programs::perf_event::PerfEventScope::OneProcessAnyCpu
  5181. pub aya::programs::perf_event::PerfEventScope::OneProcessAnyCpu::pid: u32
  5182. pub aya::programs::perf_event::PerfEventScope::OneProcessOneCpu
  5183. pub aya::programs::perf_event::PerfEventScope::OneProcessOneCpu::cpu: u32
  5184. pub aya::programs::perf_event::PerfEventScope::OneProcessOneCpu::pid: u32
  5185. impl core::clone::Clone for aya::programs::perf_event::PerfEventScope
  5186. pub fn aya::programs::perf_event::PerfEventScope::clone(&self) -> aya::programs::perf_event::PerfEventScope
  5187. impl core::fmt::Debug for aya::programs::perf_event::PerfEventScope
  5188. pub fn aya::programs::perf_event::PerfEventScope::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5189. impl core::marker::Freeze for aya::programs::perf_event::PerfEventScope
  5190. impl core::marker::Send for aya::programs::perf_event::PerfEventScope
  5191. impl core::marker::Sync for aya::programs::perf_event::PerfEventScope
  5192. impl core::marker::Unpin for aya::programs::perf_event::PerfEventScope
  5193. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::PerfEventScope
  5194. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::PerfEventScope
  5195. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::PerfEventScope where U: core::convert::From<T>
  5196. pub fn aya::programs::perf_event::PerfEventScope::into(self) -> U
  5197. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::PerfEventScope where U: core::convert::Into<T>
  5198. pub type aya::programs::perf_event::PerfEventScope::Error = core::convert::Infallible
  5199. pub fn aya::programs::perf_event::PerfEventScope::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5200. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_event::PerfEventScope where U: core::convert::TryFrom<T>
  5201. pub type aya::programs::perf_event::PerfEventScope::Error = <U as core::convert::TryFrom<T>>::Error
  5202. pub fn aya::programs::perf_event::PerfEventScope::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5203. impl<T> alloc::borrow::ToOwned for aya::programs::perf_event::PerfEventScope where T: core::clone::Clone
  5204. pub type aya::programs::perf_event::PerfEventScope::Owned = T
  5205. pub fn aya::programs::perf_event::PerfEventScope::clone_into(&self, target: &mut T)
  5206. pub fn aya::programs::perf_event::PerfEventScope::to_owned(&self) -> T
  5207. impl<T> core::any::Any for aya::programs::perf_event::PerfEventScope where T: 'static + ?core::marker::Sized
  5208. pub fn aya::programs::perf_event::PerfEventScope::type_id(&self) -> core::any::TypeId
  5209. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::PerfEventScope where T: ?core::marker::Sized
  5210. pub fn aya::programs::perf_event::PerfEventScope::borrow(&self) -> &T
  5211. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::PerfEventScope where T: ?core::marker::Sized
  5212. pub fn aya::programs::perf_event::PerfEventScope::borrow_mut(&mut self) -> &mut T
  5213. impl<T> core::clone::CloneToUninit for aya::programs::perf_event::PerfEventScope where T: core::clone::Clone
  5214. pub unsafe fn aya::programs::perf_event::PerfEventScope::clone_to_uninit(&self, dest: *mut u8)
  5215. impl<T> core::convert::From<T> for aya::programs::perf_event::PerfEventScope
  5216. pub fn aya::programs::perf_event::PerfEventScope::from(t: T) -> T
  5217. #[repr(u32)] pub enum aya::programs::perf_event::PerfTypeId
  5218. pub aya::programs::perf_event::PerfTypeId::Breakpoint = 5
  5219. pub aya::programs::perf_event::PerfTypeId::Hardware = 0
  5220. pub aya::programs::perf_event::PerfTypeId::HwCache = 3
  5221. pub aya::programs::perf_event::PerfTypeId::Raw = 4
  5222. pub aya::programs::perf_event::PerfTypeId::Software = 1
  5223. pub aya::programs::perf_event::PerfTypeId::TracePoint = 2
  5224. impl core::clone::Clone for aya::programs::perf_event::PerfTypeId
  5225. pub fn aya::programs::perf_event::PerfTypeId::clone(&self) -> aya::programs::perf_event::PerfTypeId
  5226. impl core::fmt::Debug for aya::programs::perf_event::PerfTypeId
  5227. pub fn aya::programs::perf_event::PerfTypeId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5228. impl core::marker::Freeze for aya::programs::perf_event::PerfTypeId
  5229. impl core::marker::Send for aya::programs::perf_event::PerfTypeId
  5230. impl core::marker::Sync for aya::programs::perf_event::PerfTypeId
  5231. impl core::marker::Unpin for aya::programs::perf_event::PerfTypeId
  5232. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::PerfTypeId
  5233. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::PerfTypeId
  5234. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::PerfTypeId where U: core::convert::From<T>
  5235. pub fn aya::programs::perf_event::PerfTypeId::into(self) -> U
  5236. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::PerfTypeId where U: core::convert::Into<T>
  5237. pub type aya::programs::perf_event::PerfTypeId::Error = core::convert::Infallible
  5238. pub fn aya::programs::perf_event::PerfTypeId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5239. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_event::PerfTypeId where U: core::convert::TryFrom<T>
  5240. pub type aya::programs::perf_event::PerfTypeId::Error = <U as core::convert::TryFrom<T>>::Error
  5241. pub fn aya::programs::perf_event::PerfTypeId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5242. impl<T> alloc::borrow::ToOwned for aya::programs::perf_event::PerfTypeId where T: core::clone::Clone
  5243. pub type aya::programs::perf_event::PerfTypeId::Owned = T
  5244. pub fn aya::programs::perf_event::PerfTypeId::clone_into(&self, target: &mut T)
  5245. pub fn aya::programs::perf_event::PerfTypeId::to_owned(&self) -> T
  5246. impl<T> core::any::Any for aya::programs::perf_event::PerfTypeId where T: 'static + ?core::marker::Sized
  5247. pub fn aya::programs::perf_event::PerfTypeId::type_id(&self) -> core::any::TypeId
  5248. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::PerfTypeId where T: ?core::marker::Sized
  5249. pub fn aya::programs::perf_event::PerfTypeId::borrow(&self) -> &T
  5250. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::PerfTypeId where T: ?core::marker::Sized
  5251. pub fn aya::programs::perf_event::PerfTypeId::borrow_mut(&mut self) -> &mut T
  5252. impl<T> core::clone::CloneToUninit for aya::programs::perf_event::PerfTypeId where T: core::clone::Clone
  5253. pub unsafe fn aya::programs::perf_event::PerfTypeId::clone_to_uninit(&self, dest: *mut u8)
  5254. impl<T> core::convert::From<T> for aya::programs::perf_event::PerfTypeId
  5255. pub fn aya::programs::perf_event::PerfTypeId::from(t: T) -> T
  5256. pub enum aya::programs::perf_event::SamplePolicy
  5257. pub aya::programs::perf_event::SamplePolicy::Frequency(u64)
  5258. pub aya::programs::perf_event::SamplePolicy::Period(u64)
  5259. impl core::clone::Clone for aya::programs::perf_event::SamplePolicy
  5260. pub fn aya::programs::perf_event::SamplePolicy::clone(&self) -> aya::programs::perf_event::SamplePolicy
  5261. impl core::fmt::Debug for aya::programs::perf_event::SamplePolicy
  5262. pub fn aya::programs::perf_event::SamplePolicy::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5263. impl core::marker::Freeze for aya::programs::perf_event::SamplePolicy
  5264. impl core::marker::Send for aya::programs::perf_event::SamplePolicy
  5265. impl core::marker::Sync for aya::programs::perf_event::SamplePolicy
  5266. impl core::marker::Unpin for aya::programs::perf_event::SamplePolicy
  5267. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::SamplePolicy
  5268. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::SamplePolicy
  5269. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::SamplePolicy where U: core::convert::From<T>
  5270. pub fn aya::programs::perf_event::SamplePolicy::into(self) -> U
  5271. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::SamplePolicy where U: core::convert::Into<T>
  5272. pub type aya::programs::perf_event::SamplePolicy::Error = core::convert::Infallible
  5273. pub fn aya::programs::perf_event::SamplePolicy::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5274. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_event::SamplePolicy where U: core::convert::TryFrom<T>
  5275. pub type aya::programs::perf_event::SamplePolicy::Error = <U as core::convert::TryFrom<T>>::Error
  5276. pub fn aya::programs::perf_event::SamplePolicy::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5277. impl<T> alloc::borrow::ToOwned for aya::programs::perf_event::SamplePolicy where T: core::clone::Clone
  5278. pub type aya::programs::perf_event::SamplePolicy::Owned = T
  5279. pub fn aya::programs::perf_event::SamplePolicy::clone_into(&self, target: &mut T)
  5280. pub fn aya::programs::perf_event::SamplePolicy::to_owned(&self) -> T
  5281. impl<T> core::any::Any for aya::programs::perf_event::SamplePolicy where T: 'static + ?core::marker::Sized
  5282. pub fn aya::programs::perf_event::SamplePolicy::type_id(&self) -> core::any::TypeId
  5283. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::SamplePolicy where T: ?core::marker::Sized
  5284. pub fn aya::programs::perf_event::SamplePolicy::borrow(&self) -> &T
  5285. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::SamplePolicy where T: ?core::marker::Sized
  5286. pub fn aya::programs::perf_event::SamplePolicy::borrow_mut(&mut self) -> &mut T
  5287. impl<T> core::clone::CloneToUninit for aya::programs::perf_event::SamplePolicy where T: core::clone::Clone
  5288. pub unsafe fn aya::programs::perf_event::SamplePolicy::clone_to_uninit(&self, dest: *mut u8)
  5289. impl<T> core::convert::From<T> for aya::programs::perf_event::SamplePolicy
  5290. pub fn aya::programs::perf_event::SamplePolicy::from(t: T) -> T
  5291. pub struct aya::programs::perf_event::PerfEvent
  5292. impl aya::programs::perf_event::PerfEvent
  5293. pub const aya::programs::perf_event::PerfEvent::PROGRAM_TYPE: aya::programs::ProgramType
  5294. 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>
  5295. pub fn aya::programs::perf_event::PerfEvent::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  5296. impl aya::programs::perf_event::PerfEvent
  5297. pub fn aya::programs::perf_event::PerfEvent::detach(&mut self, link_id: aya::programs::perf_event::PerfEventLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  5298. 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>
  5299. impl aya::programs::perf_event::PerfEvent
  5300. pub fn aya::programs::perf_event::PerfEvent::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  5301. impl aya::programs::perf_event::PerfEvent
  5302. 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>
  5303. impl aya::programs::perf_event::PerfEvent
  5304. pub fn aya::programs::perf_event::PerfEvent::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  5305. impl aya::programs::perf_event::PerfEvent
  5306. pub fn aya::programs::perf_event::PerfEvent::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  5307. impl aya::programs::perf_event::PerfEvent
  5308. 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>
  5309. pub fn aya::programs::perf_event::PerfEvent::unpin(self) -> core::result::Result<(), std::io::error::Error>
  5310. impl aya::programs::perf_event::PerfEvent
  5311. pub fn aya::programs::perf_event::PerfEvent::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  5312. impl core::fmt::Debug for aya::programs::perf_event::PerfEvent
  5313. pub fn aya::programs::perf_event::PerfEvent::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5314. impl core::ops::drop::Drop for aya::programs::perf_event::PerfEvent
  5315. pub fn aya::programs::perf_event::PerfEvent::drop(&mut self)
  5316. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::perf_event::PerfEvent
  5317. pub type &'a aya::programs::perf_event::PerfEvent::Error = aya::programs::ProgramError
  5318. 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>
  5319. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::perf_event::PerfEvent
  5320. pub type &'a mut aya::programs::perf_event::PerfEvent::Error = aya::programs::ProgramError
  5321. 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>
  5322. impl core::marker::Freeze for aya::programs::perf_event::PerfEvent
  5323. impl core::marker::Send for aya::programs::perf_event::PerfEvent
  5324. impl core::marker::Sync for aya::programs::perf_event::PerfEvent
  5325. impl core::marker::Unpin for aya::programs::perf_event::PerfEvent
  5326. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::PerfEvent
  5327. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::PerfEvent
  5328. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::PerfEvent where U: core::convert::From<T>
  5329. pub fn aya::programs::perf_event::PerfEvent::into(self) -> U
  5330. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::PerfEvent where U: core::convert::Into<T>
  5331. pub type aya::programs::perf_event::PerfEvent::Error = core::convert::Infallible
  5332. pub fn aya::programs::perf_event::PerfEvent::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5333. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_event::PerfEvent where U: core::convert::TryFrom<T>
  5334. pub type aya::programs::perf_event::PerfEvent::Error = <U as core::convert::TryFrom<T>>::Error
  5335. pub fn aya::programs::perf_event::PerfEvent::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5336. impl<T> core::any::Any for aya::programs::perf_event::PerfEvent where T: 'static + ?core::marker::Sized
  5337. pub fn aya::programs::perf_event::PerfEvent::type_id(&self) -> core::any::TypeId
  5338. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::PerfEvent where T: ?core::marker::Sized
  5339. pub fn aya::programs::perf_event::PerfEvent::borrow(&self) -> &T
  5340. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::PerfEvent where T: ?core::marker::Sized
  5341. pub fn aya::programs::perf_event::PerfEvent::borrow_mut(&mut self) -> &mut T
  5342. impl<T> core::convert::From<T> for aya::programs::perf_event::PerfEvent
  5343. pub fn aya::programs::perf_event::PerfEvent::from(t: T) -> T
  5344. pub struct aya::programs::perf_event::PerfEventLink(_)
  5345. impl aya::programs::links::Link for aya::programs::perf_event::PerfEventLink
  5346. pub type aya::programs::perf_event::PerfEventLink::Id = aya::programs::perf_event::PerfEventLinkId
  5347. pub fn aya::programs::perf_event::PerfEventLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  5348. pub fn aya::programs::perf_event::PerfEventLink::id(&self) -> Self::Id
  5349. impl core::cmp::Eq for aya::programs::perf_event::PerfEventLink
  5350. impl core::cmp::PartialEq for aya::programs::perf_event::PerfEventLink
  5351. pub fn aya::programs::perf_event::PerfEventLink::eq(&self, other: &Self) -> bool
  5352. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::perf_event::PerfEventLink
  5353. pub type aya::programs::perf_event::PerfEventLink::Error = aya::programs::links::LinkError
  5354. pub fn aya::programs::perf_event::PerfEventLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  5355. impl core::convert::TryFrom<aya::programs::perf_event::PerfEventLink> for aya::programs::links::FdLink
  5356. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  5357. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::perf_event::PerfEventLink) -> core::result::Result<Self, Self::Error>
  5358. impl core::fmt::Debug for aya::programs::perf_event::PerfEventLink
  5359. pub fn aya::programs::perf_event::PerfEventLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5360. impl core::hash::Hash for aya::programs::perf_event::PerfEventLink
  5361. pub fn aya::programs::perf_event::PerfEventLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  5362. impl core::ops::drop::Drop for aya::programs::perf_event::PerfEventLink
  5363. pub fn aya::programs::perf_event::PerfEventLink::drop(&mut self)
  5364. impl equivalent::Equivalent<aya::programs::perf_event::PerfEventLink> for aya::programs::perf_event::PerfEventLinkId
  5365. pub fn aya::programs::perf_event::PerfEventLinkId::equivalent(&self, key: &aya::programs::perf_event::PerfEventLink) -> bool
  5366. impl core::marker::Freeze for aya::programs::perf_event::PerfEventLink
  5367. impl core::marker::Send for aya::programs::perf_event::PerfEventLink
  5368. impl core::marker::Sync for aya::programs::perf_event::PerfEventLink
  5369. impl core::marker::Unpin for aya::programs::perf_event::PerfEventLink
  5370. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::PerfEventLink
  5371. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::PerfEventLink
  5372. impl<Q, K> equivalent::Equivalent<K> for aya::programs::perf_event::PerfEventLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  5373. pub fn aya::programs::perf_event::PerfEventLink::equivalent(&self, key: &K) -> bool
  5374. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::PerfEventLink where U: core::convert::From<T>
  5375. pub fn aya::programs::perf_event::PerfEventLink::into(self) -> U
  5376. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::PerfEventLink where U: core::convert::Into<T>
  5377. pub type aya::programs::perf_event::PerfEventLink::Error = core::convert::Infallible
  5378. pub fn aya::programs::perf_event::PerfEventLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5379. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_event::PerfEventLink where U: core::convert::TryFrom<T>
  5380. pub type aya::programs::perf_event::PerfEventLink::Error = <U as core::convert::TryFrom<T>>::Error
  5381. pub fn aya::programs::perf_event::PerfEventLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5382. impl<T> core::any::Any for aya::programs::perf_event::PerfEventLink where T: 'static + ?core::marker::Sized
  5383. pub fn aya::programs::perf_event::PerfEventLink::type_id(&self) -> core::any::TypeId
  5384. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::PerfEventLink where T: ?core::marker::Sized
  5385. pub fn aya::programs::perf_event::PerfEventLink::borrow(&self) -> &T
  5386. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::PerfEventLink where T: ?core::marker::Sized
  5387. pub fn aya::programs::perf_event::PerfEventLink::borrow_mut(&mut self) -> &mut T
  5388. impl<T> core::convert::From<T> for aya::programs::perf_event::PerfEventLink
  5389. pub fn aya::programs::perf_event::PerfEventLink::from(t: T) -> T
  5390. pub struct aya::programs::perf_event::PerfEventLinkId(_)
  5391. impl core::cmp::Eq for aya::programs::perf_event::PerfEventLinkId
  5392. impl core::cmp::PartialEq for aya::programs::perf_event::PerfEventLinkId
  5393. pub fn aya::programs::perf_event::PerfEventLinkId::eq(&self, other: &aya::programs::perf_event::PerfEventLinkId) -> bool
  5394. impl core::fmt::Debug for aya::programs::perf_event::PerfEventLinkId
  5395. pub fn aya::programs::perf_event::PerfEventLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5396. impl core::hash::Hash for aya::programs::perf_event::PerfEventLinkId
  5397. pub fn aya::programs::perf_event::PerfEventLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  5398. impl core::marker::StructuralPartialEq for aya::programs::perf_event::PerfEventLinkId
  5399. impl equivalent::Equivalent<aya::programs::perf_event::PerfEventLink> for aya::programs::perf_event::PerfEventLinkId
  5400. pub fn aya::programs::perf_event::PerfEventLinkId::equivalent(&self, key: &aya::programs::perf_event::PerfEventLink) -> bool
  5401. impl core::marker::Freeze for aya::programs::perf_event::PerfEventLinkId
  5402. impl core::marker::Send for aya::programs::perf_event::PerfEventLinkId
  5403. impl core::marker::Sync for aya::programs::perf_event::PerfEventLinkId
  5404. impl core::marker::Unpin for aya::programs::perf_event::PerfEventLinkId
  5405. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::PerfEventLinkId
  5406. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::PerfEventLinkId
  5407. impl<Q, K> equivalent::Equivalent<K> for aya::programs::perf_event::PerfEventLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  5408. pub fn aya::programs::perf_event::PerfEventLinkId::equivalent(&self, key: &K) -> bool
  5409. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::PerfEventLinkId where U: core::convert::From<T>
  5410. pub fn aya::programs::perf_event::PerfEventLinkId::into(self) -> U
  5411. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::PerfEventLinkId where U: core::convert::Into<T>
  5412. pub type aya::programs::perf_event::PerfEventLinkId::Error = core::convert::Infallible
  5413. pub fn aya::programs::perf_event::PerfEventLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5414. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_event::PerfEventLinkId where U: core::convert::TryFrom<T>
  5415. pub type aya::programs::perf_event::PerfEventLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  5416. pub fn aya::programs::perf_event::PerfEventLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5417. impl<T> core::any::Any for aya::programs::perf_event::PerfEventLinkId where T: 'static + ?core::marker::Sized
  5418. pub fn aya::programs::perf_event::PerfEventLinkId::type_id(&self) -> core::any::TypeId
  5419. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::PerfEventLinkId where T: ?core::marker::Sized
  5420. pub fn aya::programs::perf_event::PerfEventLinkId::borrow(&self) -> &T
  5421. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::PerfEventLinkId where T: ?core::marker::Sized
  5422. pub fn aya::programs::perf_event::PerfEventLinkId::borrow_mut(&mut self) -> &mut T
  5423. impl<T> core::convert::From<T> for aya::programs::perf_event::PerfEventLinkId
  5424. pub fn aya::programs::perf_event::PerfEventLinkId::from(t: T) -> T
  5425. pub mod aya::programs::raw_trace_point
  5426. pub struct aya::programs::raw_trace_point::RawTracePoint
  5427. impl aya::programs::raw_trace_point::RawTracePoint
  5428. pub const aya::programs::raw_trace_point::RawTracePoint::PROGRAM_TYPE: aya::programs::ProgramType
  5429. pub fn aya::programs::raw_trace_point::RawTracePoint::attach(&mut self, tp_name: &str) -> core::result::Result<aya::programs::raw_trace_point::RawTracePointLinkId, aya::programs::ProgramError>
  5430. pub fn aya::programs::raw_trace_point::RawTracePoint::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  5431. impl aya::programs::raw_trace_point::RawTracePoint
  5432. pub fn aya::programs::raw_trace_point::RawTracePoint::detach(&mut self, link_id: aya::programs::raw_trace_point::RawTracePointLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  5433. pub fn aya::programs::raw_trace_point::RawTracePoint::take_link(&mut self, link_id: aya::programs::raw_trace_point::RawTracePointLinkId) -> core::result::Result<aya::programs::raw_trace_point::RawTracePointLink, aya::programs::ProgramError>
  5434. impl aya::programs::raw_trace_point::RawTracePoint
  5435. pub fn aya::programs::raw_trace_point::RawTracePoint::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  5436. impl aya::programs::raw_trace_point::RawTracePoint
  5437. pub fn aya::programs::raw_trace_point::RawTracePoint::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  5438. impl aya::programs::raw_trace_point::RawTracePoint
  5439. pub fn aya::programs::raw_trace_point::RawTracePoint::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  5440. impl aya::programs::raw_trace_point::RawTracePoint
  5441. pub fn aya::programs::raw_trace_point::RawTracePoint::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  5442. impl aya::programs::raw_trace_point::RawTracePoint
  5443. pub fn aya::programs::raw_trace_point::RawTracePoint::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  5444. pub fn aya::programs::raw_trace_point::RawTracePoint::unpin(self) -> core::result::Result<(), std::io::error::Error>
  5445. impl aya::programs::raw_trace_point::RawTracePoint
  5446. pub fn aya::programs::raw_trace_point::RawTracePoint::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  5447. impl core::fmt::Debug for aya::programs::raw_trace_point::RawTracePoint
  5448. pub fn aya::programs::raw_trace_point::RawTracePoint::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5449. impl core::ops::drop::Drop for aya::programs::raw_trace_point::RawTracePoint
  5450. pub fn aya::programs::raw_trace_point::RawTracePoint::drop(&mut self)
  5451. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::raw_trace_point::RawTracePoint
  5452. pub type &'a aya::programs::raw_trace_point::RawTracePoint::Error = aya::programs::ProgramError
  5453. pub fn &'a aya::programs::raw_trace_point::RawTracePoint::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::raw_trace_point::RawTracePoint, aya::programs::ProgramError>
  5454. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::raw_trace_point::RawTracePoint
  5455. pub type &'a mut aya::programs::raw_trace_point::RawTracePoint::Error = aya::programs::ProgramError
  5456. pub fn &'a mut aya::programs::raw_trace_point::RawTracePoint::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::raw_trace_point::RawTracePoint, aya::programs::ProgramError>
  5457. impl core::marker::Freeze for aya::programs::raw_trace_point::RawTracePoint
  5458. impl core::marker::Send for aya::programs::raw_trace_point::RawTracePoint
  5459. impl core::marker::Sync for aya::programs::raw_trace_point::RawTracePoint
  5460. impl core::marker::Unpin for aya::programs::raw_trace_point::RawTracePoint
  5461. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::raw_trace_point::RawTracePoint
  5462. impl core::panic::unwind_safe::UnwindSafe for aya::programs::raw_trace_point::RawTracePoint
  5463. impl<T, U> core::convert::Into<U> for aya::programs::raw_trace_point::RawTracePoint where U: core::convert::From<T>
  5464. pub fn aya::programs::raw_trace_point::RawTracePoint::into(self) -> U
  5465. impl<T, U> core::convert::TryFrom<U> for aya::programs::raw_trace_point::RawTracePoint where U: core::convert::Into<T>
  5466. pub type aya::programs::raw_trace_point::RawTracePoint::Error = core::convert::Infallible
  5467. pub fn aya::programs::raw_trace_point::RawTracePoint::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5468. impl<T, U> core::convert::TryInto<U> for aya::programs::raw_trace_point::RawTracePoint where U: core::convert::TryFrom<T>
  5469. pub type aya::programs::raw_trace_point::RawTracePoint::Error = <U as core::convert::TryFrom<T>>::Error
  5470. pub fn aya::programs::raw_trace_point::RawTracePoint::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5471. impl<T> core::any::Any for aya::programs::raw_trace_point::RawTracePoint where T: 'static + ?core::marker::Sized
  5472. pub fn aya::programs::raw_trace_point::RawTracePoint::type_id(&self) -> core::any::TypeId
  5473. impl<T> core::borrow::Borrow<T> for aya::programs::raw_trace_point::RawTracePoint where T: ?core::marker::Sized
  5474. pub fn aya::programs::raw_trace_point::RawTracePoint::borrow(&self) -> &T
  5475. impl<T> core::borrow::BorrowMut<T> for aya::programs::raw_trace_point::RawTracePoint where T: ?core::marker::Sized
  5476. pub fn aya::programs::raw_trace_point::RawTracePoint::borrow_mut(&mut self) -> &mut T
  5477. impl<T> core::convert::From<T> for aya::programs::raw_trace_point::RawTracePoint
  5478. pub fn aya::programs::raw_trace_point::RawTracePoint::from(t: T) -> T
  5479. pub struct aya::programs::raw_trace_point::RawTracePointLink(_)
  5480. impl aya::programs::links::Link for aya::programs::raw_trace_point::RawTracePointLink
  5481. pub type aya::programs::raw_trace_point::RawTracePointLink::Id = aya::programs::raw_trace_point::RawTracePointLinkId
  5482. pub fn aya::programs::raw_trace_point::RawTracePointLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  5483. pub fn aya::programs::raw_trace_point::RawTracePointLink::id(&self) -> Self::Id
  5484. impl core::cmp::Eq for aya::programs::raw_trace_point::RawTracePointLink
  5485. impl core::cmp::PartialEq for aya::programs::raw_trace_point::RawTracePointLink
  5486. pub fn aya::programs::raw_trace_point::RawTracePointLink::eq(&self, other: &Self) -> bool
  5487. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::raw_trace_point::RawTracePointLink
  5488. pub fn aya::programs::raw_trace_point::RawTracePointLink::from(b: aya::programs::links::FdLink) -> aya::programs::raw_trace_point::RawTracePointLink
  5489. impl core::convert::From<aya::programs::raw_trace_point::RawTracePointLink> for aya::programs::links::FdLink
  5490. pub fn aya::programs::links::FdLink::from(w: aya::programs::raw_trace_point::RawTracePointLink) -> aya::programs::links::FdLink
  5491. impl core::fmt::Debug for aya::programs::raw_trace_point::RawTracePointLink
  5492. pub fn aya::programs::raw_trace_point::RawTracePointLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5493. impl core::hash::Hash for aya::programs::raw_trace_point::RawTracePointLink
  5494. pub fn aya::programs::raw_trace_point::RawTracePointLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  5495. impl core::ops::drop::Drop for aya::programs::raw_trace_point::RawTracePointLink
  5496. pub fn aya::programs::raw_trace_point::RawTracePointLink::drop(&mut self)
  5497. impl equivalent::Equivalent<aya::programs::raw_trace_point::RawTracePointLink> for aya::programs::raw_trace_point::RawTracePointLinkId
  5498. pub fn aya::programs::raw_trace_point::RawTracePointLinkId::equivalent(&self, key: &aya::programs::raw_trace_point::RawTracePointLink) -> bool
  5499. impl core::marker::Freeze for aya::programs::raw_trace_point::RawTracePointLink
  5500. impl core::marker::Send for aya::programs::raw_trace_point::RawTracePointLink
  5501. impl core::marker::Sync for aya::programs::raw_trace_point::RawTracePointLink
  5502. impl core::marker::Unpin for aya::programs::raw_trace_point::RawTracePointLink
  5503. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::raw_trace_point::RawTracePointLink
  5504. impl core::panic::unwind_safe::UnwindSafe for aya::programs::raw_trace_point::RawTracePointLink
  5505. impl<Q, K> equivalent::Equivalent<K> for aya::programs::raw_trace_point::RawTracePointLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  5506. pub fn aya::programs::raw_trace_point::RawTracePointLink::equivalent(&self, key: &K) -> bool
  5507. impl<T, U> core::convert::Into<U> for aya::programs::raw_trace_point::RawTracePointLink where U: core::convert::From<T>
  5508. pub fn aya::programs::raw_trace_point::RawTracePointLink::into(self) -> U
  5509. impl<T, U> core::convert::TryFrom<U> for aya::programs::raw_trace_point::RawTracePointLink where U: core::convert::Into<T>
  5510. pub type aya::programs::raw_trace_point::RawTracePointLink::Error = core::convert::Infallible
  5511. pub fn aya::programs::raw_trace_point::RawTracePointLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5512. impl<T, U> core::convert::TryInto<U> for aya::programs::raw_trace_point::RawTracePointLink where U: core::convert::TryFrom<T>
  5513. pub type aya::programs::raw_trace_point::RawTracePointLink::Error = <U as core::convert::TryFrom<T>>::Error
  5514. pub fn aya::programs::raw_trace_point::RawTracePointLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5515. impl<T> core::any::Any for aya::programs::raw_trace_point::RawTracePointLink where T: 'static + ?core::marker::Sized
  5516. pub fn aya::programs::raw_trace_point::RawTracePointLink::type_id(&self) -> core::any::TypeId
  5517. impl<T> core::borrow::Borrow<T> for aya::programs::raw_trace_point::RawTracePointLink where T: ?core::marker::Sized
  5518. pub fn aya::programs::raw_trace_point::RawTracePointLink::borrow(&self) -> &T
  5519. impl<T> core::borrow::BorrowMut<T> for aya::programs::raw_trace_point::RawTracePointLink where T: ?core::marker::Sized
  5520. pub fn aya::programs::raw_trace_point::RawTracePointLink::borrow_mut(&mut self) -> &mut T
  5521. impl<T> core::convert::From<T> for aya::programs::raw_trace_point::RawTracePointLink
  5522. pub fn aya::programs::raw_trace_point::RawTracePointLink::from(t: T) -> T
  5523. pub struct aya::programs::raw_trace_point::RawTracePointLinkId(_)
  5524. impl core::cmp::Eq for aya::programs::raw_trace_point::RawTracePointLinkId
  5525. impl core::cmp::PartialEq for aya::programs::raw_trace_point::RawTracePointLinkId
  5526. pub fn aya::programs::raw_trace_point::RawTracePointLinkId::eq(&self, other: &aya::programs::raw_trace_point::RawTracePointLinkId) -> bool
  5527. impl core::fmt::Debug for aya::programs::raw_trace_point::RawTracePointLinkId
  5528. pub fn aya::programs::raw_trace_point::RawTracePointLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5529. impl core::hash::Hash for aya::programs::raw_trace_point::RawTracePointLinkId
  5530. pub fn aya::programs::raw_trace_point::RawTracePointLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  5531. impl core::marker::StructuralPartialEq for aya::programs::raw_trace_point::RawTracePointLinkId
  5532. impl equivalent::Equivalent<aya::programs::raw_trace_point::RawTracePointLink> for aya::programs::raw_trace_point::RawTracePointLinkId
  5533. pub fn aya::programs::raw_trace_point::RawTracePointLinkId::equivalent(&self, key: &aya::programs::raw_trace_point::RawTracePointLink) -> bool
  5534. impl core::marker::Freeze for aya::programs::raw_trace_point::RawTracePointLinkId
  5535. impl core::marker::Send for aya::programs::raw_trace_point::RawTracePointLinkId
  5536. impl core::marker::Sync for aya::programs::raw_trace_point::RawTracePointLinkId
  5537. impl core::marker::Unpin for aya::programs::raw_trace_point::RawTracePointLinkId
  5538. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::raw_trace_point::RawTracePointLinkId
  5539. impl core::panic::unwind_safe::UnwindSafe for aya::programs::raw_trace_point::RawTracePointLinkId
  5540. impl<Q, K> equivalent::Equivalent<K> for aya::programs::raw_trace_point::RawTracePointLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  5541. pub fn aya::programs::raw_trace_point::RawTracePointLinkId::equivalent(&self, key: &K) -> bool
  5542. impl<T, U> core::convert::Into<U> for aya::programs::raw_trace_point::RawTracePointLinkId where U: core::convert::From<T>
  5543. pub fn aya::programs::raw_trace_point::RawTracePointLinkId::into(self) -> U
  5544. impl<T, U> core::convert::TryFrom<U> for aya::programs::raw_trace_point::RawTracePointLinkId where U: core::convert::Into<T>
  5545. pub type aya::programs::raw_trace_point::RawTracePointLinkId::Error = core::convert::Infallible
  5546. pub fn aya::programs::raw_trace_point::RawTracePointLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5547. impl<T, U> core::convert::TryInto<U> for aya::programs::raw_trace_point::RawTracePointLinkId where U: core::convert::TryFrom<T>
  5548. pub type aya::programs::raw_trace_point::RawTracePointLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  5549. pub fn aya::programs::raw_trace_point::RawTracePointLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5550. impl<T> core::any::Any for aya::programs::raw_trace_point::RawTracePointLinkId where T: 'static + ?core::marker::Sized
  5551. pub fn aya::programs::raw_trace_point::RawTracePointLinkId::type_id(&self) -> core::any::TypeId
  5552. impl<T> core::borrow::Borrow<T> for aya::programs::raw_trace_point::RawTracePointLinkId where T: ?core::marker::Sized
  5553. pub fn aya::programs::raw_trace_point::RawTracePointLinkId::borrow(&self) -> &T
  5554. impl<T> core::borrow::BorrowMut<T> for aya::programs::raw_trace_point::RawTracePointLinkId where T: ?core::marker::Sized
  5555. pub fn aya::programs::raw_trace_point::RawTracePointLinkId::borrow_mut(&mut self) -> &mut T
  5556. impl<T> core::convert::From<T> for aya::programs::raw_trace_point::RawTracePointLinkId
  5557. pub fn aya::programs::raw_trace_point::RawTracePointLinkId::from(t: T) -> T
  5558. pub mod aya::programs::sk_lookup
  5559. pub struct aya::programs::sk_lookup::SkLookup
  5560. impl aya::programs::sk_lookup::SkLookup
  5561. pub const aya::programs::sk_lookup::SkLookup::PROGRAM_TYPE: aya::programs::ProgramType
  5562. pub fn aya::programs::sk_lookup::SkLookup::attach<T: std::os::fd::owned::AsFd>(&mut self, netns: T) -> core::result::Result<aya::programs::sk_lookup::SkLookupLinkId, aya::programs::ProgramError>
  5563. pub fn aya::programs::sk_lookup::SkLookup::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  5564. impl aya::programs::sk_lookup::SkLookup
  5565. pub fn aya::programs::sk_lookup::SkLookup::detach(&mut self, link_id: aya::programs::sk_lookup::SkLookupLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  5566. pub fn aya::programs::sk_lookup::SkLookup::take_link(&mut self, link_id: aya::programs::sk_lookup::SkLookupLinkId) -> core::result::Result<aya::programs::sk_lookup::SkLookupLink, aya::programs::ProgramError>
  5567. impl aya::programs::sk_lookup::SkLookup
  5568. pub fn aya::programs::sk_lookup::SkLookup::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  5569. impl aya::programs::sk_lookup::SkLookup
  5570. pub fn aya::programs::sk_lookup::SkLookup::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  5571. impl aya::programs::sk_lookup::SkLookup
  5572. pub fn aya::programs::sk_lookup::SkLookup::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  5573. impl aya::programs::sk_lookup::SkLookup
  5574. pub fn aya::programs::sk_lookup::SkLookup::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  5575. impl aya::programs::sk_lookup::SkLookup
  5576. pub fn aya::programs::sk_lookup::SkLookup::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  5577. pub fn aya::programs::sk_lookup::SkLookup::unpin(self) -> core::result::Result<(), std::io::error::Error>
  5578. impl aya::programs::sk_lookup::SkLookup
  5579. pub fn aya::programs::sk_lookup::SkLookup::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  5580. impl core::fmt::Debug for aya::programs::sk_lookup::SkLookup
  5581. pub fn aya::programs::sk_lookup::SkLookup::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5582. impl core::ops::drop::Drop for aya::programs::sk_lookup::SkLookup
  5583. pub fn aya::programs::sk_lookup::SkLookup::drop(&mut self)
  5584. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::sk_lookup::SkLookup
  5585. pub type &'a aya::programs::sk_lookup::SkLookup::Error = aya::programs::ProgramError
  5586. pub fn &'a aya::programs::sk_lookup::SkLookup::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::sk_lookup::SkLookup, aya::programs::ProgramError>
  5587. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::sk_lookup::SkLookup
  5588. pub type &'a mut aya::programs::sk_lookup::SkLookup::Error = aya::programs::ProgramError
  5589. pub fn &'a mut aya::programs::sk_lookup::SkLookup::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::sk_lookup::SkLookup, aya::programs::ProgramError>
  5590. impl core::marker::Freeze for aya::programs::sk_lookup::SkLookup
  5591. impl core::marker::Send for aya::programs::sk_lookup::SkLookup
  5592. impl core::marker::Sync for aya::programs::sk_lookup::SkLookup
  5593. impl core::marker::Unpin for aya::programs::sk_lookup::SkLookup
  5594. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sk_lookup::SkLookup
  5595. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sk_lookup::SkLookup
  5596. impl<T, U> core::convert::Into<U> for aya::programs::sk_lookup::SkLookup where U: core::convert::From<T>
  5597. pub fn aya::programs::sk_lookup::SkLookup::into(self) -> U
  5598. impl<T, U> core::convert::TryFrom<U> for aya::programs::sk_lookup::SkLookup where U: core::convert::Into<T>
  5599. pub type aya::programs::sk_lookup::SkLookup::Error = core::convert::Infallible
  5600. pub fn aya::programs::sk_lookup::SkLookup::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5601. impl<T, U> core::convert::TryInto<U> for aya::programs::sk_lookup::SkLookup where U: core::convert::TryFrom<T>
  5602. pub type aya::programs::sk_lookup::SkLookup::Error = <U as core::convert::TryFrom<T>>::Error
  5603. pub fn aya::programs::sk_lookup::SkLookup::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5604. impl<T> core::any::Any for aya::programs::sk_lookup::SkLookup where T: 'static + ?core::marker::Sized
  5605. pub fn aya::programs::sk_lookup::SkLookup::type_id(&self) -> core::any::TypeId
  5606. impl<T> core::borrow::Borrow<T> for aya::programs::sk_lookup::SkLookup where T: ?core::marker::Sized
  5607. pub fn aya::programs::sk_lookup::SkLookup::borrow(&self) -> &T
  5608. impl<T> core::borrow::BorrowMut<T> for aya::programs::sk_lookup::SkLookup where T: ?core::marker::Sized
  5609. pub fn aya::programs::sk_lookup::SkLookup::borrow_mut(&mut self) -> &mut T
  5610. impl<T> core::convert::From<T> for aya::programs::sk_lookup::SkLookup
  5611. pub fn aya::programs::sk_lookup::SkLookup::from(t: T) -> T
  5612. pub struct aya::programs::sk_lookup::SkLookupLink(_)
  5613. impl aya::programs::links::Link for aya::programs::sk_lookup::SkLookupLink
  5614. pub type aya::programs::sk_lookup::SkLookupLink::Id = aya::programs::sk_lookup::SkLookupLinkId
  5615. pub fn aya::programs::sk_lookup::SkLookupLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  5616. pub fn aya::programs::sk_lookup::SkLookupLink::id(&self) -> Self::Id
  5617. impl core::cmp::Eq for aya::programs::sk_lookup::SkLookupLink
  5618. impl core::cmp::PartialEq for aya::programs::sk_lookup::SkLookupLink
  5619. pub fn aya::programs::sk_lookup::SkLookupLink::eq(&self, other: &Self) -> bool
  5620. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::sk_lookup::SkLookupLink
  5621. pub fn aya::programs::sk_lookup::SkLookupLink::from(b: aya::programs::links::FdLink) -> aya::programs::sk_lookup::SkLookupLink
  5622. impl core::convert::From<aya::programs::sk_lookup::SkLookupLink> for aya::programs::links::FdLink
  5623. pub fn aya::programs::links::FdLink::from(w: aya::programs::sk_lookup::SkLookupLink) -> aya::programs::links::FdLink
  5624. impl core::fmt::Debug for aya::programs::sk_lookup::SkLookupLink
  5625. pub fn aya::programs::sk_lookup::SkLookupLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5626. impl core::hash::Hash for aya::programs::sk_lookup::SkLookupLink
  5627. pub fn aya::programs::sk_lookup::SkLookupLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  5628. impl core::ops::drop::Drop for aya::programs::sk_lookup::SkLookupLink
  5629. pub fn aya::programs::sk_lookup::SkLookupLink::drop(&mut self)
  5630. impl equivalent::Equivalent<aya::programs::sk_lookup::SkLookupLink> for aya::programs::sk_lookup::SkLookupLinkId
  5631. pub fn aya::programs::sk_lookup::SkLookupLinkId::equivalent(&self, key: &aya::programs::sk_lookup::SkLookupLink) -> bool
  5632. impl core::marker::Freeze for aya::programs::sk_lookup::SkLookupLink
  5633. impl core::marker::Send for aya::programs::sk_lookup::SkLookupLink
  5634. impl core::marker::Sync for aya::programs::sk_lookup::SkLookupLink
  5635. impl core::marker::Unpin for aya::programs::sk_lookup::SkLookupLink
  5636. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sk_lookup::SkLookupLink
  5637. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sk_lookup::SkLookupLink
  5638. impl<Q, K> equivalent::Equivalent<K> for aya::programs::sk_lookup::SkLookupLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  5639. pub fn aya::programs::sk_lookup::SkLookupLink::equivalent(&self, key: &K) -> bool
  5640. impl<T, U> core::convert::Into<U> for aya::programs::sk_lookup::SkLookupLink where U: core::convert::From<T>
  5641. pub fn aya::programs::sk_lookup::SkLookupLink::into(self) -> U
  5642. impl<T, U> core::convert::TryFrom<U> for aya::programs::sk_lookup::SkLookupLink where U: core::convert::Into<T>
  5643. pub type aya::programs::sk_lookup::SkLookupLink::Error = core::convert::Infallible
  5644. pub fn aya::programs::sk_lookup::SkLookupLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5645. impl<T, U> core::convert::TryInto<U> for aya::programs::sk_lookup::SkLookupLink where U: core::convert::TryFrom<T>
  5646. pub type aya::programs::sk_lookup::SkLookupLink::Error = <U as core::convert::TryFrom<T>>::Error
  5647. pub fn aya::programs::sk_lookup::SkLookupLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5648. impl<T> core::any::Any for aya::programs::sk_lookup::SkLookupLink where T: 'static + ?core::marker::Sized
  5649. pub fn aya::programs::sk_lookup::SkLookupLink::type_id(&self) -> core::any::TypeId
  5650. impl<T> core::borrow::Borrow<T> for aya::programs::sk_lookup::SkLookupLink where T: ?core::marker::Sized
  5651. pub fn aya::programs::sk_lookup::SkLookupLink::borrow(&self) -> &T
  5652. impl<T> core::borrow::BorrowMut<T> for aya::programs::sk_lookup::SkLookupLink where T: ?core::marker::Sized
  5653. pub fn aya::programs::sk_lookup::SkLookupLink::borrow_mut(&mut self) -> &mut T
  5654. impl<T> core::convert::From<T> for aya::programs::sk_lookup::SkLookupLink
  5655. pub fn aya::programs::sk_lookup::SkLookupLink::from(t: T) -> T
  5656. pub struct aya::programs::sk_lookup::SkLookupLinkId(_)
  5657. impl core::cmp::Eq for aya::programs::sk_lookup::SkLookupLinkId
  5658. impl core::cmp::PartialEq for aya::programs::sk_lookup::SkLookupLinkId
  5659. pub fn aya::programs::sk_lookup::SkLookupLinkId::eq(&self, other: &aya::programs::sk_lookup::SkLookupLinkId) -> bool
  5660. impl core::fmt::Debug for aya::programs::sk_lookup::SkLookupLinkId
  5661. pub fn aya::programs::sk_lookup::SkLookupLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5662. impl core::hash::Hash for aya::programs::sk_lookup::SkLookupLinkId
  5663. pub fn aya::programs::sk_lookup::SkLookupLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  5664. impl core::marker::StructuralPartialEq for aya::programs::sk_lookup::SkLookupLinkId
  5665. impl equivalent::Equivalent<aya::programs::sk_lookup::SkLookupLink> for aya::programs::sk_lookup::SkLookupLinkId
  5666. pub fn aya::programs::sk_lookup::SkLookupLinkId::equivalent(&self, key: &aya::programs::sk_lookup::SkLookupLink) -> bool
  5667. impl core::marker::Freeze for aya::programs::sk_lookup::SkLookupLinkId
  5668. impl core::marker::Send for aya::programs::sk_lookup::SkLookupLinkId
  5669. impl core::marker::Sync for aya::programs::sk_lookup::SkLookupLinkId
  5670. impl core::marker::Unpin for aya::programs::sk_lookup::SkLookupLinkId
  5671. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sk_lookup::SkLookupLinkId
  5672. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sk_lookup::SkLookupLinkId
  5673. impl<Q, K> equivalent::Equivalent<K> for aya::programs::sk_lookup::SkLookupLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  5674. pub fn aya::programs::sk_lookup::SkLookupLinkId::equivalent(&self, key: &K) -> bool
  5675. impl<T, U> core::convert::Into<U> for aya::programs::sk_lookup::SkLookupLinkId where U: core::convert::From<T>
  5676. pub fn aya::programs::sk_lookup::SkLookupLinkId::into(self) -> U
  5677. impl<T, U> core::convert::TryFrom<U> for aya::programs::sk_lookup::SkLookupLinkId where U: core::convert::Into<T>
  5678. pub type aya::programs::sk_lookup::SkLookupLinkId::Error = core::convert::Infallible
  5679. pub fn aya::programs::sk_lookup::SkLookupLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5680. impl<T, U> core::convert::TryInto<U> for aya::programs::sk_lookup::SkLookupLinkId where U: core::convert::TryFrom<T>
  5681. pub type aya::programs::sk_lookup::SkLookupLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  5682. pub fn aya::programs::sk_lookup::SkLookupLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5683. impl<T> core::any::Any for aya::programs::sk_lookup::SkLookupLinkId where T: 'static + ?core::marker::Sized
  5684. pub fn aya::programs::sk_lookup::SkLookupLinkId::type_id(&self) -> core::any::TypeId
  5685. impl<T> core::borrow::Borrow<T> for aya::programs::sk_lookup::SkLookupLinkId where T: ?core::marker::Sized
  5686. pub fn aya::programs::sk_lookup::SkLookupLinkId::borrow(&self) -> &T
  5687. impl<T> core::borrow::BorrowMut<T> for aya::programs::sk_lookup::SkLookupLinkId where T: ?core::marker::Sized
  5688. pub fn aya::programs::sk_lookup::SkLookupLinkId::borrow_mut(&mut self) -> &mut T
  5689. impl<T> core::convert::From<T> for aya::programs::sk_lookup::SkLookupLinkId
  5690. pub fn aya::programs::sk_lookup::SkLookupLinkId::from(t: T) -> T
  5691. pub mod aya::programs::sk_msg
  5692. pub struct aya::programs::sk_msg::SkMsg
  5693. impl aya::programs::sk_msg::SkMsg
  5694. pub const aya::programs::sk_msg::SkMsg::PROGRAM_TYPE: aya::programs::ProgramType
  5695. pub fn aya::programs::sk_msg::SkMsg::attach(&mut self, map: &aya::maps::sock::SockMapFd) -> core::result::Result<aya::programs::sk_msg::SkMsgLinkId, aya::programs::ProgramError>
  5696. pub fn aya::programs::sk_msg::SkMsg::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  5697. impl aya::programs::sk_msg::SkMsg
  5698. pub fn aya::programs::sk_msg::SkMsg::detach(&mut self, link_id: aya::programs::sk_msg::SkMsgLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  5699. pub fn aya::programs::sk_msg::SkMsg::take_link(&mut self, link_id: aya::programs::sk_msg::SkMsgLinkId) -> core::result::Result<aya::programs::sk_msg::SkMsgLink, aya::programs::ProgramError>
  5700. impl aya::programs::sk_msg::SkMsg
  5701. pub fn aya::programs::sk_msg::SkMsg::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  5702. impl aya::programs::sk_msg::SkMsg
  5703. pub fn aya::programs::sk_msg::SkMsg::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  5704. impl aya::programs::sk_msg::SkMsg
  5705. pub fn aya::programs::sk_msg::SkMsg::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  5706. impl aya::programs::sk_msg::SkMsg
  5707. pub fn aya::programs::sk_msg::SkMsg::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  5708. impl aya::programs::sk_msg::SkMsg
  5709. pub fn aya::programs::sk_msg::SkMsg::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  5710. pub fn aya::programs::sk_msg::SkMsg::unpin(self) -> core::result::Result<(), std::io::error::Error>
  5711. impl aya::programs::sk_msg::SkMsg
  5712. pub fn aya::programs::sk_msg::SkMsg::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  5713. impl core::fmt::Debug for aya::programs::sk_msg::SkMsg
  5714. pub fn aya::programs::sk_msg::SkMsg::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5715. impl core::ops::drop::Drop for aya::programs::sk_msg::SkMsg
  5716. pub fn aya::programs::sk_msg::SkMsg::drop(&mut self)
  5717. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::sk_msg::SkMsg
  5718. pub type &'a aya::programs::sk_msg::SkMsg::Error = aya::programs::ProgramError
  5719. pub fn &'a aya::programs::sk_msg::SkMsg::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::sk_msg::SkMsg, aya::programs::ProgramError>
  5720. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::sk_msg::SkMsg
  5721. pub type &'a mut aya::programs::sk_msg::SkMsg::Error = aya::programs::ProgramError
  5722. pub fn &'a mut aya::programs::sk_msg::SkMsg::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::sk_msg::SkMsg, aya::programs::ProgramError>
  5723. impl core::marker::Freeze for aya::programs::sk_msg::SkMsg
  5724. impl core::marker::Send for aya::programs::sk_msg::SkMsg
  5725. impl core::marker::Sync for aya::programs::sk_msg::SkMsg
  5726. impl core::marker::Unpin for aya::programs::sk_msg::SkMsg
  5727. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sk_msg::SkMsg
  5728. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sk_msg::SkMsg
  5729. impl<T, U> core::convert::Into<U> for aya::programs::sk_msg::SkMsg where U: core::convert::From<T>
  5730. pub fn aya::programs::sk_msg::SkMsg::into(self) -> U
  5731. impl<T, U> core::convert::TryFrom<U> for aya::programs::sk_msg::SkMsg where U: core::convert::Into<T>
  5732. pub type aya::programs::sk_msg::SkMsg::Error = core::convert::Infallible
  5733. pub fn aya::programs::sk_msg::SkMsg::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5734. impl<T, U> core::convert::TryInto<U> for aya::programs::sk_msg::SkMsg where U: core::convert::TryFrom<T>
  5735. pub type aya::programs::sk_msg::SkMsg::Error = <U as core::convert::TryFrom<T>>::Error
  5736. pub fn aya::programs::sk_msg::SkMsg::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5737. impl<T> core::any::Any for aya::programs::sk_msg::SkMsg where T: 'static + ?core::marker::Sized
  5738. pub fn aya::programs::sk_msg::SkMsg::type_id(&self) -> core::any::TypeId
  5739. impl<T> core::borrow::Borrow<T> for aya::programs::sk_msg::SkMsg where T: ?core::marker::Sized
  5740. pub fn aya::programs::sk_msg::SkMsg::borrow(&self) -> &T
  5741. impl<T> core::borrow::BorrowMut<T> for aya::programs::sk_msg::SkMsg where T: ?core::marker::Sized
  5742. pub fn aya::programs::sk_msg::SkMsg::borrow_mut(&mut self) -> &mut T
  5743. impl<T> core::convert::From<T> for aya::programs::sk_msg::SkMsg
  5744. pub fn aya::programs::sk_msg::SkMsg::from(t: T) -> T
  5745. pub struct aya::programs::sk_msg::SkMsgLink(_)
  5746. impl aya::programs::links::Link for aya::programs::sk_msg::SkMsgLink
  5747. pub type aya::programs::sk_msg::SkMsgLink::Id = aya::programs::sk_msg::SkMsgLinkId
  5748. pub fn aya::programs::sk_msg::SkMsgLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  5749. pub fn aya::programs::sk_msg::SkMsgLink::id(&self) -> Self::Id
  5750. impl core::cmp::Eq for aya::programs::sk_msg::SkMsgLink
  5751. impl core::cmp::PartialEq for aya::programs::sk_msg::SkMsgLink
  5752. pub fn aya::programs::sk_msg::SkMsgLink::eq(&self, other: &Self) -> bool
  5753. impl core::convert::From<aya::programs::links::ProgAttachLink> for aya::programs::sk_msg::SkMsgLink
  5754. pub fn aya::programs::sk_msg::SkMsgLink::from(b: aya::programs::links::ProgAttachLink) -> aya::programs::sk_msg::SkMsgLink
  5755. impl core::convert::From<aya::programs::sk_msg::SkMsgLink> for aya::programs::links::ProgAttachLink
  5756. pub fn aya::programs::links::ProgAttachLink::from(w: aya::programs::sk_msg::SkMsgLink) -> aya::programs::links::ProgAttachLink
  5757. impl core::fmt::Debug for aya::programs::sk_msg::SkMsgLink
  5758. pub fn aya::programs::sk_msg::SkMsgLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5759. impl core::hash::Hash for aya::programs::sk_msg::SkMsgLink
  5760. pub fn aya::programs::sk_msg::SkMsgLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  5761. impl core::ops::drop::Drop for aya::programs::sk_msg::SkMsgLink
  5762. pub fn aya::programs::sk_msg::SkMsgLink::drop(&mut self)
  5763. impl equivalent::Equivalent<aya::programs::sk_msg::SkMsgLink> for aya::programs::sk_msg::SkMsgLinkId
  5764. pub fn aya::programs::sk_msg::SkMsgLinkId::equivalent(&self, key: &aya::programs::sk_msg::SkMsgLink) -> bool
  5765. impl core::marker::Freeze for aya::programs::sk_msg::SkMsgLink
  5766. impl core::marker::Send for aya::programs::sk_msg::SkMsgLink
  5767. impl core::marker::Sync for aya::programs::sk_msg::SkMsgLink
  5768. impl core::marker::Unpin for aya::programs::sk_msg::SkMsgLink
  5769. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sk_msg::SkMsgLink
  5770. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sk_msg::SkMsgLink
  5771. impl<Q, K> equivalent::Equivalent<K> for aya::programs::sk_msg::SkMsgLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  5772. pub fn aya::programs::sk_msg::SkMsgLink::equivalent(&self, key: &K) -> bool
  5773. impl<T, U> core::convert::Into<U> for aya::programs::sk_msg::SkMsgLink where U: core::convert::From<T>
  5774. pub fn aya::programs::sk_msg::SkMsgLink::into(self) -> U
  5775. impl<T, U> core::convert::TryFrom<U> for aya::programs::sk_msg::SkMsgLink where U: core::convert::Into<T>
  5776. pub type aya::programs::sk_msg::SkMsgLink::Error = core::convert::Infallible
  5777. pub fn aya::programs::sk_msg::SkMsgLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5778. impl<T, U> core::convert::TryInto<U> for aya::programs::sk_msg::SkMsgLink where U: core::convert::TryFrom<T>
  5779. pub type aya::programs::sk_msg::SkMsgLink::Error = <U as core::convert::TryFrom<T>>::Error
  5780. pub fn aya::programs::sk_msg::SkMsgLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5781. impl<T> core::any::Any for aya::programs::sk_msg::SkMsgLink where T: 'static + ?core::marker::Sized
  5782. pub fn aya::programs::sk_msg::SkMsgLink::type_id(&self) -> core::any::TypeId
  5783. impl<T> core::borrow::Borrow<T> for aya::programs::sk_msg::SkMsgLink where T: ?core::marker::Sized
  5784. pub fn aya::programs::sk_msg::SkMsgLink::borrow(&self) -> &T
  5785. impl<T> core::borrow::BorrowMut<T> for aya::programs::sk_msg::SkMsgLink where T: ?core::marker::Sized
  5786. pub fn aya::programs::sk_msg::SkMsgLink::borrow_mut(&mut self) -> &mut T
  5787. impl<T> core::convert::From<T> for aya::programs::sk_msg::SkMsgLink
  5788. pub fn aya::programs::sk_msg::SkMsgLink::from(t: T) -> T
  5789. pub struct aya::programs::sk_msg::SkMsgLinkId(_)
  5790. impl core::cmp::Eq for aya::programs::sk_msg::SkMsgLinkId
  5791. impl core::cmp::PartialEq for aya::programs::sk_msg::SkMsgLinkId
  5792. pub fn aya::programs::sk_msg::SkMsgLinkId::eq(&self, other: &aya::programs::sk_msg::SkMsgLinkId) -> bool
  5793. impl core::fmt::Debug for aya::programs::sk_msg::SkMsgLinkId
  5794. pub fn aya::programs::sk_msg::SkMsgLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5795. impl core::hash::Hash for aya::programs::sk_msg::SkMsgLinkId
  5796. pub fn aya::programs::sk_msg::SkMsgLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  5797. impl core::marker::StructuralPartialEq for aya::programs::sk_msg::SkMsgLinkId
  5798. impl equivalent::Equivalent<aya::programs::sk_msg::SkMsgLink> for aya::programs::sk_msg::SkMsgLinkId
  5799. pub fn aya::programs::sk_msg::SkMsgLinkId::equivalent(&self, key: &aya::programs::sk_msg::SkMsgLink) -> bool
  5800. impl core::marker::Freeze for aya::programs::sk_msg::SkMsgLinkId
  5801. impl core::marker::Send for aya::programs::sk_msg::SkMsgLinkId
  5802. impl core::marker::Sync for aya::programs::sk_msg::SkMsgLinkId
  5803. impl core::marker::Unpin for aya::programs::sk_msg::SkMsgLinkId
  5804. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sk_msg::SkMsgLinkId
  5805. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sk_msg::SkMsgLinkId
  5806. impl<Q, K> equivalent::Equivalent<K> for aya::programs::sk_msg::SkMsgLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  5807. pub fn aya::programs::sk_msg::SkMsgLinkId::equivalent(&self, key: &K) -> bool
  5808. impl<T, U> core::convert::Into<U> for aya::programs::sk_msg::SkMsgLinkId where U: core::convert::From<T>
  5809. pub fn aya::programs::sk_msg::SkMsgLinkId::into(self) -> U
  5810. impl<T, U> core::convert::TryFrom<U> for aya::programs::sk_msg::SkMsgLinkId where U: core::convert::Into<T>
  5811. pub type aya::programs::sk_msg::SkMsgLinkId::Error = core::convert::Infallible
  5812. pub fn aya::programs::sk_msg::SkMsgLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5813. impl<T, U> core::convert::TryInto<U> for aya::programs::sk_msg::SkMsgLinkId where U: core::convert::TryFrom<T>
  5814. pub type aya::programs::sk_msg::SkMsgLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  5815. pub fn aya::programs::sk_msg::SkMsgLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5816. impl<T> core::any::Any for aya::programs::sk_msg::SkMsgLinkId where T: 'static + ?core::marker::Sized
  5817. pub fn aya::programs::sk_msg::SkMsgLinkId::type_id(&self) -> core::any::TypeId
  5818. impl<T> core::borrow::Borrow<T> for aya::programs::sk_msg::SkMsgLinkId where T: ?core::marker::Sized
  5819. pub fn aya::programs::sk_msg::SkMsgLinkId::borrow(&self) -> &T
  5820. impl<T> core::borrow::BorrowMut<T> for aya::programs::sk_msg::SkMsgLinkId where T: ?core::marker::Sized
  5821. pub fn aya::programs::sk_msg::SkMsgLinkId::borrow_mut(&mut self) -> &mut T
  5822. impl<T> core::convert::From<T> for aya::programs::sk_msg::SkMsgLinkId
  5823. pub fn aya::programs::sk_msg::SkMsgLinkId::from(t: T) -> T
  5824. pub mod aya::programs::sk_skb
  5825. pub enum aya::programs::sk_skb::SkSkbKind
  5826. pub aya::programs::sk_skb::SkSkbKind::StreamParser
  5827. pub aya::programs::sk_skb::SkSkbKind::StreamVerdict
  5828. impl core::clone::Clone for aya::programs::sk_skb::SkSkbKind
  5829. pub fn aya::programs::sk_skb::SkSkbKind::clone(&self) -> aya::programs::sk_skb::SkSkbKind
  5830. impl core::fmt::Debug for aya::programs::sk_skb::SkSkbKind
  5831. pub fn aya::programs::sk_skb::SkSkbKind::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5832. impl core::marker::Copy for aya::programs::sk_skb::SkSkbKind
  5833. impl core::marker::Freeze for aya::programs::sk_skb::SkSkbKind
  5834. impl core::marker::Send for aya::programs::sk_skb::SkSkbKind
  5835. impl core::marker::Sync for aya::programs::sk_skb::SkSkbKind
  5836. impl core::marker::Unpin for aya::programs::sk_skb::SkSkbKind
  5837. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sk_skb::SkSkbKind
  5838. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sk_skb::SkSkbKind
  5839. impl<T, U> core::convert::Into<U> for aya::programs::sk_skb::SkSkbKind where U: core::convert::From<T>
  5840. pub fn aya::programs::sk_skb::SkSkbKind::into(self) -> U
  5841. impl<T, U> core::convert::TryFrom<U> for aya::programs::sk_skb::SkSkbKind where U: core::convert::Into<T>
  5842. pub type aya::programs::sk_skb::SkSkbKind::Error = core::convert::Infallible
  5843. pub fn aya::programs::sk_skb::SkSkbKind::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5844. impl<T, U> core::convert::TryInto<U> for aya::programs::sk_skb::SkSkbKind where U: core::convert::TryFrom<T>
  5845. pub type aya::programs::sk_skb::SkSkbKind::Error = <U as core::convert::TryFrom<T>>::Error
  5846. pub fn aya::programs::sk_skb::SkSkbKind::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5847. impl<T> alloc::borrow::ToOwned for aya::programs::sk_skb::SkSkbKind where T: core::clone::Clone
  5848. pub type aya::programs::sk_skb::SkSkbKind::Owned = T
  5849. pub fn aya::programs::sk_skb::SkSkbKind::clone_into(&self, target: &mut T)
  5850. pub fn aya::programs::sk_skb::SkSkbKind::to_owned(&self) -> T
  5851. impl<T> core::any::Any for aya::programs::sk_skb::SkSkbKind where T: 'static + ?core::marker::Sized
  5852. pub fn aya::programs::sk_skb::SkSkbKind::type_id(&self) -> core::any::TypeId
  5853. impl<T> core::borrow::Borrow<T> for aya::programs::sk_skb::SkSkbKind where T: ?core::marker::Sized
  5854. pub fn aya::programs::sk_skb::SkSkbKind::borrow(&self) -> &T
  5855. impl<T> core::borrow::BorrowMut<T> for aya::programs::sk_skb::SkSkbKind where T: ?core::marker::Sized
  5856. pub fn aya::programs::sk_skb::SkSkbKind::borrow_mut(&mut self) -> &mut T
  5857. impl<T> core::clone::CloneToUninit for aya::programs::sk_skb::SkSkbKind where T: core::clone::Clone
  5858. pub unsafe fn aya::programs::sk_skb::SkSkbKind::clone_to_uninit(&self, dest: *mut u8)
  5859. impl<T> core::convert::From<T> for aya::programs::sk_skb::SkSkbKind
  5860. pub fn aya::programs::sk_skb::SkSkbKind::from(t: T) -> T
  5861. pub struct aya::programs::sk_skb::SkSkb
  5862. impl aya::programs::sk_skb::SkSkb
  5863. pub const aya::programs::sk_skb::SkSkb::PROGRAM_TYPE: aya::programs::ProgramType
  5864. pub fn aya::programs::sk_skb::SkSkb::attach(&mut self, map: &aya::maps::sock::SockMapFd) -> core::result::Result<aya::programs::sk_skb::SkSkbLinkId, aya::programs::ProgramError>
  5865. pub fn aya::programs::sk_skb::SkSkb::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, kind: aya::programs::sk_skb::SkSkbKind) -> core::result::Result<Self, aya::programs::ProgramError>
  5866. pub fn aya::programs::sk_skb::SkSkb::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  5867. impl aya::programs::sk_skb::SkSkb
  5868. pub fn aya::programs::sk_skb::SkSkb::detach(&mut self, link_id: aya::programs::sk_skb::SkSkbLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  5869. pub fn aya::programs::sk_skb::SkSkb::take_link(&mut self, link_id: aya::programs::sk_skb::SkSkbLinkId) -> core::result::Result<aya::programs::sk_skb::SkSkbLink, aya::programs::ProgramError>
  5870. impl aya::programs::sk_skb::SkSkb
  5871. pub fn aya::programs::sk_skb::SkSkb::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  5872. impl aya::programs::sk_skb::SkSkb
  5873. pub fn aya::programs::sk_skb::SkSkb::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>, kind: aya::programs::sk_skb::SkSkbKind) -> core::result::Result<Self, aya::programs::ProgramError>
  5874. impl aya::programs::sk_skb::SkSkb
  5875. pub fn aya::programs::sk_skb::SkSkb::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  5876. impl aya::programs::sk_skb::SkSkb
  5877. pub fn aya::programs::sk_skb::SkSkb::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  5878. pub fn aya::programs::sk_skb::SkSkb::unpin(self) -> core::result::Result<(), std::io::error::Error>
  5879. impl aya::programs::sk_skb::SkSkb
  5880. pub fn aya::programs::sk_skb::SkSkb::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  5881. impl core::fmt::Debug for aya::programs::sk_skb::SkSkb
  5882. pub fn aya::programs::sk_skb::SkSkb::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5883. impl core::ops::drop::Drop for aya::programs::sk_skb::SkSkb
  5884. pub fn aya::programs::sk_skb::SkSkb::drop(&mut self)
  5885. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::sk_skb::SkSkb
  5886. pub type &'a aya::programs::sk_skb::SkSkb::Error = aya::programs::ProgramError
  5887. pub fn &'a aya::programs::sk_skb::SkSkb::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::sk_skb::SkSkb, aya::programs::ProgramError>
  5888. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::sk_skb::SkSkb
  5889. pub type &'a mut aya::programs::sk_skb::SkSkb::Error = aya::programs::ProgramError
  5890. pub fn &'a mut aya::programs::sk_skb::SkSkb::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::sk_skb::SkSkb, aya::programs::ProgramError>
  5891. impl core::marker::Freeze for aya::programs::sk_skb::SkSkb
  5892. impl core::marker::Send for aya::programs::sk_skb::SkSkb
  5893. impl core::marker::Sync for aya::programs::sk_skb::SkSkb
  5894. impl core::marker::Unpin for aya::programs::sk_skb::SkSkb
  5895. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sk_skb::SkSkb
  5896. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sk_skb::SkSkb
  5897. impl<T, U> core::convert::Into<U> for aya::programs::sk_skb::SkSkb where U: core::convert::From<T>
  5898. pub fn aya::programs::sk_skb::SkSkb::into(self) -> U
  5899. impl<T, U> core::convert::TryFrom<U> for aya::programs::sk_skb::SkSkb where U: core::convert::Into<T>
  5900. pub type aya::programs::sk_skb::SkSkb::Error = core::convert::Infallible
  5901. pub fn aya::programs::sk_skb::SkSkb::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5902. impl<T, U> core::convert::TryInto<U> for aya::programs::sk_skb::SkSkb where U: core::convert::TryFrom<T>
  5903. pub type aya::programs::sk_skb::SkSkb::Error = <U as core::convert::TryFrom<T>>::Error
  5904. pub fn aya::programs::sk_skb::SkSkb::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5905. impl<T> core::any::Any for aya::programs::sk_skb::SkSkb where T: 'static + ?core::marker::Sized
  5906. pub fn aya::programs::sk_skb::SkSkb::type_id(&self) -> core::any::TypeId
  5907. impl<T> core::borrow::Borrow<T> for aya::programs::sk_skb::SkSkb where T: ?core::marker::Sized
  5908. pub fn aya::programs::sk_skb::SkSkb::borrow(&self) -> &T
  5909. impl<T> core::borrow::BorrowMut<T> for aya::programs::sk_skb::SkSkb where T: ?core::marker::Sized
  5910. pub fn aya::programs::sk_skb::SkSkb::borrow_mut(&mut self) -> &mut T
  5911. impl<T> core::convert::From<T> for aya::programs::sk_skb::SkSkb
  5912. pub fn aya::programs::sk_skb::SkSkb::from(t: T) -> T
  5913. pub struct aya::programs::sk_skb::SkSkbLink(_)
  5914. impl aya::programs::links::Link for aya::programs::sk_skb::SkSkbLink
  5915. pub type aya::programs::sk_skb::SkSkbLink::Id = aya::programs::sk_skb::SkSkbLinkId
  5916. pub fn aya::programs::sk_skb::SkSkbLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  5917. pub fn aya::programs::sk_skb::SkSkbLink::id(&self) -> Self::Id
  5918. impl core::cmp::Eq for aya::programs::sk_skb::SkSkbLink
  5919. impl core::cmp::PartialEq for aya::programs::sk_skb::SkSkbLink
  5920. pub fn aya::programs::sk_skb::SkSkbLink::eq(&self, other: &Self) -> bool
  5921. impl core::convert::From<aya::programs::links::ProgAttachLink> for aya::programs::sk_skb::SkSkbLink
  5922. pub fn aya::programs::sk_skb::SkSkbLink::from(b: aya::programs::links::ProgAttachLink) -> aya::programs::sk_skb::SkSkbLink
  5923. impl core::convert::From<aya::programs::sk_skb::SkSkbLink> for aya::programs::links::ProgAttachLink
  5924. pub fn aya::programs::links::ProgAttachLink::from(w: aya::programs::sk_skb::SkSkbLink) -> aya::programs::links::ProgAttachLink
  5925. impl core::fmt::Debug for aya::programs::sk_skb::SkSkbLink
  5926. pub fn aya::programs::sk_skb::SkSkbLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5927. impl core::hash::Hash for aya::programs::sk_skb::SkSkbLink
  5928. pub fn aya::programs::sk_skb::SkSkbLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  5929. impl core::ops::drop::Drop for aya::programs::sk_skb::SkSkbLink
  5930. pub fn aya::programs::sk_skb::SkSkbLink::drop(&mut self)
  5931. impl equivalent::Equivalent<aya::programs::sk_skb::SkSkbLink> for aya::programs::sk_skb::SkSkbLinkId
  5932. pub fn aya::programs::sk_skb::SkSkbLinkId::equivalent(&self, key: &aya::programs::sk_skb::SkSkbLink) -> bool
  5933. impl core::marker::Freeze for aya::programs::sk_skb::SkSkbLink
  5934. impl core::marker::Send for aya::programs::sk_skb::SkSkbLink
  5935. impl core::marker::Sync for aya::programs::sk_skb::SkSkbLink
  5936. impl core::marker::Unpin for aya::programs::sk_skb::SkSkbLink
  5937. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sk_skb::SkSkbLink
  5938. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sk_skb::SkSkbLink
  5939. impl<Q, K> equivalent::Equivalent<K> for aya::programs::sk_skb::SkSkbLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  5940. pub fn aya::programs::sk_skb::SkSkbLink::equivalent(&self, key: &K) -> bool
  5941. impl<T, U> core::convert::Into<U> for aya::programs::sk_skb::SkSkbLink where U: core::convert::From<T>
  5942. pub fn aya::programs::sk_skb::SkSkbLink::into(self) -> U
  5943. impl<T, U> core::convert::TryFrom<U> for aya::programs::sk_skb::SkSkbLink where U: core::convert::Into<T>
  5944. pub type aya::programs::sk_skb::SkSkbLink::Error = core::convert::Infallible
  5945. pub fn aya::programs::sk_skb::SkSkbLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5946. impl<T, U> core::convert::TryInto<U> for aya::programs::sk_skb::SkSkbLink where U: core::convert::TryFrom<T>
  5947. pub type aya::programs::sk_skb::SkSkbLink::Error = <U as core::convert::TryFrom<T>>::Error
  5948. pub fn aya::programs::sk_skb::SkSkbLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5949. impl<T> core::any::Any for aya::programs::sk_skb::SkSkbLink where T: 'static + ?core::marker::Sized
  5950. pub fn aya::programs::sk_skb::SkSkbLink::type_id(&self) -> core::any::TypeId
  5951. impl<T> core::borrow::Borrow<T> for aya::programs::sk_skb::SkSkbLink where T: ?core::marker::Sized
  5952. pub fn aya::programs::sk_skb::SkSkbLink::borrow(&self) -> &T
  5953. impl<T> core::borrow::BorrowMut<T> for aya::programs::sk_skb::SkSkbLink where T: ?core::marker::Sized
  5954. pub fn aya::programs::sk_skb::SkSkbLink::borrow_mut(&mut self) -> &mut T
  5955. impl<T> core::convert::From<T> for aya::programs::sk_skb::SkSkbLink
  5956. pub fn aya::programs::sk_skb::SkSkbLink::from(t: T) -> T
  5957. pub struct aya::programs::sk_skb::SkSkbLinkId(_)
  5958. impl core::cmp::Eq for aya::programs::sk_skb::SkSkbLinkId
  5959. impl core::cmp::PartialEq for aya::programs::sk_skb::SkSkbLinkId
  5960. pub fn aya::programs::sk_skb::SkSkbLinkId::eq(&self, other: &aya::programs::sk_skb::SkSkbLinkId) -> bool
  5961. impl core::fmt::Debug for aya::programs::sk_skb::SkSkbLinkId
  5962. pub fn aya::programs::sk_skb::SkSkbLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5963. impl core::hash::Hash for aya::programs::sk_skb::SkSkbLinkId
  5964. pub fn aya::programs::sk_skb::SkSkbLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  5965. impl core::marker::StructuralPartialEq for aya::programs::sk_skb::SkSkbLinkId
  5966. impl equivalent::Equivalent<aya::programs::sk_skb::SkSkbLink> for aya::programs::sk_skb::SkSkbLinkId
  5967. pub fn aya::programs::sk_skb::SkSkbLinkId::equivalent(&self, key: &aya::programs::sk_skb::SkSkbLink) -> bool
  5968. impl core::marker::Freeze for aya::programs::sk_skb::SkSkbLinkId
  5969. impl core::marker::Send for aya::programs::sk_skb::SkSkbLinkId
  5970. impl core::marker::Sync for aya::programs::sk_skb::SkSkbLinkId
  5971. impl core::marker::Unpin for aya::programs::sk_skb::SkSkbLinkId
  5972. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sk_skb::SkSkbLinkId
  5973. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sk_skb::SkSkbLinkId
  5974. impl<Q, K> equivalent::Equivalent<K> for aya::programs::sk_skb::SkSkbLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  5975. pub fn aya::programs::sk_skb::SkSkbLinkId::equivalent(&self, key: &K) -> bool
  5976. impl<T, U> core::convert::Into<U> for aya::programs::sk_skb::SkSkbLinkId where U: core::convert::From<T>
  5977. pub fn aya::programs::sk_skb::SkSkbLinkId::into(self) -> U
  5978. impl<T, U> core::convert::TryFrom<U> for aya::programs::sk_skb::SkSkbLinkId where U: core::convert::Into<T>
  5979. pub type aya::programs::sk_skb::SkSkbLinkId::Error = core::convert::Infallible
  5980. pub fn aya::programs::sk_skb::SkSkbLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5981. impl<T, U> core::convert::TryInto<U> for aya::programs::sk_skb::SkSkbLinkId where U: core::convert::TryFrom<T>
  5982. pub type aya::programs::sk_skb::SkSkbLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  5983. pub fn aya::programs::sk_skb::SkSkbLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5984. impl<T> core::any::Any for aya::programs::sk_skb::SkSkbLinkId where T: 'static + ?core::marker::Sized
  5985. pub fn aya::programs::sk_skb::SkSkbLinkId::type_id(&self) -> core::any::TypeId
  5986. impl<T> core::borrow::Borrow<T> for aya::programs::sk_skb::SkSkbLinkId where T: ?core::marker::Sized
  5987. pub fn aya::programs::sk_skb::SkSkbLinkId::borrow(&self) -> &T
  5988. impl<T> core::borrow::BorrowMut<T> for aya::programs::sk_skb::SkSkbLinkId where T: ?core::marker::Sized
  5989. pub fn aya::programs::sk_skb::SkSkbLinkId::borrow_mut(&mut self) -> &mut T
  5990. impl<T> core::convert::From<T> for aya::programs::sk_skb::SkSkbLinkId
  5991. pub fn aya::programs::sk_skb::SkSkbLinkId::from(t: T) -> T
  5992. pub mod aya::programs::sock_ops
  5993. pub struct aya::programs::sock_ops::SockOps
  5994. impl aya::programs::sock_ops::SockOps
  5995. pub const aya::programs::sock_ops::SockOps::PROGRAM_TYPE: aya::programs::ProgramType
  5996. pub fn aya::programs::sock_ops::SockOps::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T, mode: aya::programs::links::CgroupAttachMode) -> core::result::Result<aya::programs::sock_ops::SockOpsLinkId, aya::programs::ProgramError>
  5997. pub fn aya::programs::sock_ops::SockOps::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  5998. impl aya::programs::sock_ops::SockOps
  5999. pub fn aya::programs::sock_ops::SockOps::detach(&mut self, link_id: aya::programs::sock_ops::SockOpsLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  6000. pub fn aya::programs::sock_ops::SockOps::take_link(&mut self, link_id: aya::programs::sock_ops::SockOpsLinkId) -> core::result::Result<aya::programs::sock_ops::SockOpsLink, aya::programs::ProgramError>
  6001. impl aya::programs::sock_ops::SockOps
  6002. pub fn aya::programs::sock_ops::SockOps::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  6003. impl aya::programs::sock_ops::SockOps
  6004. pub fn aya::programs::sock_ops::SockOps::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  6005. impl aya::programs::sock_ops::SockOps
  6006. pub fn aya::programs::sock_ops::SockOps::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  6007. impl aya::programs::sock_ops::SockOps
  6008. pub fn aya::programs::sock_ops::SockOps::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  6009. impl aya::programs::sock_ops::SockOps
  6010. pub fn aya::programs::sock_ops::SockOps::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  6011. pub fn aya::programs::sock_ops::SockOps::unpin(self) -> core::result::Result<(), std::io::error::Error>
  6012. impl aya::programs::sock_ops::SockOps
  6013. pub fn aya::programs::sock_ops::SockOps::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6014. impl core::fmt::Debug for aya::programs::sock_ops::SockOps
  6015. pub fn aya::programs::sock_ops::SockOps::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6016. impl core::ops::drop::Drop for aya::programs::sock_ops::SockOps
  6017. pub fn aya::programs::sock_ops::SockOps::drop(&mut self)
  6018. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::sock_ops::SockOps
  6019. pub type &'a aya::programs::sock_ops::SockOps::Error = aya::programs::ProgramError
  6020. pub fn &'a aya::programs::sock_ops::SockOps::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::sock_ops::SockOps, aya::programs::ProgramError>
  6021. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::sock_ops::SockOps
  6022. pub type &'a mut aya::programs::sock_ops::SockOps::Error = aya::programs::ProgramError
  6023. pub fn &'a mut aya::programs::sock_ops::SockOps::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::sock_ops::SockOps, aya::programs::ProgramError>
  6024. impl core::marker::Freeze for aya::programs::sock_ops::SockOps
  6025. impl core::marker::Send for aya::programs::sock_ops::SockOps
  6026. impl core::marker::Sync for aya::programs::sock_ops::SockOps
  6027. impl core::marker::Unpin for aya::programs::sock_ops::SockOps
  6028. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sock_ops::SockOps
  6029. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sock_ops::SockOps
  6030. impl<T, U> core::convert::Into<U> for aya::programs::sock_ops::SockOps where U: core::convert::From<T>
  6031. pub fn aya::programs::sock_ops::SockOps::into(self) -> U
  6032. impl<T, U> core::convert::TryFrom<U> for aya::programs::sock_ops::SockOps where U: core::convert::Into<T>
  6033. pub type aya::programs::sock_ops::SockOps::Error = core::convert::Infallible
  6034. pub fn aya::programs::sock_ops::SockOps::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6035. impl<T, U> core::convert::TryInto<U> for aya::programs::sock_ops::SockOps where U: core::convert::TryFrom<T>
  6036. pub type aya::programs::sock_ops::SockOps::Error = <U as core::convert::TryFrom<T>>::Error
  6037. pub fn aya::programs::sock_ops::SockOps::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6038. impl<T> core::any::Any for aya::programs::sock_ops::SockOps where T: 'static + ?core::marker::Sized
  6039. pub fn aya::programs::sock_ops::SockOps::type_id(&self) -> core::any::TypeId
  6040. impl<T> core::borrow::Borrow<T> for aya::programs::sock_ops::SockOps where T: ?core::marker::Sized
  6041. pub fn aya::programs::sock_ops::SockOps::borrow(&self) -> &T
  6042. impl<T> core::borrow::BorrowMut<T> for aya::programs::sock_ops::SockOps where T: ?core::marker::Sized
  6043. pub fn aya::programs::sock_ops::SockOps::borrow_mut(&mut self) -> &mut T
  6044. impl<T> core::convert::From<T> for aya::programs::sock_ops::SockOps
  6045. pub fn aya::programs::sock_ops::SockOps::from(t: T) -> T
  6046. pub struct aya::programs::sock_ops::SockOpsLink(_)
  6047. impl aya::programs::links::Link for aya::programs::sock_ops::SockOpsLink
  6048. pub type aya::programs::sock_ops::SockOpsLink::Id = aya::programs::sock_ops::SockOpsLinkId
  6049. pub fn aya::programs::sock_ops::SockOpsLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  6050. pub fn aya::programs::sock_ops::SockOpsLink::id(&self) -> Self::Id
  6051. impl core::cmp::Eq for aya::programs::sock_ops::SockOpsLink
  6052. impl core::cmp::PartialEq for aya::programs::sock_ops::SockOpsLink
  6053. pub fn aya::programs::sock_ops::SockOpsLink::eq(&self, other: &Self) -> bool
  6054. impl core::convert::TryFrom<aya::programs::sock_ops::SockOpsLink> for aya::programs::links::FdLink
  6055. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  6056. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::sock_ops::SockOpsLink) -> core::result::Result<Self, Self::Error>
  6057. impl core::fmt::Debug for aya::programs::sock_ops::SockOpsLink
  6058. pub fn aya::programs::sock_ops::SockOpsLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6059. impl core::hash::Hash for aya::programs::sock_ops::SockOpsLink
  6060. pub fn aya::programs::sock_ops::SockOpsLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  6061. impl core::ops::drop::Drop for aya::programs::sock_ops::SockOpsLink
  6062. pub fn aya::programs::sock_ops::SockOpsLink::drop(&mut self)
  6063. impl equivalent::Equivalent<aya::programs::sock_ops::SockOpsLink> for aya::programs::sock_ops::SockOpsLinkId
  6064. pub fn aya::programs::sock_ops::SockOpsLinkId::equivalent(&self, key: &aya::programs::sock_ops::SockOpsLink) -> bool
  6065. impl core::marker::Freeze for aya::programs::sock_ops::SockOpsLink
  6066. impl core::marker::Send for aya::programs::sock_ops::SockOpsLink
  6067. impl core::marker::Sync for aya::programs::sock_ops::SockOpsLink
  6068. impl core::marker::Unpin for aya::programs::sock_ops::SockOpsLink
  6069. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sock_ops::SockOpsLink
  6070. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sock_ops::SockOpsLink
  6071. impl<Q, K> equivalent::Equivalent<K> for aya::programs::sock_ops::SockOpsLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  6072. pub fn aya::programs::sock_ops::SockOpsLink::equivalent(&self, key: &K) -> bool
  6073. impl<T, U> core::convert::Into<U> for aya::programs::sock_ops::SockOpsLink where U: core::convert::From<T>
  6074. pub fn aya::programs::sock_ops::SockOpsLink::into(self) -> U
  6075. impl<T, U> core::convert::TryFrom<U> for aya::programs::sock_ops::SockOpsLink where U: core::convert::Into<T>
  6076. pub type aya::programs::sock_ops::SockOpsLink::Error = core::convert::Infallible
  6077. pub fn aya::programs::sock_ops::SockOpsLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6078. impl<T, U> core::convert::TryInto<U> for aya::programs::sock_ops::SockOpsLink where U: core::convert::TryFrom<T>
  6079. pub type aya::programs::sock_ops::SockOpsLink::Error = <U as core::convert::TryFrom<T>>::Error
  6080. pub fn aya::programs::sock_ops::SockOpsLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6081. impl<T> core::any::Any for aya::programs::sock_ops::SockOpsLink where T: 'static + ?core::marker::Sized
  6082. pub fn aya::programs::sock_ops::SockOpsLink::type_id(&self) -> core::any::TypeId
  6083. impl<T> core::borrow::Borrow<T> for aya::programs::sock_ops::SockOpsLink where T: ?core::marker::Sized
  6084. pub fn aya::programs::sock_ops::SockOpsLink::borrow(&self) -> &T
  6085. impl<T> core::borrow::BorrowMut<T> for aya::programs::sock_ops::SockOpsLink where T: ?core::marker::Sized
  6086. pub fn aya::programs::sock_ops::SockOpsLink::borrow_mut(&mut self) -> &mut T
  6087. impl<T> core::convert::From<T> for aya::programs::sock_ops::SockOpsLink
  6088. pub fn aya::programs::sock_ops::SockOpsLink::from(t: T) -> T
  6089. pub struct aya::programs::sock_ops::SockOpsLinkId(_)
  6090. impl core::cmp::Eq for aya::programs::sock_ops::SockOpsLinkId
  6091. impl core::cmp::PartialEq for aya::programs::sock_ops::SockOpsLinkId
  6092. pub fn aya::programs::sock_ops::SockOpsLinkId::eq(&self, other: &aya::programs::sock_ops::SockOpsLinkId) -> bool
  6093. impl core::fmt::Debug for aya::programs::sock_ops::SockOpsLinkId
  6094. pub fn aya::programs::sock_ops::SockOpsLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6095. impl core::hash::Hash for aya::programs::sock_ops::SockOpsLinkId
  6096. pub fn aya::programs::sock_ops::SockOpsLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  6097. impl core::marker::StructuralPartialEq for aya::programs::sock_ops::SockOpsLinkId
  6098. impl equivalent::Equivalent<aya::programs::sock_ops::SockOpsLink> for aya::programs::sock_ops::SockOpsLinkId
  6099. pub fn aya::programs::sock_ops::SockOpsLinkId::equivalent(&self, key: &aya::programs::sock_ops::SockOpsLink) -> bool
  6100. impl core::marker::Freeze for aya::programs::sock_ops::SockOpsLinkId
  6101. impl core::marker::Send for aya::programs::sock_ops::SockOpsLinkId
  6102. impl core::marker::Sync for aya::programs::sock_ops::SockOpsLinkId
  6103. impl core::marker::Unpin for aya::programs::sock_ops::SockOpsLinkId
  6104. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sock_ops::SockOpsLinkId
  6105. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sock_ops::SockOpsLinkId
  6106. impl<Q, K> equivalent::Equivalent<K> for aya::programs::sock_ops::SockOpsLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  6107. pub fn aya::programs::sock_ops::SockOpsLinkId::equivalent(&self, key: &K) -> bool
  6108. impl<T, U> core::convert::Into<U> for aya::programs::sock_ops::SockOpsLinkId where U: core::convert::From<T>
  6109. pub fn aya::programs::sock_ops::SockOpsLinkId::into(self) -> U
  6110. impl<T, U> core::convert::TryFrom<U> for aya::programs::sock_ops::SockOpsLinkId where U: core::convert::Into<T>
  6111. pub type aya::programs::sock_ops::SockOpsLinkId::Error = core::convert::Infallible
  6112. pub fn aya::programs::sock_ops::SockOpsLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6113. impl<T, U> core::convert::TryInto<U> for aya::programs::sock_ops::SockOpsLinkId where U: core::convert::TryFrom<T>
  6114. pub type aya::programs::sock_ops::SockOpsLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  6115. pub fn aya::programs::sock_ops::SockOpsLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6116. impl<T> core::any::Any for aya::programs::sock_ops::SockOpsLinkId where T: 'static + ?core::marker::Sized
  6117. pub fn aya::programs::sock_ops::SockOpsLinkId::type_id(&self) -> core::any::TypeId
  6118. impl<T> core::borrow::Borrow<T> for aya::programs::sock_ops::SockOpsLinkId where T: ?core::marker::Sized
  6119. pub fn aya::programs::sock_ops::SockOpsLinkId::borrow(&self) -> &T
  6120. impl<T> core::borrow::BorrowMut<T> for aya::programs::sock_ops::SockOpsLinkId where T: ?core::marker::Sized
  6121. pub fn aya::programs::sock_ops::SockOpsLinkId::borrow_mut(&mut self) -> &mut T
  6122. impl<T> core::convert::From<T> for aya::programs::sock_ops::SockOpsLinkId
  6123. pub fn aya::programs::sock_ops::SockOpsLinkId::from(t: T) -> T
  6124. pub mod aya::programs::socket_filter
  6125. pub enum aya::programs::socket_filter::SocketFilterError
  6126. pub aya::programs::socket_filter::SocketFilterError::SoAttachEbpfError
  6127. pub aya::programs::socket_filter::SocketFilterError::SoAttachEbpfError::io_error: std::io::error::Error
  6128. impl core::convert::From<aya::programs::socket_filter::SocketFilterError> for aya::programs::ProgramError
  6129. pub fn aya::programs::ProgramError::from(source: aya::programs::socket_filter::SocketFilterError) -> Self
  6130. impl core::error::Error for aya::programs::socket_filter::SocketFilterError
  6131. pub fn aya::programs::socket_filter::SocketFilterError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  6132. impl core::fmt::Debug for aya::programs::socket_filter::SocketFilterError
  6133. pub fn aya::programs::socket_filter::SocketFilterError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6134. impl core::fmt::Display for aya::programs::socket_filter::SocketFilterError
  6135. pub fn aya::programs::socket_filter::SocketFilterError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6136. impl core::marker::Freeze for aya::programs::socket_filter::SocketFilterError
  6137. impl core::marker::Send for aya::programs::socket_filter::SocketFilterError
  6138. impl core::marker::Sync for aya::programs::socket_filter::SocketFilterError
  6139. impl core::marker::Unpin for aya::programs::socket_filter::SocketFilterError
  6140. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::socket_filter::SocketFilterError
  6141. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::socket_filter::SocketFilterError
  6142. impl<T, U> core::convert::Into<U> for aya::programs::socket_filter::SocketFilterError where U: core::convert::From<T>
  6143. pub fn aya::programs::socket_filter::SocketFilterError::into(self) -> U
  6144. impl<T, U> core::convert::TryFrom<U> for aya::programs::socket_filter::SocketFilterError where U: core::convert::Into<T>
  6145. pub type aya::programs::socket_filter::SocketFilterError::Error = core::convert::Infallible
  6146. pub fn aya::programs::socket_filter::SocketFilterError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6147. impl<T, U> core::convert::TryInto<U> for aya::programs::socket_filter::SocketFilterError where U: core::convert::TryFrom<T>
  6148. pub type aya::programs::socket_filter::SocketFilterError::Error = <U as core::convert::TryFrom<T>>::Error
  6149. pub fn aya::programs::socket_filter::SocketFilterError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6150. impl<T> alloc::string::ToString for aya::programs::socket_filter::SocketFilterError where T: core::fmt::Display + ?core::marker::Sized
  6151. pub fn aya::programs::socket_filter::SocketFilterError::to_string(&self) -> alloc::string::String
  6152. impl<T> core::any::Any for aya::programs::socket_filter::SocketFilterError where T: 'static + ?core::marker::Sized
  6153. pub fn aya::programs::socket_filter::SocketFilterError::type_id(&self) -> core::any::TypeId
  6154. impl<T> core::borrow::Borrow<T> for aya::programs::socket_filter::SocketFilterError where T: ?core::marker::Sized
  6155. pub fn aya::programs::socket_filter::SocketFilterError::borrow(&self) -> &T
  6156. impl<T> core::borrow::BorrowMut<T> for aya::programs::socket_filter::SocketFilterError where T: ?core::marker::Sized
  6157. pub fn aya::programs::socket_filter::SocketFilterError::borrow_mut(&mut self) -> &mut T
  6158. impl<T> core::convert::From<T> for aya::programs::socket_filter::SocketFilterError
  6159. pub fn aya::programs::socket_filter::SocketFilterError::from(t: T) -> T
  6160. pub struct aya::programs::socket_filter::SocketFilter
  6161. impl aya::programs::socket_filter::SocketFilter
  6162. pub const aya::programs::socket_filter::SocketFilter::PROGRAM_TYPE: aya::programs::ProgramType
  6163. pub fn aya::programs::socket_filter::SocketFilter::attach<T: std::os::fd::owned::AsFd>(&mut self, socket: T) -> core::result::Result<aya::programs::socket_filter::SocketFilterLinkId, aya::programs::ProgramError>
  6164. pub fn aya::programs::socket_filter::SocketFilter::detach(&mut self, link_id: aya::programs::socket_filter::SocketFilterLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  6165. pub fn aya::programs::socket_filter::SocketFilter::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6166. pub fn aya::programs::socket_filter::SocketFilter::take_link(&mut self, link_id: aya::programs::socket_filter::SocketFilterLinkId) -> core::result::Result<aya::programs::socket_filter::SocketFilterLink, aya::programs::ProgramError>
  6167. impl aya::programs::socket_filter::SocketFilter
  6168. pub fn aya::programs::socket_filter::SocketFilter::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  6169. impl aya::programs::socket_filter::SocketFilter
  6170. pub fn aya::programs::socket_filter::SocketFilter::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  6171. impl aya::programs::socket_filter::SocketFilter
  6172. pub fn aya::programs::socket_filter::SocketFilter::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  6173. impl aya::programs::socket_filter::SocketFilter
  6174. pub fn aya::programs::socket_filter::SocketFilter::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  6175. pub fn aya::programs::socket_filter::SocketFilter::unpin(self) -> core::result::Result<(), std::io::error::Error>
  6176. impl aya::programs::socket_filter::SocketFilter
  6177. pub fn aya::programs::socket_filter::SocketFilter::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6178. impl core::fmt::Debug for aya::programs::socket_filter::SocketFilter
  6179. pub fn aya::programs::socket_filter::SocketFilter::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6180. impl core::ops::drop::Drop for aya::programs::socket_filter::SocketFilter
  6181. pub fn aya::programs::socket_filter::SocketFilter::drop(&mut self)
  6182. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::socket_filter::SocketFilter
  6183. pub type &'a aya::programs::socket_filter::SocketFilter::Error = aya::programs::ProgramError
  6184. pub fn &'a aya::programs::socket_filter::SocketFilter::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::socket_filter::SocketFilter, aya::programs::ProgramError>
  6185. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::socket_filter::SocketFilter
  6186. pub type &'a mut aya::programs::socket_filter::SocketFilter::Error = aya::programs::ProgramError
  6187. pub fn &'a mut aya::programs::socket_filter::SocketFilter::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::socket_filter::SocketFilter, aya::programs::ProgramError>
  6188. impl core::marker::Freeze for aya::programs::socket_filter::SocketFilter
  6189. impl core::marker::Send for aya::programs::socket_filter::SocketFilter
  6190. impl core::marker::Sync for aya::programs::socket_filter::SocketFilter
  6191. impl core::marker::Unpin for aya::programs::socket_filter::SocketFilter
  6192. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::socket_filter::SocketFilter
  6193. impl core::panic::unwind_safe::UnwindSafe for aya::programs::socket_filter::SocketFilter
  6194. impl<T, U> core::convert::Into<U> for aya::programs::socket_filter::SocketFilter where U: core::convert::From<T>
  6195. pub fn aya::programs::socket_filter::SocketFilter::into(self) -> U
  6196. impl<T, U> core::convert::TryFrom<U> for aya::programs::socket_filter::SocketFilter where U: core::convert::Into<T>
  6197. pub type aya::programs::socket_filter::SocketFilter::Error = core::convert::Infallible
  6198. pub fn aya::programs::socket_filter::SocketFilter::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6199. impl<T, U> core::convert::TryInto<U> for aya::programs::socket_filter::SocketFilter where U: core::convert::TryFrom<T>
  6200. pub type aya::programs::socket_filter::SocketFilter::Error = <U as core::convert::TryFrom<T>>::Error
  6201. pub fn aya::programs::socket_filter::SocketFilter::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6202. impl<T> core::any::Any for aya::programs::socket_filter::SocketFilter where T: 'static + ?core::marker::Sized
  6203. pub fn aya::programs::socket_filter::SocketFilter::type_id(&self) -> core::any::TypeId
  6204. impl<T> core::borrow::Borrow<T> for aya::programs::socket_filter::SocketFilter where T: ?core::marker::Sized
  6205. pub fn aya::programs::socket_filter::SocketFilter::borrow(&self) -> &T
  6206. impl<T> core::borrow::BorrowMut<T> for aya::programs::socket_filter::SocketFilter where T: ?core::marker::Sized
  6207. pub fn aya::programs::socket_filter::SocketFilter::borrow_mut(&mut self) -> &mut T
  6208. impl<T> core::convert::From<T> for aya::programs::socket_filter::SocketFilter
  6209. pub fn aya::programs::socket_filter::SocketFilter::from(t: T) -> T
  6210. pub struct aya::programs::socket_filter::SocketFilterLink
  6211. impl aya::programs::links::Link for aya::programs::socket_filter::SocketFilterLink
  6212. pub type aya::programs::socket_filter::SocketFilterLink::Id = aya::programs::socket_filter::SocketFilterLinkId
  6213. pub fn aya::programs::socket_filter::SocketFilterLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  6214. pub fn aya::programs::socket_filter::SocketFilterLink::id(&self) -> Self::Id
  6215. impl core::cmp::Eq for aya::programs::socket_filter::SocketFilterLink
  6216. impl core::cmp::PartialEq for aya::programs::socket_filter::SocketFilterLink
  6217. pub fn aya::programs::socket_filter::SocketFilterLink::eq(&self, other: &Self) -> bool
  6218. impl core::fmt::Debug for aya::programs::socket_filter::SocketFilterLink
  6219. pub fn aya::programs::socket_filter::SocketFilterLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6220. impl core::hash::Hash for aya::programs::socket_filter::SocketFilterLink
  6221. pub fn aya::programs::socket_filter::SocketFilterLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  6222. impl equivalent::Equivalent<aya::programs::socket_filter::SocketFilterLink> for aya::programs::socket_filter::SocketFilterLinkId
  6223. pub fn aya::programs::socket_filter::SocketFilterLinkId::equivalent(&self, key: &aya::programs::socket_filter::SocketFilterLink) -> bool
  6224. impl core::marker::Freeze for aya::programs::socket_filter::SocketFilterLink
  6225. impl core::marker::Send for aya::programs::socket_filter::SocketFilterLink
  6226. impl core::marker::Sync for aya::programs::socket_filter::SocketFilterLink
  6227. impl core::marker::Unpin for aya::programs::socket_filter::SocketFilterLink
  6228. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::socket_filter::SocketFilterLink
  6229. impl core::panic::unwind_safe::UnwindSafe for aya::programs::socket_filter::SocketFilterLink
  6230. impl<Q, K> equivalent::Equivalent<K> for aya::programs::socket_filter::SocketFilterLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  6231. pub fn aya::programs::socket_filter::SocketFilterLink::equivalent(&self, key: &K) -> bool
  6232. impl<T, U> core::convert::Into<U> for aya::programs::socket_filter::SocketFilterLink where U: core::convert::From<T>
  6233. pub fn aya::programs::socket_filter::SocketFilterLink::into(self) -> U
  6234. impl<T, U> core::convert::TryFrom<U> for aya::programs::socket_filter::SocketFilterLink where U: core::convert::Into<T>
  6235. pub type aya::programs::socket_filter::SocketFilterLink::Error = core::convert::Infallible
  6236. pub fn aya::programs::socket_filter::SocketFilterLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6237. impl<T, U> core::convert::TryInto<U> for aya::programs::socket_filter::SocketFilterLink where U: core::convert::TryFrom<T>
  6238. pub type aya::programs::socket_filter::SocketFilterLink::Error = <U as core::convert::TryFrom<T>>::Error
  6239. pub fn aya::programs::socket_filter::SocketFilterLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6240. impl<T> core::any::Any for aya::programs::socket_filter::SocketFilterLink where T: 'static + ?core::marker::Sized
  6241. pub fn aya::programs::socket_filter::SocketFilterLink::type_id(&self) -> core::any::TypeId
  6242. impl<T> core::borrow::Borrow<T> for aya::programs::socket_filter::SocketFilterLink where T: ?core::marker::Sized
  6243. pub fn aya::programs::socket_filter::SocketFilterLink::borrow(&self) -> &T
  6244. impl<T> core::borrow::BorrowMut<T> for aya::programs::socket_filter::SocketFilterLink where T: ?core::marker::Sized
  6245. pub fn aya::programs::socket_filter::SocketFilterLink::borrow_mut(&mut self) -> &mut T
  6246. impl<T> core::convert::From<T> for aya::programs::socket_filter::SocketFilterLink
  6247. pub fn aya::programs::socket_filter::SocketFilterLink::from(t: T) -> T
  6248. pub struct aya::programs::socket_filter::SocketFilterLinkId(_, _)
  6249. impl core::cmp::Eq for aya::programs::socket_filter::SocketFilterLinkId
  6250. impl core::cmp::PartialEq for aya::programs::socket_filter::SocketFilterLinkId
  6251. pub fn aya::programs::socket_filter::SocketFilterLinkId::eq(&self, other: &aya::programs::socket_filter::SocketFilterLinkId) -> bool
  6252. impl core::fmt::Debug for aya::programs::socket_filter::SocketFilterLinkId
  6253. pub fn aya::programs::socket_filter::SocketFilterLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6254. impl core::hash::Hash for aya::programs::socket_filter::SocketFilterLinkId
  6255. pub fn aya::programs::socket_filter::SocketFilterLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  6256. impl core::marker::StructuralPartialEq for aya::programs::socket_filter::SocketFilterLinkId
  6257. impl equivalent::Equivalent<aya::programs::socket_filter::SocketFilterLink> for aya::programs::socket_filter::SocketFilterLinkId
  6258. pub fn aya::programs::socket_filter::SocketFilterLinkId::equivalent(&self, key: &aya::programs::socket_filter::SocketFilterLink) -> bool
  6259. impl core::marker::Freeze for aya::programs::socket_filter::SocketFilterLinkId
  6260. impl core::marker::Send for aya::programs::socket_filter::SocketFilterLinkId
  6261. impl core::marker::Sync for aya::programs::socket_filter::SocketFilterLinkId
  6262. impl core::marker::Unpin for aya::programs::socket_filter::SocketFilterLinkId
  6263. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::socket_filter::SocketFilterLinkId
  6264. impl core::panic::unwind_safe::UnwindSafe for aya::programs::socket_filter::SocketFilterLinkId
  6265. impl<Q, K> equivalent::Equivalent<K> for aya::programs::socket_filter::SocketFilterLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  6266. pub fn aya::programs::socket_filter::SocketFilterLinkId::equivalent(&self, key: &K) -> bool
  6267. impl<T, U> core::convert::Into<U> for aya::programs::socket_filter::SocketFilterLinkId where U: core::convert::From<T>
  6268. pub fn aya::programs::socket_filter::SocketFilterLinkId::into(self) -> U
  6269. impl<T, U> core::convert::TryFrom<U> for aya::programs::socket_filter::SocketFilterLinkId where U: core::convert::Into<T>
  6270. pub type aya::programs::socket_filter::SocketFilterLinkId::Error = core::convert::Infallible
  6271. pub fn aya::programs::socket_filter::SocketFilterLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6272. impl<T, U> core::convert::TryInto<U> for aya::programs::socket_filter::SocketFilterLinkId where U: core::convert::TryFrom<T>
  6273. pub type aya::programs::socket_filter::SocketFilterLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  6274. pub fn aya::programs::socket_filter::SocketFilterLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6275. impl<T> core::any::Any for aya::programs::socket_filter::SocketFilterLinkId where T: 'static + ?core::marker::Sized
  6276. pub fn aya::programs::socket_filter::SocketFilterLinkId::type_id(&self) -> core::any::TypeId
  6277. impl<T> core::borrow::Borrow<T> for aya::programs::socket_filter::SocketFilterLinkId where T: ?core::marker::Sized
  6278. pub fn aya::programs::socket_filter::SocketFilterLinkId::borrow(&self) -> &T
  6279. impl<T> core::borrow::BorrowMut<T> for aya::programs::socket_filter::SocketFilterLinkId where T: ?core::marker::Sized
  6280. pub fn aya::programs::socket_filter::SocketFilterLinkId::borrow_mut(&mut self) -> &mut T
  6281. impl<T> core::convert::From<T> for aya::programs::socket_filter::SocketFilterLinkId
  6282. pub fn aya::programs::socket_filter::SocketFilterLinkId::from(t: T) -> T
  6283. pub mod aya::programs::tc
  6284. pub enum aya::programs::tc::TcAttachOptions
  6285. pub aya::programs::tc::TcAttachOptions::Netlink(aya::programs::tc::NlOptions)
  6286. pub aya::programs::tc::TcAttachOptions::TcxOrder(aya::programs::links::LinkOrder)
  6287. impl core::fmt::Debug for aya::programs::tc::TcAttachOptions
  6288. pub fn aya::programs::tc::TcAttachOptions::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6289. impl core::marker::Freeze for aya::programs::tc::TcAttachOptions
  6290. impl core::marker::Send for aya::programs::tc::TcAttachOptions
  6291. impl core::marker::Sync for aya::programs::tc::TcAttachOptions
  6292. impl core::marker::Unpin for aya::programs::tc::TcAttachOptions
  6293. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::TcAttachOptions
  6294. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tc::TcAttachOptions
  6295. impl<T, U> core::convert::Into<U> for aya::programs::tc::TcAttachOptions where U: core::convert::From<T>
  6296. pub fn aya::programs::tc::TcAttachOptions::into(self) -> U
  6297. impl<T, U> core::convert::TryFrom<U> for aya::programs::tc::TcAttachOptions where U: core::convert::Into<T>
  6298. pub type aya::programs::tc::TcAttachOptions::Error = core::convert::Infallible
  6299. pub fn aya::programs::tc::TcAttachOptions::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6300. impl<T, U> core::convert::TryInto<U> for aya::programs::tc::TcAttachOptions where U: core::convert::TryFrom<T>
  6301. pub type aya::programs::tc::TcAttachOptions::Error = <U as core::convert::TryFrom<T>>::Error
  6302. pub fn aya::programs::tc::TcAttachOptions::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6303. impl<T> core::any::Any for aya::programs::tc::TcAttachOptions where T: 'static + ?core::marker::Sized
  6304. pub fn aya::programs::tc::TcAttachOptions::type_id(&self) -> core::any::TypeId
  6305. impl<T> core::borrow::Borrow<T> for aya::programs::tc::TcAttachOptions where T: ?core::marker::Sized
  6306. pub fn aya::programs::tc::TcAttachOptions::borrow(&self) -> &T
  6307. impl<T> core::borrow::BorrowMut<T> for aya::programs::tc::TcAttachOptions where T: ?core::marker::Sized
  6308. pub fn aya::programs::tc::TcAttachOptions::borrow_mut(&mut self) -> &mut T
  6309. impl<T> core::convert::From<T> for aya::programs::tc::TcAttachOptions
  6310. pub fn aya::programs::tc::TcAttachOptions::from(t: T) -> T
  6311. pub enum aya::programs::tc::TcAttachType
  6312. pub aya::programs::tc::TcAttachType::Custom(u32)
  6313. pub aya::programs::tc::TcAttachType::Egress
  6314. pub aya::programs::tc::TcAttachType::Ingress
  6315. impl core::clone::Clone for aya::programs::tc::TcAttachType
  6316. pub fn aya::programs::tc::TcAttachType::clone(&self) -> aya::programs::tc::TcAttachType
  6317. impl core::cmp::Eq for aya::programs::tc::TcAttachType
  6318. impl core::cmp::PartialEq for aya::programs::tc::TcAttachType
  6319. pub fn aya::programs::tc::TcAttachType::eq(&self, other: &aya::programs::tc::TcAttachType) -> bool
  6320. impl core::fmt::Debug for aya::programs::tc::TcAttachType
  6321. pub fn aya::programs::tc::TcAttachType::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6322. impl core::hash::Hash for aya::programs::tc::TcAttachType
  6323. pub fn aya::programs::tc::TcAttachType::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  6324. impl core::marker::Copy for aya::programs::tc::TcAttachType
  6325. impl core::marker::StructuralPartialEq for aya::programs::tc::TcAttachType
  6326. impl core::marker::Freeze for aya::programs::tc::TcAttachType
  6327. impl core::marker::Send for aya::programs::tc::TcAttachType
  6328. impl core::marker::Sync for aya::programs::tc::TcAttachType
  6329. impl core::marker::Unpin for aya::programs::tc::TcAttachType
  6330. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::TcAttachType
  6331. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tc::TcAttachType
  6332. impl<Q, K> equivalent::Equivalent<K> for aya::programs::tc::TcAttachType where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  6333. pub fn aya::programs::tc::TcAttachType::equivalent(&self, key: &K) -> bool
  6334. impl<T, U> core::convert::Into<U> for aya::programs::tc::TcAttachType where U: core::convert::From<T>
  6335. pub fn aya::programs::tc::TcAttachType::into(self) -> U
  6336. impl<T, U> core::convert::TryFrom<U> for aya::programs::tc::TcAttachType where U: core::convert::Into<T>
  6337. pub type aya::programs::tc::TcAttachType::Error = core::convert::Infallible
  6338. pub fn aya::programs::tc::TcAttachType::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6339. impl<T, U> core::convert::TryInto<U> for aya::programs::tc::TcAttachType where U: core::convert::TryFrom<T>
  6340. pub type aya::programs::tc::TcAttachType::Error = <U as core::convert::TryFrom<T>>::Error
  6341. pub fn aya::programs::tc::TcAttachType::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6342. impl<T> alloc::borrow::ToOwned for aya::programs::tc::TcAttachType where T: core::clone::Clone
  6343. pub type aya::programs::tc::TcAttachType::Owned = T
  6344. pub fn aya::programs::tc::TcAttachType::clone_into(&self, target: &mut T)
  6345. pub fn aya::programs::tc::TcAttachType::to_owned(&self) -> T
  6346. impl<T> core::any::Any for aya::programs::tc::TcAttachType where T: 'static + ?core::marker::Sized
  6347. pub fn aya::programs::tc::TcAttachType::type_id(&self) -> core::any::TypeId
  6348. impl<T> core::borrow::Borrow<T> for aya::programs::tc::TcAttachType where T: ?core::marker::Sized
  6349. pub fn aya::programs::tc::TcAttachType::borrow(&self) -> &T
  6350. impl<T> core::borrow::BorrowMut<T> for aya::programs::tc::TcAttachType where T: ?core::marker::Sized
  6351. pub fn aya::programs::tc::TcAttachType::borrow_mut(&mut self) -> &mut T
  6352. impl<T> core::clone::CloneToUninit for aya::programs::tc::TcAttachType where T: core::clone::Clone
  6353. pub unsafe fn aya::programs::tc::TcAttachType::clone_to_uninit(&self, dest: *mut u8)
  6354. impl<T> core::convert::From<T> for aya::programs::tc::TcAttachType
  6355. pub fn aya::programs::tc::TcAttachType::from(t: T) -> T
  6356. pub enum aya::programs::tc::TcError
  6357. pub aya::programs::tc::TcError::AlreadyAttached
  6358. pub aya::programs::tc::TcError::InvalidLinkOperation
  6359. pub aya::programs::tc::TcError::InvalidTcxAttach(u32)
  6360. pub aya::programs::tc::TcError::IoError(std::io::error::Error)
  6361. pub aya::programs::tc::TcError::NetlinkError(aya::sys::netlink::NetlinkError)
  6362. pub aya::programs::tc::TcError::NulError(alloc::ffi::c_str::NulError)
  6363. impl core::convert::From<alloc::ffi::c_str::NulError> for aya::programs::tc::TcError
  6364. pub fn aya::programs::tc::TcError::from(source: alloc::ffi::c_str::NulError) -> Self
  6365. impl core::convert::From<aya::programs::tc::TcError> for aya::programs::ProgramError
  6366. pub fn aya::programs::ProgramError::from(source: aya::programs::tc::TcError) -> Self
  6367. impl core::convert::From<std::io::error::Error> for aya::programs::tc::TcError
  6368. pub fn aya::programs::tc::TcError::from(source: std::io::error::Error) -> Self
  6369. impl core::error::Error for aya::programs::tc::TcError
  6370. pub fn aya::programs::tc::TcError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  6371. impl core::fmt::Debug for aya::programs::tc::TcError
  6372. pub fn aya::programs::tc::TcError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6373. impl core::fmt::Display for aya::programs::tc::TcError
  6374. pub fn aya::programs::tc::TcError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6375. impl core::marker::Freeze for aya::programs::tc::TcError
  6376. impl core::marker::Send for aya::programs::tc::TcError
  6377. impl core::marker::Sync for aya::programs::tc::TcError
  6378. impl core::marker::Unpin for aya::programs::tc::TcError
  6379. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::TcError
  6380. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::tc::TcError
  6381. impl<T, U> core::convert::Into<U> for aya::programs::tc::TcError where U: core::convert::From<T>
  6382. pub fn aya::programs::tc::TcError::into(self) -> U
  6383. impl<T, U> core::convert::TryFrom<U> for aya::programs::tc::TcError where U: core::convert::Into<T>
  6384. pub type aya::programs::tc::TcError::Error = core::convert::Infallible
  6385. pub fn aya::programs::tc::TcError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6386. impl<T, U> core::convert::TryInto<U> for aya::programs::tc::TcError where U: core::convert::TryFrom<T>
  6387. pub type aya::programs::tc::TcError::Error = <U as core::convert::TryFrom<T>>::Error
  6388. pub fn aya::programs::tc::TcError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6389. impl<T> alloc::string::ToString for aya::programs::tc::TcError where T: core::fmt::Display + ?core::marker::Sized
  6390. pub fn aya::programs::tc::TcError::to_string(&self) -> alloc::string::String
  6391. impl<T> core::any::Any for aya::programs::tc::TcError where T: 'static + ?core::marker::Sized
  6392. pub fn aya::programs::tc::TcError::type_id(&self) -> core::any::TypeId
  6393. impl<T> core::borrow::Borrow<T> for aya::programs::tc::TcError where T: ?core::marker::Sized
  6394. pub fn aya::programs::tc::TcError::borrow(&self) -> &T
  6395. impl<T> core::borrow::BorrowMut<T> for aya::programs::tc::TcError where T: ?core::marker::Sized
  6396. pub fn aya::programs::tc::TcError::borrow_mut(&mut self) -> &mut T
  6397. impl<T> core::convert::From<T> for aya::programs::tc::TcError
  6398. pub fn aya::programs::tc::TcError::from(t: T) -> T
  6399. pub struct aya::programs::tc::NlOptions
  6400. pub aya::programs::tc::NlOptions::handle: u32
  6401. pub aya::programs::tc::NlOptions::priority: u16
  6402. impl core::cmp::Eq for aya::programs::tc::NlOptions
  6403. impl core::cmp::PartialEq for aya::programs::tc::NlOptions
  6404. pub fn aya::programs::tc::NlOptions::eq(&self, other: &aya::programs::tc::NlOptions) -> bool
  6405. impl core::default::Default for aya::programs::tc::NlOptions
  6406. pub fn aya::programs::tc::NlOptions::default() -> aya::programs::tc::NlOptions
  6407. impl core::fmt::Debug for aya::programs::tc::NlOptions
  6408. pub fn aya::programs::tc::NlOptions::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6409. impl core::hash::Hash for aya::programs::tc::NlOptions
  6410. pub fn aya::programs::tc::NlOptions::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  6411. impl core::marker::StructuralPartialEq for aya::programs::tc::NlOptions
  6412. impl core::marker::Freeze for aya::programs::tc::NlOptions
  6413. impl core::marker::Send for aya::programs::tc::NlOptions
  6414. impl core::marker::Sync for aya::programs::tc::NlOptions
  6415. impl core::marker::Unpin for aya::programs::tc::NlOptions
  6416. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::NlOptions
  6417. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tc::NlOptions
  6418. impl<Q, K> equivalent::Equivalent<K> for aya::programs::tc::NlOptions where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  6419. pub fn aya::programs::tc::NlOptions::equivalent(&self, key: &K) -> bool
  6420. impl<T, U> core::convert::Into<U> for aya::programs::tc::NlOptions where U: core::convert::From<T>
  6421. pub fn aya::programs::tc::NlOptions::into(self) -> U
  6422. impl<T, U> core::convert::TryFrom<U> for aya::programs::tc::NlOptions where U: core::convert::Into<T>
  6423. pub type aya::programs::tc::NlOptions::Error = core::convert::Infallible
  6424. pub fn aya::programs::tc::NlOptions::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6425. impl<T, U> core::convert::TryInto<U> for aya::programs::tc::NlOptions where U: core::convert::TryFrom<T>
  6426. pub type aya::programs::tc::NlOptions::Error = <U as core::convert::TryFrom<T>>::Error
  6427. pub fn aya::programs::tc::NlOptions::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6428. impl<T> core::any::Any for aya::programs::tc::NlOptions where T: 'static + ?core::marker::Sized
  6429. pub fn aya::programs::tc::NlOptions::type_id(&self) -> core::any::TypeId
  6430. impl<T> core::borrow::Borrow<T> for aya::programs::tc::NlOptions where T: ?core::marker::Sized
  6431. pub fn aya::programs::tc::NlOptions::borrow(&self) -> &T
  6432. impl<T> core::borrow::BorrowMut<T> for aya::programs::tc::NlOptions where T: ?core::marker::Sized
  6433. pub fn aya::programs::tc::NlOptions::borrow_mut(&mut self) -> &mut T
  6434. impl<T> core::convert::From<T> for aya::programs::tc::NlOptions
  6435. pub fn aya::programs::tc::NlOptions::from(t: T) -> T
  6436. pub struct aya::programs::tc::SchedClassifier
  6437. impl aya::programs::tc::SchedClassifier
  6438. pub const aya::programs::tc::SchedClassifier::PROGRAM_TYPE: aya::programs::ProgramType
  6439. 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>
  6440. 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>
  6441. pub fn aya::programs::tc::SchedClassifier::attach_with_options(&mut self, interface: &str, attach_type: aya::programs::tc::TcAttachType, options: aya::programs::tc::TcAttachOptions) -> core::result::Result<aya::programs::tc::SchedClassifierLinkId, aya::programs::ProgramError>
  6442. pub fn aya::programs::tc::SchedClassifier::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  6443. pub fn aya::programs::tc::SchedClassifier::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6444. pub fn aya::programs::tc::SchedClassifier::query_tcx(interface: &str, attach_type: aya::programs::tc::TcAttachType) -> core::result::Result<(u64, alloc::vec::Vec<aya::programs::ProgramInfo>), aya::programs::ProgramError>
  6445. impl aya::programs::tc::SchedClassifier
  6446. pub fn aya::programs::tc::SchedClassifier::detach(&mut self, link_id: aya::programs::tc::SchedClassifierLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  6447. 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>
  6448. impl aya::programs::tc::SchedClassifier
  6449. pub fn aya::programs::tc::SchedClassifier::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  6450. impl aya::programs::tc::SchedClassifier
  6451. pub fn aya::programs::tc::SchedClassifier::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  6452. impl aya::programs::tc::SchedClassifier
  6453. pub fn aya::programs::tc::SchedClassifier::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  6454. impl aya::programs::tc::SchedClassifier
  6455. pub fn aya::programs::tc::SchedClassifier::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  6456. pub fn aya::programs::tc::SchedClassifier::unpin(self) -> core::result::Result<(), std::io::error::Error>
  6457. impl aya::programs::tc::SchedClassifier
  6458. pub fn aya::programs::tc::SchedClassifier::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6459. impl aya::programs::MultiProgram for aya::programs::tc::SchedClassifier
  6460. pub fn aya::programs::tc::SchedClassifier::fd(&self) -> core::result::Result<std::os::fd::owned::BorrowedFd<'_>, aya::programs::ProgramError>
  6461. impl core::fmt::Debug for aya::programs::tc::SchedClassifier
  6462. pub fn aya::programs::tc::SchedClassifier::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6463. impl core::ops::drop::Drop for aya::programs::tc::SchedClassifier
  6464. pub fn aya::programs::tc::SchedClassifier::drop(&mut self)
  6465. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::tc::SchedClassifier
  6466. pub type &'a aya::programs::tc::SchedClassifier::Error = aya::programs::ProgramError
  6467. 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>
  6468. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::tc::SchedClassifier
  6469. pub type &'a mut aya::programs::tc::SchedClassifier::Error = aya::programs::ProgramError
  6470. 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>
  6471. impl core::marker::Freeze for aya::programs::tc::SchedClassifier
  6472. impl core::marker::Send for aya::programs::tc::SchedClassifier
  6473. impl core::marker::Sync for aya::programs::tc::SchedClassifier
  6474. impl core::marker::Unpin for aya::programs::tc::SchedClassifier
  6475. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::SchedClassifier
  6476. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tc::SchedClassifier
  6477. impl<T, U> core::convert::Into<U> for aya::programs::tc::SchedClassifier where U: core::convert::From<T>
  6478. pub fn aya::programs::tc::SchedClassifier::into(self) -> U
  6479. impl<T, U> core::convert::TryFrom<U> for aya::programs::tc::SchedClassifier where U: core::convert::Into<T>
  6480. pub type aya::programs::tc::SchedClassifier::Error = core::convert::Infallible
  6481. pub fn aya::programs::tc::SchedClassifier::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6482. impl<T, U> core::convert::TryInto<U> for aya::programs::tc::SchedClassifier where U: core::convert::TryFrom<T>
  6483. pub type aya::programs::tc::SchedClassifier::Error = <U as core::convert::TryFrom<T>>::Error
  6484. pub fn aya::programs::tc::SchedClassifier::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6485. impl<T> core::any::Any for aya::programs::tc::SchedClassifier where T: 'static + ?core::marker::Sized
  6486. pub fn aya::programs::tc::SchedClassifier::type_id(&self) -> core::any::TypeId
  6487. impl<T> core::borrow::Borrow<T> for aya::programs::tc::SchedClassifier where T: ?core::marker::Sized
  6488. pub fn aya::programs::tc::SchedClassifier::borrow(&self) -> &T
  6489. impl<T> core::borrow::BorrowMut<T> for aya::programs::tc::SchedClassifier where T: ?core::marker::Sized
  6490. pub fn aya::programs::tc::SchedClassifier::borrow_mut(&mut self) -> &mut T
  6491. impl<T> core::convert::From<T> for aya::programs::tc::SchedClassifier
  6492. pub fn aya::programs::tc::SchedClassifier::from(t: T) -> T
  6493. pub struct aya::programs::tc::SchedClassifierLink(_)
  6494. impl aya::programs::tc::SchedClassifierLink
  6495. pub fn aya::programs::tc::SchedClassifierLink::attach_type(&self) -> core::result::Result<aya::programs::tc::TcAttachType, aya::programs::ProgramError>
  6496. 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>
  6497. pub fn aya::programs::tc::SchedClassifierLink::handle(&self) -> core::result::Result<u32, aya::programs::ProgramError>
  6498. pub fn aya::programs::tc::SchedClassifierLink::priority(&self) -> core::result::Result<u16, aya::programs::ProgramError>
  6499. impl aya::programs::MultiProgLink for aya::programs::tc::SchedClassifierLink
  6500. pub fn aya::programs::tc::SchedClassifierLink::fd(&self) -> core::result::Result<std::os::fd::owned::BorrowedFd<'_>, aya::programs::links::LinkError>
  6501. impl aya::programs::links::Link for aya::programs::tc::SchedClassifierLink
  6502. pub type aya::programs::tc::SchedClassifierLink::Id = aya::programs::tc::SchedClassifierLinkId
  6503. pub fn aya::programs::tc::SchedClassifierLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  6504. pub fn aya::programs::tc::SchedClassifierLink::id(&self) -> Self::Id
  6505. impl core::cmp::Eq for aya::programs::tc::SchedClassifierLink
  6506. impl core::cmp::PartialEq for aya::programs::tc::SchedClassifierLink
  6507. pub fn aya::programs::tc::SchedClassifierLink::eq(&self, other: &Self) -> bool
  6508. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::tc::SchedClassifierLink
  6509. pub type aya::programs::tc::SchedClassifierLink::Error = aya::programs::links::LinkError
  6510. pub fn aya::programs::tc::SchedClassifierLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  6511. impl core::convert::TryFrom<aya::programs::tc::SchedClassifierLink> for aya::programs::links::FdLink
  6512. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  6513. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::tc::SchedClassifierLink) -> core::result::Result<Self, Self::Error>
  6514. impl core::fmt::Debug for aya::programs::tc::SchedClassifierLink
  6515. pub fn aya::programs::tc::SchedClassifierLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6516. impl core::hash::Hash for aya::programs::tc::SchedClassifierLink
  6517. pub fn aya::programs::tc::SchedClassifierLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  6518. impl core::ops::drop::Drop for aya::programs::tc::SchedClassifierLink
  6519. pub fn aya::programs::tc::SchedClassifierLink::drop(&mut self)
  6520. impl equivalent::Equivalent<aya::programs::tc::SchedClassifierLink> for aya::programs::tc::SchedClassifierLinkId
  6521. pub fn aya::programs::tc::SchedClassifierLinkId::equivalent(&self, key: &aya::programs::tc::SchedClassifierLink) -> bool
  6522. impl<'a> core::convert::TryFrom<&'a aya::programs::tc::SchedClassifierLink> for &'a aya::programs::links::FdLink
  6523. pub type &'a aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  6524. pub fn &'a aya::programs::links::FdLink::try_from(value: &'a aya::programs::tc::SchedClassifierLink) -> core::result::Result<Self, Self::Error>
  6525. impl core::marker::Freeze for aya::programs::tc::SchedClassifierLink
  6526. impl core::marker::Send for aya::programs::tc::SchedClassifierLink
  6527. impl core::marker::Sync for aya::programs::tc::SchedClassifierLink
  6528. impl core::marker::Unpin for aya::programs::tc::SchedClassifierLink
  6529. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::SchedClassifierLink
  6530. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tc::SchedClassifierLink
  6531. impl<Q, K> equivalent::Equivalent<K> for aya::programs::tc::SchedClassifierLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  6532. pub fn aya::programs::tc::SchedClassifierLink::equivalent(&self, key: &K) -> bool
  6533. impl<T, U> core::convert::Into<U> for aya::programs::tc::SchedClassifierLink where U: core::convert::From<T>
  6534. pub fn aya::programs::tc::SchedClassifierLink::into(self) -> U
  6535. impl<T, U> core::convert::TryFrom<U> for aya::programs::tc::SchedClassifierLink where U: core::convert::Into<T>
  6536. pub type aya::programs::tc::SchedClassifierLink::Error = core::convert::Infallible
  6537. pub fn aya::programs::tc::SchedClassifierLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6538. impl<T, U> core::convert::TryInto<U> for aya::programs::tc::SchedClassifierLink where U: core::convert::TryFrom<T>
  6539. pub type aya::programs::tc::SchedClassifierLink::Error = <U as core::convert::TryFrom<T>>::Error
  6540. pub fn aya::programs::tc::SchedClassifierLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6541. impl<T> core::any::Any for aya::programs::tc::SchedClassifierLink where T: 'static + ?core::marker::Sized
  6542. pub fn aya::programs::tc::SchedClassifierLink::type_id(&self) -> core::any::TypeId
  6543. impl<T> core::borrow::Borrow<T> for aya::programs::tc::SchedClassifierLink where T: ?core::marker::Sized
  6544. pub fn aya::programs::tc::SchedClassifierLink::borrow(&self) -> &T
  6545. impl<T> core::borrow::BorrowMut<T> for aya::programs::tc::SchedClassifierLink where T: ?core::marker::Sized
  6546. pub fn aya::programs::tc::SchedClassifierLink::borrow_mut(&mut self) -> &mut T
  6547. impl<T> core::convert::From<T> for aya::programs::tc::SchedClassifierLink
  6548. pub fn aya::programs::tc::SchedClassifierLink::from(t: T) -> T
  6549. pub struct aya::programs::tc::SchedClassifierLinkId(_)
  6550. impl core::cmp::Eq for aya::programs::tc::SchedClassifierLinkId
  6551. impl core::cmp::PartialEq for aya::programs::tc::SchedClassifierLinkId
  6552. pub fn aya::programs::tc::SchedClassifierLinkId::eq(&self, other: &aya::programs::tc::SchedClassifierLinkId) -> bool
  6553. impl core::fmt::Debug for aya::programs::tc::SchedClassifierLinkId
  6554. pub fn aya::programs::tc::SchedClassifierLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6555. impl core::hash::Hash for aya::programs::tc::SchedClassifierLinkId
  6556. pub fn aya::programs::tc::SchedClassifierLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  6557. impl core::marker::StructuralPartialEq for aya::programs::tc::SchedClassifierLinkId
  6558. impl equivalent::Equivalent<aya::programs::tc::SchedClassifierLink> for aya::programs::tc::SchedClassifierLinkId
  6559. pub fn aya::programs::tc::SchedClassifierLinkId::equivalent(&self, key: &aya::programs::tc::SchedClassifierLink) -> bool
  6560. impl core::marker::Freeze for aya::programs::tc::SchedClassifierLinkId
  6561. impl core::marker::Send for aya::programs::tc::SchedClassifierLinkId
  6562. impl core::marker::Sync for aya::programs::tc::SchedClassifierLinkId
  6563. impl core::marker::Unpin for aya::programs::tc::SchedClassifierLinkId
  6564. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::SchedClassifierLinkId
  6565. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tc::SchedClassifierLinkId
  6566. impl<Q, K> equivalent::Equivalent<K> for aya::programs::tc::SchedClassifierLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  6567. pub fn aya::programs::tc::SchedClassifierLinkId::equivalent(&self, key: &K) -> bool
  6568. impl<T, U> core::convert::Into<U> for aya::programs::tc::SchedClassifierLinkId where U: core::convert::From<T>
  6569. pub fn aya::programs::tc::SchedClassifierLinkId::into(self) -> U
  6570. impl<T, U> core::convert::TryFrom<U> for aya::programs::tc::SchedClassifierLinkId where U: core::convert::Into<T>
  6571. pub type aya::programs::tc::SchedClassifierLinkId::Error = core::convert::Infallible
  6572. pub fn aya::programs::tc::SchedClassifierLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6573. impl<T, U> core::convert::TryInto<U> for aya::programs::tc::SchedClassifierLinkId where U: core::convert::TryFrom<T>
  6574. pub type aya::programs::tc::SchedClassifierLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  6575. pub fn aya::programs::tc::SchedClassifierLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6576. impl<T> core::any::Any for aya::programs::tc::SchedClassifierLinkId where T: 'static + ?core::marker::Sized
  6577. pub fn aya::programs::tc::SchedClassifierLinkId::type_id(&self) -> core::any::TypeId
  6578. impl<T> core::borrow::Borrow<T> for aya::programs::tc::SchedClassifierLinkId where T: ?core::marker::Sized
  6579. pub fn aya::programs::tc::SchedClassifierLinkId::borrow(&self) -> &T
  6580. impl<T> core::borrow::BorrowMut<T> for aya::programs::tc::SchedClassifierLinkId where T: ?core::marker::Sized
  6581. pub fn aya::programs::tc::SchedClassifierLinkId::borrow_mut(&mut self) -> &mut T
  6582. impl<T> core::convert::From<T> for aya::programs::tc::SchedClassifierLinkId
  6583. pub fn aya::programs::tc::SchedClassifierLinkId::from(t: T) -> T
  6584. pub fn aya::programs::tc::qdisc_add_clsact(if_name: &str) -> core::result::Result<(), aya::programs::tc::TcError>
  6585. pub fn aya::programs::tc::qdisc_detach_program(if_name: &str, attach_type: aya::programs::tc::TcAttachType, name: &str) -> core::result::Result<(), aya::programs::tc::TcError>
  6586. pub mod aya::programs::tp_btf
  6587. pub struct aya::programs::tp_btf::BtfTracePoint
  6588. impl aya::programs::tp_btf::BtfTracePoint
  6589. pub const aya::programs::tp_btf::BtfTracePoint::PROGRAM_TYPE: aya::programs::ProgramType
  6590. pub fn aya::programs::tp_btf::BtfTracePoint::attach(&mut self) -> core::result::Result<aya::programs::tp_btf::BtfTracePointLinkId, aya::programs::ProgramError>
  6591. pub fn aya::programs::tp_btf::BtfTracePoint::load(&mut self, tracepoint: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError>
  6592. impl aya::programs::tp_btf::BtfTracePoint
  6593. pub fn aya::programs::tp_btf::BtfTracePoint::detach(&mut self, link_id: aya::programs::tp_btf::BtfTracePointLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  6594. 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>
  6595. impl aya::programs::tp_btf::BtfTracePoint
  6596. pub fn aya::programs::tp_btf::BtfTracePoint::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  6597. impl aya::programs::tp_btf::BtfTracePoint
  6598. 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>
  6599. impl aya::programs::tp_btf::BtfTracePoint
  6600. pub unsafe fn aya::programs::tp_btf::BtfTracePoint::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  6601. impl aya::programs::tp_btf::BtfTracePoint
  6602. pub fn aya::programs::tp_btf::BtfTracePoint::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  6603. impl aya::programs::tp_btf::BtfTracePoint
  6604. 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>
  6605. pub fn aya::programs::tp_btf::BtfTracePoint::unpin(self) -> core::result::Result<(), std::io::error::Error>
  6606. impl aya::programs::tp_btf::BtfTracePoint
  6607. pub fn aya::programs::tp_btf::BtfTracePoint::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6608. impl core::fmt::Debug for aya::programs::tp_btf::BtfTracePoint
  6609. pub fn aya::programs::tp_btf::BtfTracePoint::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6610. impl core::ops::drop::Drop for aya::programs::tp_btf::BtfTracePoint
  6611. pub fn aya::programs::tp_btf::BtfTracePoint::drop(&mut self)
  6612. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::tp_btf::BtfTracePoint
  6613. pub type &'a aya::programs::tp_btf::BtfTracePoint::Error = aya::programs::ProgramError
  6614. 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>
  6615. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::tp_btf::BtfTracePoint
  6616. pub type &'a mut aya::programs::tp_btf::BtfTracePoint::Error = aya::programs::ProgramError
  6617. 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>
  6618. impl core::marker::Freeze for aya::programs::tp_btf::BtfTracePoint
  6619. impl core::marker::Send for aya::programs::tp_btf::BtfTracePoint
  6620. impl core::marker::Sync for aya::programs::tp_btf::BtfTracePoint
  6621. impl core::marker::Unpin for aya::programs::tp_btf::BtfTracePoint
  6622. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tp_btf::BtfTracePoint
  6623. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tp_btf::BtfTracePoint
  6624. impl<T, U> core::convert::Into<U> for aya::programs::tp_btf::BtfTracePoint where U: core::convert::From<T>
  6625. pub fn aya::programs::tp_btf::BtfTracePoint::into(self) -> U
  6626. impl<T, U> core::convert::TryFrom<U> for aya::programs::tp_btf::BtfTracePoint where U: core::convert::Into<T>
  6627. pub type aya::programs::tp_btf::BtfTracePoint::Error = core::convert::Infallible
  6628. pub fn aya::programs::tp_btf::BtfTracePoint::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6629. impl<T, U> core::convert::TryInto<U> for aya::programs::tp_btf::BtfTracePoint where U: core::convert::TryFrom<T>
  6630. pub type aya::programs::tp_btf::BtfTracePoint::Error = <U as core::convert::TryFrom<T>>::Error
  6631. pub fn aya::programs::tp_btf::BtfTracePoint::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6632. impl<T> core::any::Any for aya::programs::tp_btf::BtfTracePoint where T: 'static + ?core::marker::Sized
  6633. pub fn aya::programs::tp_btf::BtfTracePoint::type_id(&self) -> core::any::TypeId
  6634. impl<T> core::borrow::Borrow<T> for aya::programs::tp_btf::BtfTracePoint where T: ?core::marker::Sized
  6635. pub fn aya::programs::tp_btf::BtfTracePoint::borrow(&self) -> &T
  6636. impl<T> core::borrow::BorrowMut<T> for aya::programs::tp_btf::BtfTracePoint where T: ?core::marker::Sized
  6637. pub fn aya::programs::tp_btf::BtfTracePoint::borrow_mut(&mut self) -> &mut T
  6638. impl<T> core::convert::From<T> for aya::programs::tp_btf::BtfTracePoint
  6639. pub fn aya::programs::tp_btf::BtfTracePoint::from(t: T) -> T
  6640. pub struct aya::programs::tp_btf::BtfTracePointLink(_)
  6641. impl aya::programs::links::Link for aya::programs::tp_btf::BtfTracePointLink
  6642. pub type aya::programs::tp_btf::BtfTracePointLink::Id = aya::programs::tp_btf::BtfTracePointLinkId
  6643. pub fn aya::programs::tp_btf::BtfTracePointLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  6644. pub fn aya::programs::tp_btf::BtfTracePointLink::id(&self) -> Self::Id
  6645. impl core::cmp::Eq for aya::programs::tp_btf::BtfTracePointLink
  6646. impl core::cmp::PartialEq for aya::programs::tp_btf::BtfTracePointLink
  6647. pub fn aya::programs::tp_btf::BtfTracePointLink::eq(&self, other: &Self) -> bool
  6648. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::tp_btf::BtfTracePointLink
  6649. pub fn aya::programs::tp_btf::BtfTracePointLink::from(b: aya::programs::links::FdLink) -> aya::programs::tp_btf::BtfTracePointLink
  6650. impl core::convert::From<aya::programs::tp_btf::BtfTracePointLink> for aya::programs::links::FdLink
  6651. pub fn aya::programs::links::FdLink::from(w: aya::programs::tp_btf::BtfTracePointLink) -> aya::programs::links::FdLink
  6652. impl core::fmt::Debug for aya::programs::tp_btf::BtfTracePointLink
  6653. pub fn aya::programs::tp_btf::BtfTracePointLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6654. impl core::hash::Hash for aya::programs::tp_btf::BtfTracePointLink
  6655. pub fn aya::programs::tp_btf::BtfTracePointLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  6656. impl core::ops::drop::Drop for aya::programs::tp_btf::BtfTracePointLink
  6657. pub fn aya::programs::tp_btf::BtfTracePointLink::drop(&mut self)
  6658. impl equivalent::Equivalent<aya::programs::tp_btf::BtfTracePointLink> for aya::programs::tp_btf::BtfTracePointLinkId
  6659. pub fn aya::programs::tp_btf::BtfTracePointLinkId::equivalent(&self, key: &aya::programs::tp_btf::BtfTracePointLink) -> bool
  6660. impl core::marker::Freeze for aya::programs::tp_btf::BtfTracePointLink
  6661. impl core::marker::Send for aya::programs::tp_btf::BtfTracePointLink
  6662. impl core::marker::Sync for aya::programs::tp_btf::BtfTracePointLink
  6663. impl core::marker::Unpin for aya::programs::tp_btf::BtfTracePointLink
  6664. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tp_btf::BtfTracePointLink
  6665. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tp_btf::BtfTracePointLink
  6666. impl<Q, K> equivalent::Equivalent<K> for aya::programs::tp_btf::BtfTracePointLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  6667. pub fn aya::programs::tp_btf::BtfTracePointLink::equivalent(&self, key: &K) -> bool
  6668. impl<T, U> core::convert::Into<U> for aya::programs::tp_btf::BtfTracePointLink where U: core::convert::From<T>
  6669. pub fn aya::programs::tp_btf::BtfTracePointLink::into(self) -> U
  6670. impl<T, U> core::convert::TryFrom<U> for aya::programs::tp_btf::BtfTracePointLink where U: core::convert::Into<T>
  6671. pub type aya::programs::tp_btf::BtfTracePointLink::Error = core::convert::Infallible
  6672. pub fn aya::programs::tp_btf::BtfTracePointLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6673. impl<T, U> core::convert::TryInto<U> for aya::programs::tp_btf::BtfTracePointLink where U: core::convert::TryFrom<T>
  6674. pub type aya::programs::tp_btf::BtfTracePointLink::Error = <U as core::convert::TryFrom<T>>::Error
  6675. pub fn aya::programs::tp_btf::BtfTracePointLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6676. impl<T> core::any::Any for aya::programs::tp_btf::BtfTracePointLink where T: 'static + ?core::marker::Sized
  6677. pub fn aya::programs::tp_btf::BtfTracePointLink::type_id(&self) -> core::any::TypeId
  6678. impl<T> core::borrow::Borrow<T> for aya::programs::tp_btf::BtfTracePointLink where T: ?core::marker::Sized
  6679. pub fn aya::programs::tp_btf::BtfTracePointLink::borrow(&self) -> &T
  6680. impl<T> core::borrow::BorrowMut<T> for aya::programs::tp_btf::BtfTracePointLink where T: ?core::marker::Sized
  6681. pub fn aya::programs::tp_btf::BtfTracePointLink::borrow_mut(&mut self) -> &mut T
  6682. impl<T> core::convert::From<T> for aya::programs::tp_btf::BtfTracePointLink
  6683. pub fn aya::programs::tp_btf::BtfTracePointLink::from(t: T) -> T
  6684. pub struct aya::programs::tp_btf::BtfTracePointLinkId(_)
  6685. impl core::cmp::Eq for aya::programs::tp_btf::BtfTracePointLinkId
  6686. impl core::cmp::PartialEq for aya::programs::tp_btf::BtfTracePointLinkId
  6687. pub fn aya::programs::tp_btf::BtfTracePointLinkId::eq(&self, other: &aya::programs::tp_btf::BtfTracePointLinkId) -> bool
  6688. impl core::fmt::Debug for aya::programs::tp_btf::BtfTracePointLinkId
  6689. pub fn aya::programs::tp_btf::BtfTracePointLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6690. impl core::hash::Hash for aya::programs::tp_btf::BtfTracePointLinkId
  6691. pub fn aya::programs::tp_btf::BtfTracePointLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  6692. impl core::marker::StructuralPartialEq for aya::programs::tp_btf::BtfTracePointLinkId
  6693. impl equivalent::Equivalent<aya::programs::tp_btf::BtfTracePointLink> for aya::programs::tp_btf::BtfTracePointLinkId
  6694. pub fn aya::programs::tp_btf::BtfTracePointLinkId::equivalent(&self, key: &aya::programs::tp_btf::BtfTracePointLink) -> bool
  6695. impl core::marker::Freeze for aya::programs::tp_btf::BtfTracePointLinkId
  6696. impl core::marker::Send for aya::programs::tp_btf::BtfTracePointLinkId
  6697. impl core::marker::Sync for aya::programs::tp_btf::BtfTracePointLinkId
  6698. impl core::marker::Unpin for aya::programs::tp_btf::BtfTracePointLinkId
  6699. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tp_btf::BtfTracePointLinkId
  6700. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tp_btf::BtfTracePointLinkId
  6701. impl<Q, K> equivalent::Equivalent<K> for aya::programs::tp_btf::BtfTracePointLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  6702. pub fn aya::programs::tp_btf::BtfTracePointLinkId::equivalent(&self, key: &K) -> bool
  6703. impl<T, U> core::convert::Into<U> for aya::programs::tp_btf::BtfTracePointLinkId where U: core::convert::From<T>
  6704. pub fn aya::programs::tp_btf::BtfTracePointLinkId::into(self) -> U
  6705. impl<T, U> core::convert::TryFrom<U> for aya::programs::tp_btf::BtfTracePointLinkId where U: core::convert::Into<T>
  6706. pub type aya::programs::tp_btf::BtfTracePointLinkId::Error = core::convert::Infallible
  6707. pub fn aya::programs::tp_btf::BtfTracePointLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6708. impl<T, U> core::convert::TryInto<U> for aya::programs::tp_btf::BtfTracePointLinkId where U: core::convert::TryFrom<T>
  6709. pub type aya::programs::tp_btf::BtfTracePointLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  6710. pub fn aya::programs::tp_btf::BtfTracePointLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6711. impl<T> core::any::Any for aya::programs::tp_btf::BtfTracePointLinkId where T: 'static + ?core::marker::Sized
  6712. pub fn aya::programs::tp_btf::BtfTracePointLinkId::type_id(&self) -> core::any::TypeId
  6713. impl<T> core::borrow::Borrow<T> for aya::programs::tp_btf::BtfTracePointLinkId where T: ?core::marker::Sized
  6714. pub fn aya::programs::tp_btf::BtfTracePointLinkId::borrow(&self) -> &T
  6715. impl<T> core::borrow::BorrowMut<T> for aya::programs::tp_btf::BtfTracePointLinkId where T: ?core::marker::Sized
  6716. pub fn aya::programs::tp_btf::BtfTracePointLinkId::borrow_mut(&mut self) -> &mut T
  6717. impl<T> core::convert::From<T> for aya::programs::tp_btf::BtfTracePointLinkId
  6718. pub fn aya::programs::tp_btf::BtfTracePointLinkId::from(t: T) -> T
  6719. pub mod aya::programs::trace_point
  6720. pub enum aya::programs::trace_point::TracePointError
  6721. pub aya::programs::trace_point::TracePointError::FileError
  6722. pub aya::programs::trace_point::TracePointError::FileError::filename: std::path::PathBuf
  6723. pub aya::programs::trace_point::TracePointError::FileError::io_error: std::io::error::Error
  6724. impl core::convert::From<aya::programs::trace_point::TracePointError> for aya::programs::ProgramError
  6725. pub fn aya::programs::ProgramError::from(source: aya::programs::trace_point::TracePointError) -> Self
  6726. impl core::error::Error for aya::programs::trace_point::TracePointError
  6727. pub fn aya::programs::trace_point::TracePointError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  6728. impl core::fmt::Debug for aya::programs::trace_point::TracePointError
  6729. pub fn aya::programs::trace_point::TracePointError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6730. impl core::fmt::Display for aya::programs::trace_point::TracePointError
  6731. pub fn aya::programs::trace_point::TracePointError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6732. impl core::marker::Freeze for aya::programs::trace_point::TracePointError
  6733. impl core::marker::Send for aya::programs::trace_point::TracePointError
  6734. impl core::marker::Sync for aya::programs::trace_point::TracePointError
  6735. impl core::marker::Unpin for aya::programs::trace_point::TracePointError
  6736. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::trace_point::TracePointError
  6737. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::trace_point::TracePointError
  6738. impl<T, U> core::convert::Into<U> for aya::programs::trace_point::TracePointError where U: core::convert::From<T>
  6739. pub fn aya::programs::trace_point::TracePointError::into(self) -> U
  6740. impl<T, U> core::convert::TryFrom<U> for aya::programs::trace_point::TracePointError where U: core::convert::Into<T>
  6741. pub type aya::programs::trace_point::TracePointError::Error = core::convert::Infallible
  6742. pub fn aya::programs::trace_point::TracePointError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6743. impl<T, U> core::convert::TryInto<U> for aya::programs::trace_point::TracePointError where U: core::convert::TryFrom<T>
  6744. pub type aya::programs::trace_point::TracePointError::Error = <U as core::convert::TryFrom<T>>::Error
  6745. pub fn aya::programs::trace_point::TracePointError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6746. impl<T> alloc::string::ToString for aya::programs::trace_point::TracePointError where T: core::fmt::Display + ?core::marker::Sized
  6747. pub fn aya::programs::trace_point::TracePointError::to_string(&self) -> alloc::string::String
  6748. impl<T> core::any::Any for aya::programs::trace_point::TracePointError where T: 'static + ?core::marker::Sized
  6749. pub fn aya::programs::trace_point::TracePointError::type_id(&self) -> core::any::TypeId
  6750. impl<T> core::borrow::Borrow<T> for aya::programs::trace_point::TracePointError where T: ?core::marker::Sized
  6751. pub fn aya::programs::trace_point::TracePointError::borrow(&self) -> &T
  6752. impl<T> core::borrow::BorrowMut<T> for aya::programs::trace_point::TracePointError where T: ?core::marker::Sized
  6753. pub fn aya::programs::trace_point::TracePointError::borrow_mut(&mut self) -> &mut T
  6754. impl<T> core::convert::From<T> for aya::programs::trace_point::TracePointError
  6755. pub fn aya::programs::trace_point::TracePointError::from(t: T) -> T
  6756. pub struct aya::programs::trace_point::TracePoint
  6757. impl aya::programs::trace_point::TracePoint
  6758. pub const aya::programs::trace_point::TracePoint::PROGRAM_TYPE: aya::programs::ProgramType
  6759. 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>
  6760. pub fn aya::programs::trace_point::TracePoint::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6761. impl aya::programs::trace_point::TracePoint
  6762. pub fn aya::programs::trace_point::TracePoint::detach(&mut self, link_id: aya::programs::trace_point::TracePointLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  6763. 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>
  6764. impl aya::programs::trace_point::TracePoint
  6765. pub fn aya::programs::trace_point::TracePoint::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  6766. impl aya::programs::trace_point::TracePoint
  6767. 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>
  6768. impl aya::programs::trace_point::TracePoint
  6769. pub fn aya::programs::trace_point::TracePoint::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  6770. impl aya::programs::trace_point::TracePoint
  6771. pub fn aya::programs::trace_point::TracePoint::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  6772. impl aya::programs::trace_point::TracePoint
  6773. 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>
  6774. pub fn aya::programs::trace_point::TracePoint::unpin(self) -> core::result::Result<(), std::io::error::Error>
  6775. impl aya::programs::trace_point::TracePoint
  6776. pub fn aya::programs::trace_point::TracePoint::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6777. impl core::fmt::Debug for aya::programs::trace_point::TracePoint
  6778. pub fn aya::programs::trace_point::TracePoint::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6779. impl core::ops::drop::Drop for aya::programs::trace_point::TracePoint
  6780. pub fn aya::programs::trace_point::TracePoint::drop(&mut self)
  6781. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::trace_point::TracePoint
  6782. pub type &'a aya::programs::trace_point::TracePoint::Error = aya::programs::ProgramError
  6783. 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>
  6784. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::trace_point::TracePoint
  6785. pub type &'a mut aya::programs::trace_point::TracePoint::Error = aya::programs::ProgramError
  6786. 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>
  6787. impl core::marker::Freeze for aya::programs::trace_point::TracePoint
  6788. impl core::marker::Send for aya::programs::trace_point::TracePoint
  6789. impl core::marker::Sync for aya::programs::trace_point::TracePoint
  6790. impl core::marker::Unpin for aya::programs::trace_point::TracePoint
  6791. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::trace_point::TracePoint
  6792. impl core::panic::unwind_safe::UnwindSafe for aya::programs::trace_point::TracePoint
  6793. impl<T, U> core::convert::Into<U> for aya::programs::trace_point::TracePoint where U: core::convert::From<T>
  6794. pub fn aya::programs::trace_point::TracePoint::into(self) -> U
  6795. impl<T, U> core::convert::TryFrom<U> for aya::programs::trace_point::TracePoint where U: core::convert::Into<T>
  6796. pub type aya::programs::trace_point::TracePoint::Error = core::convert::Infallible
  6797. pub fn aya::programs::trace_point::TracePoint::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6798. impl<T, U> core::convert::TryInto<U> for aya::programs::trace_point::TracePoint where U: core::convert::TryFrom<T>
  6799. pub type aya::programs::trace_point::TracePoint::Error = <U as core::convert::TryFrom<T>>::Error
  6800. pub fn aya::programs::trace_point::TracePoint::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6801. impl<T> core::any::Any for aya::programs::trace_point::TracePoint where T: 'static + ?core::marker::Sized
  6802. pub fn aya::programs::trace_point::TracePoint::type_id(&self) -> core::any::TypeId
  6803. impl<T> core::borrow::Borrow<T> for aya::programs::trace_point::TracePoint where T: ?core::marker::Sized
  6804. pub fn aya::programs::trace_point::TracePoint::borrow(&self) -> &T
  6805. impl<T> core::borrow::BorrowMut<T> for aya::programs::trace_point::TracePoint where T: ?core::marker::Sized
  6806. pub fn aya::programs::trace_point::TracePoint::borrow_mut(&mut self) -> &mut T
  6807. impl<T> core::convert::From<T> for aya::programs::trace_point::TracePoint
  6808. pub fn aya::programs::trace_point::TracePoint::from(t: T) -> T
  6809. pub struct aya::programs::trace_point::TracePointLink(_)
  6810. impl aya::programs::links::Link for aya::programs::trace_point::TracePointLink
  6811. pub type aya::programs::trace_point::TracePointLink::Id = aya::programs::trace_point::TracePointLinkId
  6812. pub fn aya::programs::trace_point::TracePointLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  6813. pub fn aya::programs::trace_point::TracePointLink::id(&self) -> Self::Id
  6814. impl core::cmp::Eq for aya::programs::trace_point::TracePointLink
  6815. impl core::cmp::PartialEq for aya::programs::trace_point::TracePointLink
  6816. pub fn aya::programs::trace_point::TracePointLink::eq(&self, other: &Self) -> bool
  6817. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::trace_point::TracePointLink
  6818. pub type aya::programs::trace_point::TracePointLink::Error = aya::programs::links::LinkError
  6819. pub fn aya::programs::trace_point::TracePointLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  6820. impl core::convert::TryFrom<aya::programs::trace_point::TracePointLink> for aya::programs::links::FdLink
  6821. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  6822. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::trace_point::TracePointLink) -> core::result::Result<Self, Self::Error>
  6823. impl core::fmt::Debug for aya::programs::trace_point::TracePointLink
  6824. pub fn aya::programs::trace_point::TracePointLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6825. impl core::hash::Hash for aya::programs::trace_point::TracePointLink
  6826. pub fn aya::programs::trace_point::TracePointLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  6827. impl core::ops::drop::Drop for aya::programs::trace_point::TracePointLink
  6828. pub fn aya::programs::trace_point::TracePointLink::drop(&mut self)
  6829. impl equivalent::Equivalent<aya::programs::trace_point::TracePointLink> for aya::programs::trace_point::TracePointLinkId
  6830. pub fn aya::programs::trace_point::TracePointLinkId::equivalent(&self, key: &aya::programs::trace_point::TracePointLink) -> bool
  6831. impl core::marker::Freeze for aya::programs::trace_point::TracePointLink
  6832. impl core::marker::Send for aya::programs::trace_point::TracePointLink
  6833. impl core::marker::Sync for aya::programs::trace_point::TracePointLink
  6834. impl core::marker::Unpin for aya::programs::trace_point::TracePointLink
  6835. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::trace_point::TracePointLink
  6836. impl core::panic::unwind_safe::UnwindSafe for aya::programs::trace_point::TracePointLink
  6837. impl<Q, K> equivalent::Equivalent<K> for aya::programs::trace_point::TracePointLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  6838. pub fn aya::programs::trace_point::TracePointLink::equivalent(&self, key: &K) -> bool
  6839. impl<T, U> core::convert::Into<U> for aya::programs::trace_point::TracePointLink where U: core::convert::From<T>
  6840. pub fn aya::programs::trace_point::TracePointLink::into(self) -> U
  6841. impl<T, U> core::convert::TryFrom<U> for aya::programs::trace_point::TracePointLink where U: core::convert::Into<T>
  6842. pub type aya::programs::trace_point::TracePointLink::Error = core::convert::Infallible
  6843. pub fn aya::programs::trace_point::TracePointLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6844. impl<T, U> core::convert::TryInto<U> for aya::programs::trace_point::TracePointLink where U: core::convert::TryFrom<T>
  6845. pub type aya::programs::trace_point::TracePointLink::Error = <U as core::convert::TryFrom<T>>::Error
  6846. pub fn aya::programs::trace_point::TracePointLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6847. impl<T> core::any::Any for aya::programs::trace_point::TracePointLink where T: 'static + ?core::marker::Sized
  6848. pub fn aya::programs::trace_point::TracePointLink::type_id(&self) -> core::any::TypeId
  6849. impl<T> core::borrow::Borrow<T> for aya::programs::trace_point::TracePointLink where T: ?core::marker::Sized
  6850. pub fn aya::programs::trace_point::TracePointLink::borrow(&self) -> &T
  6851. impl<T> core::borrow::BorrowMut<T> for aya::programs::trace_point::TracePointLink where T: ?core::marker::Sized
  6852. pub fn aya::programs::trace_point::TracePointLink::borrow_mut(&mut self) -> &mut T
  6853. impl<T> core::convert::From<T> for aya::programs::trace_point::TracePointLink
  6854. pub fn aya::programs::trace_point::TracePointLink::from(t: T) -> T
  6855. pub struct aya::programs::trace_point::TracePointLinkId(_)
  6856. impl core::cmp::Eq for aya::programs::trace_point::TracePointLinkId
  6857. impl core::cmp::PartialEq for aya::programs::trace_point::TracePointLinkId
  6858. pub fn aya::programs::trace_point::TracePointLinkId::eq(&self, other: &aya::programs::trace_point::TracePointLinkId) -> bool
  6859. impl core::fmt::Debug for aya::programs::trace_point::TracePointLinkId
  6860. pub fn aya::programs::trace_point::TracePointLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6861. impl core::hash::Hash for aya::programs::trace_point::TracePointLinkId
  6862. pub fn aya::programs::trace_point::TracePointLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  6863. impl core::marker::StructuralPartialEq for aya::programs::trace_point::TracePointLinkId
  6864. impl equivalent::Equivalent<aya::programs::trace_point::TracePointLink> for aya::programs::trace_point::TracePointLinkId
  6865. pub fn aya::programs::trace_point::TracePointLinkId::equivalent(&self, key: &aya::programs::trace_point::TracePointLink) -> bool
  6866. impl core::marker::Freeze for aya::programs::trace_point::TracePointLinkId
  6867. impl core::marker::Send for aya::programs::trace_point::TracePointLinkId
  6868. impl core::marker::Sync for aya::programs::trace_point::TracePointLinkId
  6869. impl core::marker::Unpin for aya::programs::trace_point::TracePointLinkId
  6870. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::trace_point::TracePointLinkId
  6871. impl core::panic::unwind_safe::UnwindSafe for aya::programs::trace_point::TracePointLinkId
  6872. impl<Q, K> equivalent::Equivalent<K> for aya::programs::trace_point::TracePointLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  6873. pub fn aya::programs::trace_point::TracePointLinkId::equivalent(&self, key: &K) -> bool
  6874. impl<T, U> core::convert::Into<U> for aya::programs::trace_point::TracePointLinkId where U: core::convert::From<T>
  6875. pub fn aya::programs::trace_point::TracePointLinkId::into(self) -> U
  6876. impl<T, U> core::convert::TryFrom<U> for aya::programs::trace_point::TracePointLinkId where U: core::convert::Into<T>
  6877. pub type aya::programs::trace_point::TracePointLinkId::Error = core::convert::Infallible
  6878. pub fn aya::programs::trace_point::TracePointLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6879. impl<T, U> core::convert::TryInto<U> for aya::programs::trace_point::TracePointLinkId where U: core::convert::TryFrom<T>
  6880. pub type aya::programs::trace_point::TracePointLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  6881. pub fn aya::programs::trace_point::TracePointLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6882. impl<T> core::any::Any for aya::programs::trace_point::TracePointLinkId where T: 'static + ?core::marker::Sized
  6883. pub fn aya::programs::trace_point::TracePointLinkId::type_id(&self) -> core::any::TypeId
  6884. impl<T> core::borrow::Borrow<T> for aya::programs::trace_point::TracePointLinkId where T: ?core::marker::Sized
  6885. pub fn aya::programs::trace_point::TracePointLinkId::borrow(&self) -> &T
  6886. impl<T> core::borrow::BorrowMut<T> for aya::programs::trace_point::TracePointLinkId where T: ?core::marker::Sized
  6887. pub fn aya::programs::trace_point::TracePointLinkId::borrow_mut(&mut self) -> &mut T
  6888. impl<T> core::convert::From<T> for aya::programs::trace_point::TracePointLinkId
  6889. pub fn aya::programs::trace_point::TracePointLinkId::from(t: T) -> T
  6890. pub mod aya::programs::uprobe
  6891. pub enum aya::programs::uprobe::ProcMapError
  6892. pub aya::programs::uprobe::ProcMapError::ParseLine
  6893. pub aya::programs::uprobe::ProcMapError::ParseLine::line: alloc::vec::Vec<u8>
  6894. pub aya::programs::uprobe::ProcMapError::ReadFile(std::io::error::Error)
  6895. impl core::convert::From<std::io::error::Error> for aya::programs::uprobe::ProcMapError
  6896. pub fn aya::programs::uprobe::ProcMapError::from(source: std::io::error::Error) -> Self
  6897. impl core::error::Error for aya::programs::uprobe::ProcMapError
  6898. pub fn aya::programs::uprobe::ProcMapError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  6899. impl core::fmt::Debug for aya::programs::uprobe::ProcMapError
  6900. pub fn aya::programs::uprobe::ProcMapError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6901. impl core::fmt::Display for aya::programs::uprobe::ProcMapError
  6902. pub fn aya::programs::uprobe::ProcMapError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6903. impl core::marker::Freeze for aya::programs::uprobe::ProcMapError
  6904. impl core::marker::Send for aya::programs::uprobe::ProcMapError
  6905. impl core::marker::Sync for aya::programs::uprobe::ProcMapError
  6906. impl core::marker::Unpin for aya::programs::uprobe::ProcMapError
  6907. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::uprobe::ProcMapError
  6908. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::uprobe::ProcMapError
  6909. impl<T, U> core::convert::Into<U> for aya::programs::uprobe::ProcMapError where U: core::convert::From<T>
  6910. pub fn aya::programs::uprobe::ProcMapError::into(self) -> U
  6911. impl<T, U> core::convert::TryFrom<U> for aya::programs::uprobe::ProcMapError where U: core::convert::Into<T>
  6912. pub type aya::programs::uprobe::ProcMapError::Error = core::convert::Infallible
  6913. pub fn aya::programs::uprobe::ProcMapError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6914. impl<T, U> core::convert::TryInto<U> for aya::programs::uprobe::ProcMapError where U: core::convert::TryFrom<T>
  6915. pub type aya::programs::uprobe::ProcMapError::Error = <U as core::convert::TryFrom<T>>::Error
  6916. pub fn aya::programs::uprobe::ProcMapError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6917. impl<T> alloc::string::ToString for aya::programs::uprobe::ProcMapError where T: core::fmt::Display + ?core::marker::Sized
  6918. pub fn aya::programs::uprobe::ProcMapError::to_string(&self) -> alloc::string::String
  6919. impl<T> core::any::Any for aya::programs::uprobe::ProcMapError where T: 'static + ?core::marker::Sized
  6920. pub fn aya::programs::uprobe::ProcMapError::type_id(&self) -> core::any::TypeId
  6921. impl<T> core::borrow::Borrow<T> for aya::programs::uprobe::ProcMapError where T: ?core::marker::Sized
  6922. pub fn aya::programs::uprobe::ProcMapError::borrow(&self) -> &T
  6923. impl<T> core::borrow::BorrowMut<T> for aya::programs::uprobe::ProcMapError where T: ?core::marker::Sized
  6924. pub fn aya::programs::uprobe::ProcMapError::borrow_mut(&mut self) -> &mut T
  6925. impl<T> core::convert::From<T> for aya::programs::uprobe::ProcMapError
  6926. pub fn aya::programs::uprobe::ProcMapError::from(t: T) -> T
  6927. pub enum aya::programs::uprobe::UProbeAttachLocation<'a>
  6928. pub aya::programs::uprobe::UProbeAttachLocation::AbsoluteOffset(u64)
  6929. pub aya::programs::uprobe::UProbeAttachLocation::Symbol(&'a str)
  6930. pub aya::programs::uprobe::UProbeAttachLocation::SymbolOffset(&'a str, u64)
  6931. impl core::convert::From<u64> for aya::programs::uprobe::UProbeAttachLocation<'static>
  6932. pub fn aya::programs::uprobe::UProbeAttachLocation<'static>::from(offset: u64) -> Self
  6933. impl<'a> core::convert::From<&'a str> for aya::programs::uprobe::UProbeAttachLocation<'a>
  6934. pub fn aya::programs::uprobe::UProbeAttachLocation<'a>::from(s: &'a str) -> Self
  6935. impl<'a> core::marker::Freeze for aya::programs::uprobe::UProbeAttachLocation<'a>
  6936. impl<'a> core::marker::Send for aya::programs::uprobe::UProbeAttachLocation<'a>
  6937. impl<'a> core::marker::Sync for aya::programs::uprobe::UProbeAttachLocation<'a>
  6938. impl<'a> core::marker::Unpin for aya::programs::uprobe::UProbeAttachLocation<'a>
  6939. impl<'a> core::panic::unwind_safe::RefUnwindSafe for aya::programs::uprobe::UProbeAttachLocation<'a>
  6940. impl<'a> core::panic::unwind_safe::UnwindSafe for aya::programs::uprobe::UProbeAttachLocation<'a>
  6941. impl<T, U> core::convert::Into<U> for aya::programs::uprobe::UProbeAttachLocation<'a> where U: core::convert::From<T>
  6942. pub fn aya::programs::uprobe::UProbeAttachLocation<'a>::into(self) -> U
  6943. impl<T, U> core::convert::TryFrom<U> for aya::programs::uprobe::UProbeAttachLocation<'a> where U: core::convert::Into<T>
  6944. pub type aya::programs::uprobe::UProbeAttachLocation<'a>::Error = core::convert::Infallible
  6945. pub fn aya::programs::uprobe::UProbeAttachLocation<'a>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6946. impl<T, U> core::convert::TryInto<U> for aya::programs::uprobe::UProbeAttachLocation<'a> where U: core::convert::TryFrom<T>
  6947. pub type aya::programs::uprobe::UProbeAttachLocation<'a>::Error = <U as core::convert::TryFrom<T>>::Error
  6948. pub fn aya::programs::uprobe::UProbeAttachLocation<'a>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6949. impl<T> core::any::Any for aya::programs::uprobe::UProbeAttachLocation<'a> where T: 'static + ?core::marker::Sized
  6950. pub fn aya::programs::uprobe::UProbeAttachLocation<'a>::type_id(&self) -> core::any::TypeId
  6951. impl<T> core::borrow::Borrow<T> for aya::programs::uprobe::UProbeAttachLocation<'a> where T: ?core::marker::Sized
  6952. pub fn aya::programs::uprobe::UProbeAttachLocation<'a>::borrow(&self) -> &T
  6953. impl<T> core::borrow::BorrowMut<T> for aya::programs::uprobe::UProbeAttachLocation<'a> where T: ?core::marker::Sized
  6954. pub fn aya::programs::uprobe::UProbeAttachLocation<'a>::borrow_mut(&mut self) -> &mut T
  6955. impl<T> core::convert::From<T> for aya::programs::uprobe::UProbeAttachLocation<'a>
  6956. pub fn aya::programs::uprobe::UProbeAttachLocation<'a>::from(t: T) -> T
  6957. pub enum aya::programs::uprobe::UProbeError
  6958. pub aya::programs::uprobe::UProbeError::FileError
  6959. pub aya::programs::uprobe::UProbeError::FileError::filename: std::path::PathBuf
  6960. pub aya::programs::uprobe::UProbeError::FileError::io_error: std::io::error::Error
  6961. pub aya::programs::uprobe::UProbeError::InvalidLdSoCache
  6962. pub aya::programs::uprobe::UProbeError::InvalidLdSoCache::io_error: &'static std::io::error::Error
  6963. pub aya::programs::uprobe::UProbeError::InvalidTarget
  6964. pub aya::programs::uprobe::UProbeError::InvalidTarget::path: std::path::PathBuf
  6965. pub aya::programs::uprobe::UProbeError::ProcMap
  6966. pub aya::programs::uprobe::UProbeError::ProcMap::pid: i32
  6967. pub aya::programs::uprobe::UProbeError::ProcMap::source: aya::programs::uprobe::ProcMapError
  6968. pub aya::programs::uprobe::UProbeError::SymbolError
  6969. pub aya::programs::uprobe::UProbeError::SymbolError::error: alloc::boxed::Box<(dyn core::error::Error + core::marker::Send + core::marker::Sync)>
  6970. pub aya::programs::uprobe::UProbeError::SymbolError::symbol: alloc::string::String
  6971. impl core::convert::From<aya::programs::uprobe::UProbeError> for aya::programs::ProgramError
  6972. pub fn aya::programs::ProgramError::from(source: aya::programs::uprobe::UProbeError) -> Self
  6973. impl core::error::Error for aya::programs::uprobe::UProbeError
  6974. pub fn aya::programs::uprobe::UProbeError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  6975. impl core::fmt::Debug for aya::programs::uprobe::UProbeError
  6976. pub fn aya::programs::uprobe::UProbeError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6977. impl core::fmt::Display for aya::programs::uprobe::UProbeError
  6978. pub fn aya::programs::uprobe::UProbeError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6979. impl core::marker::Freeze for aya::programs::uprobe::UProbeError
  6980. impl core::marker::Send for aya::programs::uprobe::UProbeError
  6981. impl core::marker::Sync for aya::programs::uprobe::UProbeError
  6982. impl core::marker::Unpin for aya::programs::uprobe::UProbeError
  6983. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::uprobe::UProbeError
  6984. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::uprobe::UProbeError
  6985. impl<T, U> core::convert::Into<U> for aya::programs::uprobe::UProbeError where U: core::convert::From<T>
  6986. pub fn aya::programs::uprobe::UProbeError::into(self) -> U
  6987. impl<T, U> core::convert::TryFrom<U> for aya::programs::uprobe::UProbeError where U: core::convert::Into<T>
  6988. pub type aya::programs::uprobe::UProbeError::Error = core::convert::Infallible
  6989. pub fn aya::programs::uprobe::UProbeError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6990. impl<T, U> core::convert::TryInto<U> for aya::programs::uprobe::UProbeError where U: core::convert::TryFrom<T>
  6991. pub type aya::programs::uprobe::UProbeError::Error = <U as core::convert::TryFrom<T>>::Error
  6992. pub fn aya::programs::uprobe::UProbeError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6993. impl<T> alloc::string::ToString for aya::programs::uprobe::UProbeError where T: core::fmt::Display + ?core::marker::Sized
  6994. pub fn aya::programs::uprobe::UProbeError::to_string(&self) -> alloc::string::String
  6995. impl<T> core::any::Any for aya::programs::uprobe::UProbeError where T: 'static + ?core::marker::Sized
  6996. pub fn aya::programs::uprobe::UProbeError::type_id(&self) -> core::any::TypeId
  6997. impl<T> core::borrow::Borrow<T> for aya::programs::uprobe::UProbeError where T: ?core::marker::Sized
  6998. pub fn aya::programs::uprobe::UProbeError::borrow(&self) -> &T
  6999. impl<T> core::borrow::BorrowMut<T> for aya::programs::uprobe::UProbeError where T: ?core::marker::Sized
  7000. pub fn aya::programs::uprobe::UProbeError::borrow_mut(&mut self) -> &mut T
  7001. impl<T> core::convert::From<T> for aya::programs::uprobe::UProbeError
  7002. pub fn aya::programs::uprobe::UProbeError::from(t: T) -> T
  7003. pub struct aya::programs::uprobe::UProbe
  7004. impl aya::programs::uprobe::UProbe
  7005. pub const aya::programs::uprobe::UProbe::PROGRAM_TYPE: aya::programs::ProgramType
  7006. pub fn aya::programs::uprobe::UProbe::attach<'loc, T: core::convert::AsRef<std::path::Path>, Loc: core::convert::Into<aya::programs::uprobe::UProbeAttachLocation<'loc>>>(&mut self, location: Loc, target: T, pid: core::option::Option<libc::unix::pid_t>, cookie: core::option::Option<u64>) -> core::result::Result<aya::programs::uprobe::UProbeLinkId, aya::programs::ProgramError>
  7007. 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>
  7008. pub fn aya::programs::uprobe::UProbe::kind(&self) -> aya::programs::ProbeKind
  7009. pub fn aya::programs::uprobe::UProbe::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  7010. impl aya::programs::uprobe::UProbe
  7011. pub fn aya::programs::uprobe::UProbe::detach(&mut self, link_id: aya::programs::uprobe::UProbeLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  7012. 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>
  7013. impl aya::programs::uprobe::UProbe
  7014. pub fn aya::programs::uprobe::UProbe::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  7015. impl aya::programs::uprobe::UProbe
  7016. pub unsafe fn aya::programs::uprobe::UProbe::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>, kind: aya::programs::ProbeKind) -> core::result::Result<Self, aya::programs::ProgramError>
  7017. impl aya::programs::uprobe::UProbe
  7018. pub fn aya::programs::uprobe::UProbe::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  7019. impl aya::programs::uprobe::UProbe
  7020. pub fn aya::programs::uprobe::UProbe::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  7021. pub fn aya::programs::uprobe::UProbe::unpin(self) -> core::result::Result<(), std::io::error::Error>
  7022. impl aya::programs::uprobe::UProbe
  7023. pub fn aya::programs::uprobe::UProbe::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  7024. impl core::fmt::Debug for aya::programs::uprobe::UProbe
  7025. pub fn aya::programs::uprobe::UProbe::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7026. impl core::ops::drop::Drop for aya::programs::uprobe::UProbe
  7027. pub fn aya::programs::uprobe::UProbe::drop(&mut self)
  7028. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::uprobe::UProbe
  7029. pub type &'a aya::programs::uprobe::UProbe::Error = aya::programs::ProgramError
  7030. 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>
  7031. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::uprobe::UProbe
  7032. pub type &'a mut aya::programs::uprobe::UProbe::Error = aya::programs::ProgramError
  7033. 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>
  7034. impl core::marker::Freeze for aya::programs::uprobe::UProbe
  7035. impl core::marker::Send for aya::programs::uprobe::UProbe
  7036. impl core::marker::Sync for aya::programs::uprobe::UProbe
  7037. impl core::marker::Unpin for aya::programs::uprobe::UProbe
  7038. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::uprobe::UProbe
  7039. impl core::panic::unwind_safe::UnwindSafe for aya::programs::uprobe::UProbe
  7040. impl<T, U> core::convert::Into<U> for aya::programs::uprobe::UProbe where U: core::convert::From<T>
  7041. pub fn aya::programs::uprobe::UProbe::into(self) -> U
  7042. impl<T, U> core::convert::TryFrom<U> for aya::programs::uprobe::UProbe where U: core::convert::Into<T>
  7043. pub type aya::programs::uprobe::UProbe::Error = core::convert::Infallible
  7044. pub fn aya::programs::uprobe::UProbe::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7045. impl<T, U> core::convert::TryInto<U> for aya::programs::uprobe::UProbe where U: core::convert::TryFrom<T>
  7046. pub type aya::programs::uprobe::UProbe::Error = <U as core::convert::TryFrom<T>>::Error
  7047. pub fn aya::programs::uprobe::UProbe::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7048. impl<T> core::any::Any for aya::programs::uprobe::UProbe where T: 'static + ?core::marker::Sized
  7049. pub fn aya::programs::uprobe::UProbe::type_id(&self) -> core::any::TypeId
  7050. impl<T> core::borrow::Borrow<T> for aya::programs::uprobe::UProbe where T: ?core::marker::Sized
  7051. pub fn aya::programs::uprobe::UProbe::borrow(&self) -> &T
  7052. impl<T> core::borrow::BorrowMut<T> for aya::programs::uprobe::UProbe where T: ?core::marker::Sized
  7053. pub fn aya::programs::uprobe::UProbe::borrow_mut(&mut self) -> &mut T
  7054. impl<T> core::convert::From<T> for aya::programs::uprobe::UProbe
  7055. pub fn aya::programs::uprobe::UProbe::from(t: T) -> T
  7056. pub struct aya::programs::uprobe::UProbeLink(_)
  7057. impl aya::programs::links::Link for aya::programs::uprobe::UProbeLink
  7058. pub type aya::programs::uprobe::UProbeLink::Id = aya::programs::uprobe::UProbeLinkId
  7059. pub fn aya::programs::uprobe::UProbeLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  7060. pub fn aya::programs::uprobe::UProbeLink::id(&self) -> Self::Id
  7061. impl core::cmp::Eq for aya::programs::uprobe::UProbeLink
  7062. impl core::cmp::PartialEq for aya::programs::uprobe::UProbeLink
  7063. pub fn aya::programs::uprobe::UProbeLink::eq(&self, other: &Self) -> bool
  7064. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::uprobe::UProbeLink
  7065. pub type aya::programs::uprobe::UProbeLink::Error = aya::programs::links::LinkError
  7066. pub fn aya::programs::uprobe::UProbeLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  7067. impl core::convert::TryFrom<aya::programs::uprobe::UProbeLink> for aya::programs::links::FdLink
  7068. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  7069. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::uprobe::UProbeLink) -> core::result::Result<Self, Self::Error>
  7070. impl core::fmt::Debug for aya::programs::uprobe::UProbeLink
  7071. pub fn aya::programs::uprobe::UProbeLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7072. impl core::hash::Hash for aya::programs::uprobe::UProbeLink
  7073. pub fn aya::programs::uprobe::UProbeLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  7074. impl core::ops::drop::Drop for aya::programs::uprobe::UProbeLink
  7075. pub fn aya::programs::uprobe::UProbeLink::drop(&mut self)
  7076. impl equivalent::Equivalent<aya::programs::uprobe::UProbeLink> for aya::programs::uprobe::UProbeLinkId
  7077. pub fn aya::programs::uprobe::UProbeLinkId::equivalent(&self, key: &aya::programs::uprobe::UProbeLink) -> bool
  7078. impl core::marker::Freeze for aya::programs::uprobe::UProbeLink
  7079. impl core::marker::Send for aya::programs::uprobe::UProbeLink
  7080. impl core::marker::Sync for aya::programs::uprobe::UProbeLink
  7081. impl core::marker::Unpin for aya::programs::uprobe::UProbeLink
  7082. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::uprobe::UProbeLink
  7083. impl core::panic::unwind_safe::UnwindSafe for aya::programs::uprobe::UProbeLink
  7084. impl<Q, K> equivalent::Equivalent<K> for aya::programs::uprobe::UProbeLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  7085. pub fn aya::programs::uprobe::UProbeLink::equivalent(&self, key: &K) -> bool
  7086. impl<T, U> core::convert::Into<U> for aya::programs::uprobe::UProbeLink where U: core::convert::From<T>
  7087. pub fn aya::programs::uprobe::UProbeLink::into(self) -> U
  7088. impl<T, U> core::convert::TryFrom<U> for aya::programs::uprobe::UProbeLink where U: core::convert::Into<T>
  7089. pub type aya::programs::uprobe::UProbeLink::Error = core::convert::Infallible
  7090. pub fn aya::programs::uprobe::UProbeLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7091. impl<T, U> core::convert::TryInto<U> for aya::programs::uprobe::UProbeLink where U: core::convert::TryFrom<T>
  7092. pub type aya::programs::uprobe::UProbeLink::Error = <U as core::convert::TryFrom<T>>::Error
  7093. pub fn aya::programs::uprobe::UProbeLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7094. impl<T> core::any::Any for aya::programs::uprobe::UProbeLink where T: 'static + ?core::marker::Sized
  7095. pub fn aya::programs::uprobe::UProbeLink::type_id(&self) -> core::any::TypeId
  7096. impl<T> core::borrow::Borrow<T> for aya::programs::uprobe::UProbeLink where T: ?core::marker::Sized
  7097. pub fn aya::programs::uprobe::UProbeLink::borrow(&self) -> &T
  7098. impl<T> core::borrow::BorrowMut<T> for aya::programs::uprobe::UProbeLink where T: ?core::marker::Sized
  7099. pub fn aya::programs::uprobe::UProbeLink::borrow_mut(&mut self) -> &mut T
  7100. impl<T> core::convert::From<T> for aya::programs::uprobe::UProbeLink
  7101. pub fn aya::programs::uprobe::UProbeLink::from(t: T) -> T
  7102. pub struct aya::programs::uprobe::UProbeLinkId(_)
  7103. impl core::cmp::Eq for aya::programs::uprobe::UProbeLinkId
  7104. impl core::cmp::PartialEq for aya::programs::uprobe::UProbeLinkId
  7105. pub fn aya::programs::uprobe::UProbeLinkId::eq(&self, other: &aya::programs::uprobe::UProbeLinkId) -> bool
  7106. impl core::fmt::Debug for aya::programs::uprobe::UProbeLinkId
  7107. pub fn aya::programs::uprobe::UProbeLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7108. impl core::hash::Hash for aya::programs::uprobe::UProbeLinkId
  7109. pub fn aya::programs::uprobe::UProbeLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  7110. impl core::marker::StructuralPartialEq for aya::programs::uprobe::UProbeLinkId
  7111. impl equivalent::Equivalent<aya::programs::uprobe::UProbeLink> for aya::programs::uprobe::UProbeLinkId
  7112. pub fn aya::programs::uprobe::UProbeLinkId::equivalent(&self, key: &aya::programs::uprobe::UProbeLink) -> bool
  7113. impl core::marker::Freeze for aya::programs::uprobe::UProbeLinkId
  7114. impl core::marker::Send for aya::programs::uprobe::UProbeLinkId
  7115. impl core::marker::Sync for aya::programs::uprobe::UProbeLinkId
  7116. impl core::marker::Unpin for aya::programs::uprobe::UProbeLinkId
  7117. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::uprobe::UProbeLinkId
  7118. impl core::panic::unwind_safe::UnwindSafe for aya::programs::uprobe::UProbeLinkId
  7119. impl<Q, K> equivalent::Equivalent<K> for aya::programs::uprobe::UProbeLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  7120. pub fn aya::programs::uprobe::UProbeLinkId::equivalent(&self, key: &K) -> bool
  7121. impl<T, U> core::convert::Into<U> for aya::programs::uprobe::UProbeLinkId where U: core::convert::From<T>
  7122. pub fn aya::programs::uprobe::UProbeLinkId::into(self) -> U
  7123. impl<T, U> core::convert::TryFrom<U> for aya::programs::uprobe::UProbeLinkId where U: core::convert::Into<T>
  7124. pub type aya::programs::uprobe::UProbeLinkId::Error = core::convert::Infallible
  7125. pub fn aya::programs::uprobe::UProbeLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7126. impl<T, U> core::convert::TryInto<U> for aya::programs::uprobe::UProbeLinkId where U: core::convert::TryFrom<T>
  7127. pub type aya::programs::uprobe::UProbeLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  7128. pub fn aya::programs::uprobe::UProbeLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7129. impl<T> core::any::Any for aya::programs::uprobe::UProbeLinkId where T: 'static + ?core::marker::Sized
  7130. pub fn aya::programs::uprobe::UProbeLinkId::type_id(&self) -> core::any::TypeId
  7131. impl<T> core::borrow::Borrow<T> for aya::programs::uprobe::UProbeLinkId where T: ?core::marker::Sized
  7132. pub fn aya::programs::uprobe::UProbeLinkId::borrow(&self) -> &T
  7133. impl<T> core::borrow::BorrowMut<T> for aya::programs::uprobe::UProbeLinkId where T: ?core::marker::Sized
  7134. pub fn aya::programs::uprobe::UProbeLinkId::borrow_mut(&mut self) -> &mut T
  7135. impl<T> core::convert::From<T> for aya::programs::uprobe::UProbeLinkId
  7136. pub fn aya::programs::uprobe::UProbeLinkId::from(t: T) -> T
  7137. pub mod aya::programs::xdp
  7138. pub enum aya::programs::xdp::XdpError
  7139. pub aya::programs::xdp::XdpError::NetlinkError(aya::sys::netlink::NetlinkError)
  7140. impl core::convert::From<aya::programs::xdp::XdpError> for aya::programs::ProgramError
  7141. pub fn aya::programs::ProgramError::from(source: aya::programs::xdp::XdpError) -> Self
  7142. impl core::error::Error for aya::programs::xdp::XdpError
  7143. pub fn aya::programs::xdp::XdpError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  7144. impl core::fmt::Debug for aya::programs::xdp::XdpError
  7145. pub fn aya::programs::xdp::XdpError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7146. impl core::fmt::Display for aya::programs::xdp::XdpError
  7147. pub fn aya::programs::xdp::XdpError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7148. impl core::marker::Freeze for aya::programs::xdp::XdpError
  7149. impl core::marker::Send for aya::programs::xdp::XdpError
  7150. impl core::marker::Sync for aya::programs::xdp::XdpError
  7151. impl core::marker::Unpin for aya::programs::xdp::XdpError
  7152. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::xdp::XdpError
  7153. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::xdp::XdpError
  7154. impl<T, U> core::convert::Into<U> for aya::programs::xdp::XdpError where U: core::convert::From<T>
  7155. pub fn aya::programs::xdp::XdpError::into(self) -> U
  7156. impl<T, U> core::convert::TryFrom<U> for aya::programs::xdp::XdpError where U: core::convert::Into<T>
  7157. pub type aya::programs::xdp::XdpError::Error = core::convert::Infallible
  7158. pub fn aya::programs::xdp::XdpError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7159. impl<T, U> core::convert::TryInto<U> for aya::programs::xdp::XdpError where U: core::convert::TryFrom<T>
  7160. pub type aya::programs::xdp::XdpError::Error = <U as core::convert::TryFrom<T>>::Error
  7161. pub fn aya::programs::xdp::XdpError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7162. impl<T> alloc::string::ToString for aya::programs::xdp::XdpError where T: core::fmt::Display + ?core::marker::Sized
  7163. pub fn aya::programs::xdp::XdpError::to_string(&self) -> alloc::string::String
  7164. impl<T> core::any::Any for aya::programs::xdp::XdpError where T: 'static + ?core::marker::Sized
  7165. pub fn aya::programs::xdp::XdpError::type_id(&self) -> core::any::TypeId
  7166. impl<T> core::borrow::Borrow<T> for aya::programs::xdp::XdpError where T: ?core::marker::Sized
  7167. pub fn aya::programs::xdp::XdpError::borrow(&self) -> &T
  7168. impl<T> core::borrow::BorrowMut<T> for aya::programs::xdp::XdpError where T: ?core::marker::Sized
  7169. pub fn aya::programs::xdp::XdpError::borrow_mut(&mut self) -> &mut T
  7170. impl<T> core::convert::From<T> for aya::programs::xdp::XdpError
  7171. pub fn aya::programs::xdp::XdpError::from(t: T) -> T
  7172. pub struct aya::programs::xdp::Xdp
  7173. impl aya::programs::xdp::Xdp
  7174. pub const aya::programs::xdp::Xdp::PROGRAM_TYPE: aya::programs::ProgramType
  7175. 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>
  7176. 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>
  7177. 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>
  7178. 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>
  7179. pub fn aya::programs::xdp::Xdp::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  7180. impl aya::programs::xdp::Xdp
  7181. pub fn aya::programs::xdp::Xdp::detach(&mut self, link_id: aya::programs::xdp::XdpLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  7182. 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>
  7183. impl aya::programs::xdp::Xdp
  7184. pub fn aya::programs::xdp::Xdp::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  7185. impl aya::programs::xdp::Xdp
  7186. pub fn aya::programs::xdp::Xdp::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>, attach_type: aya_obj::programs::xdp::XdpAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  7187. impl aya::programs::xdp::Xdp
  7188. pub fn aya::programs::xdp::Xdp::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  7189. impl aya::programs::xdp::Xdp
  7190. pub fn aya::programs::xdp::Xdp::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  7191. pub fn aya::programs::xdp::Xdp::unpin(self) -> core::result::Result<(), std::io::error::Error>
  7192. impl aya::programs::xdp::Xdp
  7193. pub fn aya::programs::xdp::Xdp::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  7194. impl core::fmt::Debug for aya::programs::xdp::Xdp
  7195. pub fn aya::programs::xdp::Xdp::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7196. impl core::ops::drop::Drop for aya::programs::xdp::Xdp
  7197. pub fn aya::programs::xdp::Xdp::drop(&mut self)
  7198. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::xdp::Xdp
  7199. pub type &'a aya::programs::xdp::Xdp::Error = aya::programs::ProgramError
  7200. 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>
  7201. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::xdp::Xdp
  7202. pub type &'a mut aya::programs::xdp::Xdp::Error = aya::programs::ProgramError
  7203. 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>
  7204. impl core::marker::Freeze for aya::programs::xdp::Xdp
  7205. impl core::marker::Send for aya::programs::xdp::Xdp
  7206. impl core::marker::Sync for aya::programs::xdp::Xdp
  7207. impl core::marker::Unpin for aya::programs::xdp::Xdp
  7208. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::xdp::Xdp
  7209. impl core::panic::unwind_safe::UnwindSafe for aya::programs::xdp::Xdp
  7210. impl<T, U> core::convert::Into<U> for aya::programs::xdp::Xdp where U: core::convert::From<T>
  7211. pub fn aya::programs::xdp::Xdp::into(self) -> U
  7212. impl<T, U> core::convert::TryFrom<U> for aya::programs::xdp::Xdp where U: core::convert::Into<T>
  7213. pub type aya::programs::xdp::Xdp::Error = core::convert::Infallible
  7214. pub fn aya::programs::xdp::Xdp::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7215. impl<T, U> core::convert::TryInto<U> for aya::programs::xdp::Xdp where U: core::convert::TryFrom<T>
  7216. pub type aya::programs::xdp::Xdp::Error = <U as core::convert::TryFrom<T>>::Error
  7217. pub fn aya::programs::xdp::Xdp::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7218. impl<T> core::any::Any for aya::programs::xdp::Xdp where T: 'static + ?core::marker::Sized
  7219. pub fn aya::programs::xdp::Xdp::type_id(&self) -> core::any::TypeId
  7220. impl<T> core::borrow::Borrow<T> for aya::programs::xdp::Xdp where T: ?core::marker::Sized
  7221. pub fn aya::programs::xdp::Xdp::borrow(&self) -> &T
  7222. impl<T> core::borrow::BorrowMut<T> for aya::programs::xdp::Xdp where T: ?core::marker::Sized
  7223. pub fn aya::programs::xdp::Xdp::borrow_mut(&mut self) -> &mut T
  7224. impl<T> core::convert::From<T> for aya::programs::xdp::Xdp
  7225. pub fn aya::programs::xdp::Xdp::from(t: T) -> T
  7226. pub struct aya::programs::xdp::XdpFlags(_)
  7227. impl aya::programs::xdp::XdpFlags
  7228. pub const aya::programs::xdp::XdpFlags::DRV_MODE: Self
  7229. pub const aya::programs::xdp::XdpFlags::HW_MODE: Self
  7230. pub const aya::programs::xdp::XdpFlags::REPLACE: Self
  7231. pub const aya::programs::xdp::XdpFlags::SKB_MODE: Self
  7232. pub const aya::programs::xdp::XdpFlags::UPDATE_IF_NOEXIST: Self
  7233. impl aya::programs::xdp::XdpFlags
  7234. pub const fn aya::programs::xdp::XdpFlags::all() -> Self
  7235. pub const fn aya::programs::xdp::XdpFlags::bits(&self) -> u32
  7236. pub const fn aya::programs::xdp::XdpFlags::complement(self) -> Self
  7237. pub const fn aya::programs::xdp::XdpFlags::contains(&self, other: Self) -> bool
  7238. pub const fn aya::programs::xdp::XdpFlags::difference(self, other: Self) -> Self
  7239. pub const fn aya::programs::xdp::XdpFlags::empty() -> Self
  7240. pub const fn aya::programs::xdp::XdpFlags::from_bits(bits: u32) -> core::option::Option<Self>
  7241. pub const fn aya::programs::xdp::XdpFlags::from_bits_retain(bits: u32) -> Self
  7242. pub const fn aya::programs::xdp::XdpFlags::from_bits_truncate(bits: u32) -> Self
  7243. pub fn aya::programs::xdp::XdpFlags::from_name(name: &str) -> core::option::Option<Self>
  7244. pub fn aya::programs::xdp::XdpFlags::insert(&mut self, other: Self)
  7245. pub const fn aya::programs::xdp::XdpFlags::intersection(self, other: Self) -> Self
  7246. pub const fn aya::programs::xdp::XdpFlags::intersects(&self, other: Self) -> bool
  7247. pub const fn aya::programs::xdp::XdpFlags::is_all(&self) -> bool
  7248. pub const fn aya::programs::xdp::XdpFlags::is_empty(&self) -> bool
  7249. pub fn aya::programs::xdp::XdpFlags::remove(&mut self, other: Self)
  7250. pub fn aya::programs::xdp::XdpFlags::set(&mut self, other: Self, value: bool)
  7251. pub const fn aya::programs::xdp::XdpFlags::symmetric_difference(self, other: Self) -> Self
  7252. pub fn aya::programs::xdp::XdpFlags::toggle(&mut self, other: Self)
  7253. pub const fn aya::programs::xdp::XdpFlags::union(self, other: Self) -> Self
  7254. impl aya::programs::xdp::XdpFlags
  7255. pub const fn aya::programs::xdp::XdpFlags::iter(&self) -> bitflags::iter::Iter<aya::programs::xdp::XdpFlags>
  7256. pub const fn aya::programs::xdp::XdpFlags::iter_names(&self) -> bitflags::iter::IterNames<aya::programs::xdp::XdpFlags>
  7257. impl bitflags::traits::Flags for aya::programs::xdp::XdpFlags
  7258. pub type aya::programs::xdp::XdpFlags::Bits = u32
  7259. pub const aya::programs::xdp::XdpFlags::FLAGS: &'static [bitflags::traits::Flag<aya::programs::xdp::XdpFlags>]
  7260. pub fn aya::programs::xdp::XdpFlags::bits(&self) -> u32
  7261. pub fn aya::programs::xdp::XdpFlags::from_bits_retain(bits: u32) -> aya::programs::xdp::XdpFlags
  7262. impl bitflags::traits::PublicFlags for aya::programs::xdp::XdpFlags
  7263. pub type aya::programs::xdp::XdpFlags::Internal = InternalBitFlags
  7264. pub type aya::programs::xdp::XdpFlags::Primitive = u32
  7265. impl core::clone::Clone for aya::programs::xdp::XdpFlags
  7266. pub fn aya::programs::xdp::XdpFlags::clone(&self) -> aya::programs::xdp::XdpFlags
  7267. impl core::default::Default for aya::programs::xdp::XdpFlags
  7268. pub fn aya::programs::xdp::XdpFlags::default() -> aya::programs::xdp::XdpFlags
  7269. impl core::fmt::Binary for aya::programs::xdp::XdpFlags
  7270. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7271. impl core::fmt::Debug for aya::programs::xdp::XdpFlags
  7272. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7273. impl core::fmt::LowerHex for aya::programs::xdp::XdpFlags
  7274. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7275. impl core::fmt::Octal for aya::programs::xdp::XdpFlags
  7276. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7277. impl core::fmt::UpperHex for aya::programs::xdp::XdpFlags
  7278. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7279. impl core::iter::traits::collect::Extend<aya::programs::xdp::XdpFlags> for aya::programs::xdp::XdpFlags
  7280. pub fn aya::programs::xdp::XdpFlags::extend<T: core::iter::traits::collect::IntoIterator<Item = Self>>(&mut self, iterator: T)
  7281. impl core::iter::traits::collect::FromIterator<aya::programs::xdp::XdpFlags> for aya::programs::xdp::XdpFlags
  7282. pub fn aya::programs::xdp::XdpFlags::from_iter<T: core::iter::traits::collect::IntoIterator<Item = Self>>(iterator: T) -> Self
  7283. impl core::iter::traits::collect::IntoIterator for aya::programs::xdp::XdpFlags
  7284. pub type aya::programs::xdp::XdpFlags::IntoIter = bitflags::iter::Iter<aya::programs::xdp::XdpFlags>
  7285. pub type aya::programs::xdp::XdpFlags::Item = aya::programs::xdp::XdpFlags
  7286. pub fn aya::programs::xdp::XdpFlags::into_iter(self) -> Self::IntoIter
  7287. impl core::marker::Copy for aya::programs::xdp::XdpFlags
  7288. impl core::ops::arith::Sub for aya::programs::xdp::XdpFlags
  7289. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  7290. pub fn aya::programs::xdp::XdpFlags::sub(self, other: Self) -> Self
  7291. impl core::ops::arith::SubAssign for aya::programs::xdp::XdpFlags
  7292. pub fn aya::programs::xdp::XdpFlags::sub_assign(&mut self, other: Self)
  7293. impl core::ops::bit::BitAnd for aya::programs::xdp::XdpFlags
  7294. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  7295. pub fn aya::programs::xdp::XdpFlags::bitand(self, other: Self) -> Self
  7296. impl core::ops::bit::BitAndAssign for aya::programs::xdp::XdpFlags
  7297. pub fn aya::programs::xdp::XdpFlags::bitand_assign(&mut self, other: Self)
  7298. impl core::ops::bit::BitOr for aya::programs::xdp::XdpFlags
  7299. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  7300. pub fn aya::programs::xdp::XdpFlags::bitor(self, other: aya::programs::xdp::XdpFlags) -> Self
  7301. impl core::ops::bit::BitOrAssign for aya::programs::xdp::XdpFlags
  7302. pub fn aya::programs::xdp::XdpFlags::bitor_assign(&mut self, other: Self)
  7303. impl core::ops::bit::BitXor for aya::programs::xdp::XdpFlags
  7304. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  7305. pub fn aya::programs::xdp::XdpFlags::bitxor(self, other: Self) -> Self
  7306. impl core::ops::bit::BitXorAssign for aya::programs::xdp::XdpFlags
  7307. pub fn aya::programs::xdp::XdpFlags::bitxor_assign(&mut self, other: Self)
  7308. impl core::ops::bit::Not for aya::programs::xdp::XdpFlags
  7309. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  7310. pub fn aya::programs::xdp::XdpFlags::not(self) -> Self
  7311. impl core::marker::Freeze for aya::programs::xdp::XdpFlags
  7312. impl core::marker::Send for aya::programs::xdp::XdpFlags
  7313. impl core::marker::Sync for aya::programs::xdp::XdpFlags
  7314. impl core::marker::Unpin for aya::programs::xdp::XdpFlags
  7315. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::xdp::XdpFlags
  7316. impl core::panic::unwind_safe::UnwindSafe for aya::programs::xdp::XdpFlags
  7317. impl<T, U> core::convert::Into<U> for aya::programs::xdp::XdpFlags where U: core::convert::From<T>
  7318. pub fn aya::programs::xdp::XdpFlags::into(self) -> U
  7319. impl<T, U> core::convert::TryFrom<U> for aya::programs::xdp::XdpFlags where U: core::convert::Into<T>
  7320. pub type aya::programs::xdp::XdpFlags::Error = core::convert::Infallible
  7321. pub fn aya::programs::xdp::XdpFlags::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7322. impl<T, U> core::convert::TryInto<U> for aya::programs::xdp::XdpFlags where U: core::convert::TryFrom<T>
  7323. pub type aya::programs::xdp::XdpFlags::Error = <U as core::convert::TryFrom<T>>::Error
  7324. pub fn aya::programs::xdp::XdpFlags::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7325. impl<T> alloc::borrow::ToOwned for aya::programs::xdp::XdpFlags where T: core::clone::Clone
  7326. pub type aya::programs::xdp::XdpFlags::Owned = T
  7327. pub fn aya::programs::xdp::XdpFlags::clone_into(&self, target: &mut T)
  7328. pub fn aya::programs::xdp::XdpFlags::to_owned(&self) -> T
  7329. impl<T> core::any::Any for aya::programs::xdp::XdpFlags where T: 'static + ?core::marker::Sized
  7330. pub fn aya::programs::xdp::XdpFlags::type_id(&self) -> core::any::TypeId
  7331. impl<T> core::borrow::Borrow<T> for aya::programs::xdp::XdpFlags where T: ?core::marker::Sized
  7332. pub fn aya::programs::xdp::XdpFlags::borrow(&self) -> &T
  7333. impl<T> core::borrow::BorrowMut<T> for aya::programs::xdp::XdpFlags where T: ?core::marker::Sized
  7334. pub fn aya::programs::xdp::XdpFlags::borrow_mut(&mut self) -> &mut T
  7335. impl<T> core::clone::CloneToUninit for aya::programs::xdp::XdpFlags where T: core::clone::Clone
  7336. pub unsafe fn aya::programs::xdp::XdpFlags::clone_to_uninit(&self, dest: *mut u8)
  7337. impl<T> core::convert::From<T> for aya::programs::xdp::XdpFlags
  7338. pub fn aya::programs::xdp::XdpFlags::from(t: T) -> T
  7339. pub struct aya::programs::xdp::XdpLink(_)
  7340. impl aya::programs::links::Link for aya::programs::xdp::XdpLink
  7341. pub type aya::programs::xdp::XdpLink::Id = aya::programs::xdp::XdpLinkId
  7342. pub fn aya::programs::xdp::XdpLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  7343. pub fn aya::programs::xdp::XdpLink::id(&self) -> Self::Id
  7344. impl core::cmp::Eq for aya::programs::xdp::XdpLink
  7345. impl core::cmp::PartialEq for aya::programs::xdp::XdpLink
  7346. pub fn aya::programs::xdp::XdpLink::eq(&self, other: &Self) -> bool
  7347. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::xdp::XdpLink
  7348. pub type aya::programs::xdp::XdpLink::Error = aya::programs::links::LinkError
  7349. pub fn aya::programs::xdp::XdpLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  7350. impl core::convert::TryFrom<aya::programs::xdp::XdpLink> for aya::programs::links::FdLink
  7351. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  7352. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::xdp::XdpLink) -> core::result::Result<Self, Self::Error>
  7353. impl core::fmt::Debug for aya::programs::xdp::XdpLink
  7354. pub fn aya::programs::xdp::XdpLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7355. impl core::hash::Hash for aya::programs::xdp::XdpLink
  7356. pub fn aya::programs::xdp::XdpLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  7357. impl core::ops::drop::Drop for aya::programs::xdp::XdpLink
  7358. pub fn aya::programs::xdp::XdpLink::drop(&mut self)
  7359. impl equivalent::Equivalent<aya::programs::xdp::XdpLink> for aya::programs::xdp::XdpLinkId
  7360. pub fn aya::programs::xdp::XdpLinkId::equivalent(&self, key: &aya::programs::xdp::XdpLink) -> bool
  7361. impl core::marker::Freeze for aya::programs::xdp::XdpLink
  7362. impl core::marker::Send for aya::programs::xdp::XdpLink
  7363. impl core::marker::Sync for aya::programs::xdp::XdpLink
  7364. impl core::marker::Unpin for aya::programs::xdp::XdpLink
  7365. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::xdp::XdpLink
  7366. impl core::panic::unwind_safe::UnwindSafe for aya::programs::xdp::XdpLink
  7367. impl<Q, K> equivalent::Equivalent<K> for aya::programs::xdp::XdpLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  7368. pub fn aya::programs::xdp::XdpLink::equivalent(&self, key: &K) -> bool
  7369. impl<T, U> core::convert::Into<U> for aya::programs::xdp::XdpLink where U: core::convert::From<T>
  7370. pub fn aya::programs::xdp::XdpLink::into(self) -> U
  7371. impl<T, U> core::convert::TryFrom<U> for aya::programs::xdp::XdpLink where U: core::convert::Into<T>
  7372. pub type aya::programs::xdp::XdpLink::Error = core::convert::Infallible
  7373. pub fn aya::programs::xdp::XdpLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7374. impl<T, U> core::convert::TryInto<U> for aya::programs::xdp::XdpLink where U: core::convert::TryFrom<T>
  7375. pub type aya::programs::xdp::XdpLink::Error = <U as core::convert::TryFrom<T>>::Error
  7376. pub fn aya::programs::xdp::XdpLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7377. impl<T> core::any::Any for aya::programs::xdp::XdpLink where T: 'static + ?core::marker::Sized
  7378. pub fn aya::programs::xdp::XdpLink::type_id(&self) -> core::any::TypeId
  7379. impl<T> core::borrow::Borrow<T> for aya::programs::xdp::XdpLink where T: ?core::marker::Sized
  7380. pub fn aya::programs::xdp::XdpLink::borrow(&self) -> &T
  7381. impl<T> core::borrow::BorrowMut<T> for aya::programs::xdp::XdpLink where T: ?core::marker::Sized
  7382. pub fn aya::programs::xdp::XdpLink::borrow_mut(&mut self) -> &mut T
  7383. impl<T> core::convert::From<T> for aya::programs::xdp::XdpLink
  7384. pub fn aya::programs::xdp::XdpLink::from(t: T) -> T
  7385. pub struct aya::programs::xdp::XdpLinkId(_)
  7386. impl core::cmp::Eq for aya::programs::xdp::XdpLinkId
  7387. impl core::cmp::PartialEq for aya::programs::xdp::XdpLinkId
  7388. pub fn aya::programs::xdp::XdpLinkId::eq(&self, other: &aya::programs::xdp::XdpLinkId) -> bool
  7389. impl core::fmt::Debug for aya::programs::xdp::XdpLinkId
  7390. pub fn aya::programs::xdp::XdpLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7391. impl core::hash::Hash for aya::programs::xdp::XdpLinkId
  7392. pub fn aya::programs::xdp::XdpLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  7393. impl core::marker::StructuralPartialEq for aya::programs::xdp::XdpLinkId
  7394. impl equivalent::Equivalent<aya::programs::xdp::XdpLink> for aya::programs::xdp::XdpLinkId
  7395. pub fn aya::programs::xdp::XdpLinkId::equivalent(&self, key: &aya::programs::xdp::XdpLink) -> bool
  7396. impl core::marker::Freeze for aya::programs::xdp::XdpLinkId
  7397. impl core::marker::Send for aya::programs::xdp::XdpLinkId
  7398. impl core::marker::Sync for aya::programs::xdp::XdpLinkId
  7399. impl core::marker::Unpin for aya::programs::xdp::XdpLinkId
  7400. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::xdp::XdpLinkId
  7401. impl core::panic::unwind_safe::UnwindSafe for aya::programs::xdp::XdpLinkId
  7402. impl<Q, K> equivalent::Equivalent<K> for aya::programs::xdp::XdpLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  7403. pub fn aya::programs::xdp::XdpLinkId::equivalent(&self, key: &K) -> bool
  7404. impl<T, U> core::convert::Into<U> for aya::programs::xdp::XdpLinkId where U: core::convert::From<T>
  7405. pub fn aya::programs::xdp::XdpLinkId::into(self) -> U
  7406. impl<T, U> core::convert::TryFrom<U> for aya::programs::xdp::XdpLinkId where U: core::convert::Into<T>
  7407. pub type aya::programs::xdp::XdpLinkId::Error = core::convert::Infallible
  7408. pub fn aya::programs::xdp::XdpLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7409. impl<T, U> core::convert::TryInto<U> for aya::programs::xdp::XdpLinkId where U: core::convert::TryFrom<T>
  7410. pub type aya::programs::xdp::XdpLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  7411. pub fn aya::programs::xdp::XdpLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7412. impl<T> core::any::Any for aya::programs::xdp::XdpLinkId where T: 'static + ?core::marker::Sized
  7413. pub fn aya::programs::xdp::XdpLinkId::type_id(&self) -> core::any::TypeId
  7414. impl<T> core::borrow::Borrow<T> for aya::programs::xdp::XdpLinkId where T: ?core::marker::Sized
  7415. pub fn aya::programs::xdp::XdpLinkId::borrow(&self) -> &T
  7416. impl<T> core::borrow::BorrowMut<T> for aya::programs::xdp::XdpLinkId where T: ?core::marker::Sized
  7417. pub fn aya::programs::xdp::XdpLinkId::borrow_mut(&mut self) -> &mut T
  7418. impl<T> core::convert::From<T> for aya::programs::xdp::XdpLinkId
  7419. pub fn aya::programs::xdp::XdpLinkId::from(t: T) -> T
  7420. pub enum aya::programs::CgroupAttachMode
  7421. pub aya::programs::CgroupAttachMode::AllowMultiple
  7422. pub aya::programs::CgroupAttachMode::AllowOverride
  7423. pub aya::programs::CgroupAttachMode::Single
  7424. impl core::clone::Clone for aya::programs::links::CgroupAttachMode
  7425. pub fn aya::programs::links::CgroupAttachMode::clone(&self) -> aya::programs::links::CgroupAttachMode
  7426. impl core::convert::From<aya::programs::links::CgroupAttachMode> for u32
  7427. pub fn u32::from(mode: aya::programs::links::CgroupAttachMode) -> Self
  7428. impl core::default::Default for aya::programs::links::CgroupAttachMode
  7429. pub fn aya::programs::links::CgroupAttachMode::default() -> aya::programs::links::CgroupAttachMode
  7430. impl core::fmt::Debug for aya::programs::links::CgroupAttachMode
  7431. pub fn aya::programs::links::CgroupAttachMode::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7432. impl core::marker::Copy for aya::programs::links::CgroupAttachMode
  7433. impl core::marker::Freeze for aya::programs::links::CgroupAttachMode
  7434. impl core::marker::Send for aya::programs::links::CgroupAttachMode
  7435. impl core::marker::Sync for aya::programs::links::CgroupAttachMode
  7436. impl core::marker::Unpin for aya::programs::links::CgroupAttachMode
  7437. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::CgroupAttachMode
  7438. impl core::panic::unwind_safe::UnwindSafe for aya::programs::links::CgroupAttachMode
  7439. impl<T, U> core::convert::Into<U> for aya::programs::links::CgroupAttachMode where U: core::convert::From<T>
  7440. pub fn aya::programs::links::CgroupAttachMode::into(self) -> U
  7441. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::CgroupAttachMode where U: core::convert::Into<T>
  7442. pub type aya::programs::links::CgroupAttachMode::Error = core::convert::Infallible
  7443. pub fn aya::programs::links::CgroupAttachMode::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7444. impl<T, U> core::convert::TryInto<U> for aya::programs::links::CgroupAttachMode where U: core::convert::TryFrom<T>
  7445. pub type aya::programs::links::CgroupAttachMode::Error = <U as core::convert::TryFrom<T>>::Error
  7446. pub fn aya::programs::links::CgroupAttachMode::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7447. impl<T> alloc::borrow::ToOwned for aya::programs::links::CgroupAttachMode where T: core::clone::Clone
  7448. pub type aya::programs::links::CgroupAttachMode::Owned = T
  7449. pub fn aya::programs::links::CgroupAttachMode::clone_into(&self, target: &mut T)
  7450. pub fn aya::programs::links::CgroupAttachMode::to_owned(&self) -> T
  7451. impl<T> core::any::Any for aya::programs::links::CgroupAttachMode where T: 'static + ?core::marker::Sized
  7452. pub fn aya::programs::links::CgroupAttachMode::type_id(&self) -> core::any::TypeId
  7453. impl<T> core::borrow::Borrow<T> for aya::programs::links::CgroupAttachMode where T: ?core::marker::Sized
  7454. pub fn aya::programs::links::CgroupAttachMode::borrow(&self) -> &T
  7455. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::CgroupAttachMode where T: ?core::marker::Sized
  7456. pub fn aya::programs::links::CgroupAttachMode::borrow_mut(&mut self) -> &mut T
  7457. impl<T> core::clone::CloneToUninit for aya::programs::links::CgroupAttachMode where T: core::clone::Clone
  7458. pub unsafe fn aya::programs::links::CgroupAttachMode::clone_to_uninit(&self, dest: *mut u8)
  7459. impl<T> core::convert::From<T> for aya::programs::links::CgroupAttachMode
  7460. pub fn aya::programs::links::CgroupAttachMode::from(t: T) -> T
  7461. pub enum aya::programs::CgroupSkbAttachType
  7462. pub aya::programs::CgroupSkbAttachType::Egress
  7463. pub aya::programs::CgroupSkbAttachType::Ingress
  7464. impl core::clone::Clone for aya::programs::cgroup_skb::CgroupSkbAttachType
  7465. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::clone(&self) -> aya::programs::cgroup_skb::CgroupSkbAttachType
  7466. impl core::fmt::Debug for aya::programs::cgroup_skb::CgroupSkbAttachType
  7467. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7468. impl core::marker::Copy for aya::programs::cgroup_skb::CgroupSkbAttachType
  7469. impl core::marker::Freeze for aya::programs::cgroup_skb::CgroupSkbAttachType
  7470. impl core::marker::Send for aya::programs::cgroup_skb::CgroupSkbAttachType
  7471. impl core::marker::Sync for aya::programs::cgroup_skb::CgroupSkbAttachType
  7472. impl core::marker::Unpin for aya::programs::cgroup_skb::CgroupSkbAttachType
  7473. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_skb::CgroupSkbAttachType
  7474. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_skb::CgroupSkbAttachType
  7475. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_skb::CgroupSkbAttachType where U: core::convert::From<T>
  7476. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::into(self) -> U
  7477. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_skb::CgroupSkbAttachType where U: core::convert::Into<T>
  7478. pub type aya::programs::cgroup_skb::CgroupSkbAttachType::Error = core::convert::Infallible
  7479. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7480. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_skb::CgroupSkbAttachType where U: core::convert::TryFrom<T>
  7481. pub type aya::programs::cgroup_skb::CgroupSkbAttachType::Error = <U as core::convert::TryFrom<T>>::Error
  7482. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7483. impl<T> alloc::borrow::ToOwned for aya::programs::cgroup_skb::CgroupSkbAttachType where T: core::clone::Clone
  7484. pub type aya::programs::cgroup_skb::CgroupSkbAttachType::Owned = T
  7485. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::clone_into(&self, target: &mut T)
  7486. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::to_owned(&self) -> T
  7487. impl<T> core::any::Any for aya::programs::cgroup_skb::CgroupSkbAttachType where T: 'static + ?core::marker::Sized
  7488. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::type_id(&self) -> core::any::TypeId
  7489. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_skb::CgroupSkbAttachType where T: ?core::marker::Sized
  7490. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::borrow(&self) -> &T
  7491. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_skb::CgroupSkbAttachType where T: ?core::marker::Sized
  7492. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::borrow_mut(&mut self) -> &mut T
  7493. impl<T> core::clone::CloneToUninit for aya::programs::cgroup_skb::CgroupSkbAttachType where T: core::clone::Clone
  7494. pub unsafe fn aya::programs::cgroup_skb::CgroupSkbAttachType::clone_to_uninit(&self, dest: *mut u8)
  7495. impl<T> core::convert::From<T> for aya::programs::cgroup_skb::CgroupSkbAttachType
  7496. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::from(t: T) -> T
  7497. pub enum aya::programs::ExtensionError
  7498. pub aya::programs::ExtensionError::NoBTF
  7499. impl core::convert::From<aya::programs::extension::ExtensionError> for aya::programs::ProgramError
  7500. pub fn aya::programs::ProgramError::from(source: aya::programs::extension::ExtensionError) -> Self
  7501. impl core::error::Error for aya::programs::extension::ExtensionError
  7502. impl core::fmt::Debug for aya::programs::extension::ExtensionError
  7503. pub fn aya::programs::extension::ExtensionError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7504. impl core::fmt::Display for aya::programs::extension::ExtensionError
  7505. pub fn aya::programs::extension::ExtensionError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7506. impl core::marker::Freeze for aya::programs::extension::ExtensionError
  7507. impl core::marker::Send for aya::programs::extension::ExtensionError
  7508. impl core::marker::Sync for aya::programs::extension::ExtensionError
  7509. impl core::marker::Unpin for aya::programs::extension::ExtensionError
  7510. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::extension::ExtensionError
  7511. impl core::panic::unwind_safe::UnwindSafe for aya::programs::extension::ExtensionError
  7512. impl<T, U> core::convert::Into<U> for aya::programs::extension::ExtensionError where U: core::convert::From<T>
  7513. pub fn aya::programs::extension::ExtensionError::into(self) -> U
  7514. impl<T, U> core::convert::TryFrom<U> for aya::programs::extension::ExtensionError where U: core::convert::Into<T>
  7515. pub type aya::programs::extension::ExtensionError::Error = core::convert::Infallible
  7516. pub fn aya::programs::extension::ExtensionError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7517. impl<T, U> core::convert::TryInto<U> for aya::programs::extension::ExtensionError where U: core::convert::TryFrom<T>
  7518. pub type aya::programs::extension::ExtensionError::Error = <U as core::convert::TryFrom<T>>::Error
  7519. pub fn aya::programs::extension::ExtensionError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7520. impl<T> alloc::string::ToString for aya::programs::extension::ExtensionError where T: core::fmt::Display + ?core::marker::Sized
  7521. pub fn aya::programs::extension::ExtensionError::to_string(&self) -> alloc::string::String
  7522. impl<T> core::any::Any for aya::programs::extension::ExtensionError where T: 'static + ?core::marker::Sized
  7523. pub fn aya::programs::extension::ExtensionError::type_id(&self) -> core::any::TypeId
  7524. impl<T> core::borrow::Borrow<T> for aya::programs::extension::ExtensionError where T: ?core::marker::Sized
  7525. pub fn aya::programs::extension::ExtensionError::borrow(&self) -> &T
  7526. impl<T> core::borrow::BorrowMut<T> for aya::programs::extension::ExtensionError where T: ?core::marker::Sized
  7527. pub fn aya::programs::extension::ExtensionError::borrow_mut(&mut self) -> &mut T
  7528. impl<T> core::convert::From<T> for aya::programs::extension::ExtensionError
  7529. pub fn aya::programs::extension::ExtensionError::from(t: T) -> T
  7530. pub enum aya::programs::KProbeError
  7531. pub aya::programs::KProbeError::FileError
  7532. pub aya::programs::KProbeError::FileError::filename: std::path::PathBuf
  7533. pub aya::programs::KProbeError::FileError::io_error: std::io::error::Error
  7534. impl core::convert::From<aya::programs::kprobe::KProbeError> for aya::programs::ProgramError
  7535. pub fn aya::programs::ProgramError::from(source: aya::programs::kprobe::KProbeError) -> Self
  7536. impl core::error::Error for aya::programs::kprobe::KProbeError
  7537. pub fn aya::programs::kprobe::KProbeError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  7538. impl core::fmt::Debug for aya::programs::kprobe::KProbeError
  7539. pub fn aya::programs::kprobe::KProbeError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7540. impl core::fmt::Display for aya::programs::kprobe::KProbeError
  7541. pub fn aya::programs::kprobe::KProbeError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7542. impl core::marker::Freeze for aya::programs::kprobe::KProbeError
  7543. impl core::marker::Send for aya::programs::kprobe::KProbeError
  7544. impl core::marker::Sync for aya::programs::kprobe::KProbeError
  7545. impl core::marker::Unpin for aya::programs::kprobe::KProbeError
  7546. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::kprobe::KProbeError
  7547. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::kprobe::KProbeError
  7548. impl<T, U> core::convert::Into<U> for aya::programs::kprobe::KProbeError where U: core::convert::From<T>
  7549. pub fn aya::programs::kprobe::KProbeError::into(self) -> U
  7550. impl<T, U> core::convert::TryFrom<U> for aya::programs::kprobe::KProbeError where U: core::convert::Into<T>
  7551. pub type aya::programs::kprobe::KProbeError::Error = core::convert::Infallible
  7552. pub fn aya::programs::kprobe::KProbeError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7553. impl<T, U> core::convert::TryInto<U> for aya::programs::kprobe::KProbeError where U: core::convert::TryFrom<T>
  7554. pub type aya::programs::kprobe::KProbeError::Error = <U as core::convert::TryFrom<T>>::Error
  7555. pub fn aya::programs::kprobe::KProbeError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7556. impl<T> alloc::string::ToString for aya::programs::kprobe::KProbeError where T: core::fmt::Display + ?core::marker::Sized
  7557. pub fn aya::programs::kprobe::KProbeError::to_string(&self) -> alloc::string::String
  7558. impl<T> core::any::Any for aya::programs::kprobe::KProbeError where T: 'static + ?core::marker::Sized
  7559. pub fn aya::programs::kprobe::KProbeError::type_id(&self) -> core::any::TypeId
  7560. impl<T> core::borrow::Borrow<T> for aya::programs::kprobe::KProbeError where T: ?core::marker::Sized
  7561. pub fn aya::programs::kprobe::KProbeError::borrow(&self) -> &T
  7562. impl<T> core::borrow::BorrowMut<T> for aya::programs::kprobe::KProbeError where T: ?core::marker::Sized
  7563. pub fn aya::programs::kprobe::KProbeError::borrow_mut(&mut self) -> &mut T
  7564. impl<T> core::convert::From<T> for aya::programs::kprobe::KProbeError
  7565. pub fn aya::programs::kprobe::KProbeError::from(t: T) -> T
  7566. pub enum aya::programs::PerfEventScope
  7567. pub aya::programs::PerfEventScope::AllProcessesOneCpu
  7568. pub aya::programs::PerfEventScope::AllProcessesOneCpu::cpu: u32
  7569. pub aya::programs::PerfEventScope::CallingProcessAnyCpu
  7570. pub aya::programs::PerfEventScope::CallingProcessOneCpu
  7571. pub aya::programs::PerfEventScope::CallingProcessOneCpu::cpu: u32
  7572. pub aya::programs::PerfEventScope::OneProcessAnyCpu
  7573. pub aya::programs::PerfEventScope::OneProcessAnyCpu::pid: u32
  7574. pub aya::programs::PerfEventScope::OneProcessOneCpu
  7575. pub aya::programs::PerfEventScope::OneProcessOneCpu::cpu: u32
  7576. pub aya::programs::PerfEventScope::OneProcessOneCpu::pid: u32
  7577. impl core::clone::Clone for aya::programs::perf_event::PerfEventScope
  7578. pub fn aya::programs::perf_event::PerfEventScope::clone(&self) -> aya::programs::perf_event::PerfEventScope
  7579. impl core::fmt::Debug for aya::programs::perf_event::PerfEventScope
  7580. pub fn aya::programs::perf_event::PerfEventScope::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7581. impl core::marker::Freeze for aya::programs::perf_event::PerfEventScope
  7582. impl core::marker::Send for aya::programs::perf_event::PerfEventScope
  7583. impl core::marker::Sync for aya::programs::perf_event::PerfEventScope
  7584. impl core::marker::Unpin for aya::programs::perf_event::PerfEventScope
  7585. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::PerfEventScope
  7586. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::PerfEventScope
  7587. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::PerfEventScope where U: core::convert::From<T>
  7588. pub fn aya::programs::perf_event::PerfEventScope::into(self) -> U
  7589. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::PerfEventScope where U: core::convert::Into<T>
  7590. pub type aya::programs::perf_event::PerfEventScope::Error = core::convert::Infallible
  7591. pub fn aya::programs::perf_event::PerfEventScope::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7592. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_event::PerfEventScope where U: core::convert::TryFrom<T>
  7593. pub type aya::programs::perf_event::PerfEventScope::Error = <U as core::convert::TryFrom<T>>::Error
  7594. pub fn aya::programs::perf_event::PerfEventScope::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7595. impl<T> alloc::borrow::ToOwned for aya::programs::perf_event::PerfEventScope where T: core::clone::Clone
  7596. pub type aya::programs::perf_event::PerfEventScope::Owned = T
  7597. pub fn aya::programs::perf_event::PerfEventScope::clone_into(&self, target: &mut T)
  7598. pub fn aya::programs::perf_event::PerfEventScope::to_owned(&self) -> T
  7599. impl<T> core::any::Any for aya::programs::perf_event::PerfEventScope where T: 'static + ?core::marker::Sized
  7600. pub fn aya::programs::perf_event::PerfEventScope::type_id(&self) -> core::any::TypeId
  7601. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::PerfEventScope where T: ?core::marker::Sized
  7602. pub fn aya::programs::perf_event::PerfEventScope::borrow(&self) -> &T
  7603. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::PerfEventScope where T: ?core::marker::Sized
  7604. pub fn aya::programs::perf_event::PerfEventScope::borrow_mut(&mut self) -> &mut T
  7605. impl<T> core::clone::CloneToUninit for aya::programs::perf_event::PerfEventScope where T: core::clone::Clone
  7606. pub unsafe fn aya::programs::perf_event::PerfEventScope::clone_to_uninit(&self, dest: *mut u8)
  7607. impl<T> core::convert::From<T> for aya::programs::perf_event::PerfEventScope
  7608. pub fn aya::programs::perf_event::PerfEventScope::from(t: T) -> T
  7609. #[repr(u32)] pub enum aya::programs::PerfTypeId
  7610. pub aya::programs::PerfTypeId::Breakpoint = 5
  7611. pub aya::programs::PerfTypeId::Hardware = 0
  7612. pub aya::programs::PerfTypeId::HwCache = 3
  7613. pub aya::programs::PerfTypeId::Raw = 4
  7614. pub aya::programs::PerfTypeId::Software = 1
  7615. pub aya::programs::PerfTypeId::TracePoint = 2
  7616. impl core::clone::Clone for aya::programs::perf_event::PerfTypeId
  7617. pub fn aya::programs::perf_event::PerfTypeId::clone(&self) -> aya::programs::perf_event::PerfTypeId
  7618. impl core::fmt::Debug for aya::programs::perf_event::PerfTypeId
  7619. pub fn aya::programs::perf_event::PerfTypeId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7620. impl core::marker::Freeze for aya::programs::perf_event::PerfTypeId
  7621. impl core::marker::Send for aya::programs::perf_event::PerfTypeId
  7622. impl core::marker::Sync for aya::programs::perf_event::PerfTypeId
  7623. impl core::marker::Unpin for aya::programs::perf_event::PerfTypeId
  7624. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::PerfTypeId
  7625. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::PerfTypeId
  7626. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::PerfTypeId where U: core::convert::From<T>
  7627. pub fn aya::programs::perf_event::PerfTypeId::into(self) -> U
  7628. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::PerfTypeId where U: core::convert::Into<T>
  7629. pub type aya::programs::perf_event::PerfTypeId::Error = core::convert::Infallible
  7630. pub fn aya::programs::perf_event::PerfTypeId::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::programs::perf_event::PerfTypeId where U: core::convert::TryFrom<T>
  7632. pub type aya::programs::perf_event::PerfTypeId::Error = <U as core::convert::TryFrom<T>>::Error
  7633. pub fn aya::programs::perf_event::PerfTypeId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7634. impl<T> alloc::borrow::ToOwned for aya::programs::perf_event::PerfTypeId where T: core::clone::Clone
  7635. pub type aya::programs::perf_event::PerfTypeId::Owned = T
  7636. pub fn aya::programs::perf_event::PerfTypeId::clone_into(&self, target: &mut T)
  7637. pub fn aya::programs::perf_event::PerfTypeId::to_owned(&self) -> T
  7638. impl<T> core::any::Any for aya::programs::perf_event::PerfTypeId where T: 'static + ?core::marker::Sized
  7639. pub fn aya::programs::perf_event::PerfTypeId::type_id(&self) -> core::any::TypeId
  7640. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::PerfTypeId where T: ?core::marker::Sized
  7641. pub fn aya::programs::perf_event::PerfTypeId::borrow(&self) -> &T
  7642. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::PerfTypeId where T: ?core::marker::Sized
  7643. pub fn aya::programs::perf_event::PerfTypeId::borrow_mut(&mut self) -> &mut T
  7644. impl<T> core::clone::CloneToUninit for aya::programs::perf_event::PerfTypeId where T: core::clone::Clone
  7645. pub unsafe fn aya::programs::perf_event::PerfTypeId::clone_to_uninit(&self, dest: *mut u8)
  7646. impl<T> core::convert::From<T> for aya::programs::perf_event::PerfTypeId
  7647. pub fn aya::programs::perf_event::PerfTypeId::from(t: T) -> T
  7648. pub enum aya::programs::ProbeKind
  7649. pub aya::programs::ProbeKind::KProbe
  7650. pub aya::programs::ProbeKind::KRetProbe
  7651. pub aya::programs::ProbeKind::UProbe
  7652. pub aya::programs::ProbeKind::URetProbe
  7653. impl core::clone::Clone for aya::programs::ProbeKind
  7654. pub fn aya::programs::ProbeKind::clone(&self) -> aya::programs::ProbeKind
  7655. impl core::fmt::Debug for aya::programs::ProbeKind
  7656. pub fn aya::programs::ProbeKind::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7657. impl core::marker::Copy for aya::programs::ProbeKind
  7658. impl core::marker::Freeze for aya::programs::ProbeKind
  7659. impl core::marker::Send for aya::programs::ProbeKind
  7660. impl core::marker::Sync for aya::programs::ProbeKind
  7661. impl core::marker::Unpin for aya::programs::ProbeKind
  7662. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::ProbeKind
  7663. impl core::panic::unwind_safe::UnwindSafe for aya::programs::ProbeKind
  7664. impl<T, U> core::convert::Into<U> for aya::programs::ProbeKind where U: core::convert::From<T>
  7665. pub fn aya::programs::ProbeKind::into(self) -> U
  7666. impl<T, U> core::convert::TryFrom<U> for aya::programs::ProbeKind where U: core::convert::Into<T>
  7667. pub type aya::programs::ProbeKind::Error = core::convert::Infallible
  7668. pub fn aya::programs::ProbeKind::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7669. impl<T, U> core::convert::TryInto<U> for aya::programs::ProbeKind where U: core::convert::TryFrom<T>
  7670. pub type aya::programs::ProbeKind::Error = <U as core::convert::TryFrom<T>>::Error
  7671. pub fn aya::programs::ProbeKind::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7672. impl<T> alloc::borrow::ToOwned for aya::programs::ProbeKind where T: core::clone::Clone
  7673. pub type aya::programs::ProbeKind::Owned = T
  7674. pub fn aya::programs::ProbeKind::clone_into(&self, target: &mut T)
  7675. pub fn aya::programs::ProbeKind::to_owned(&self) -> T
  7676. impl<T> core::any::Any for aya::programs::ProbeKind where T: 'static + ?core::marker::Sized
  7677. pub fn aya::programs::ProbeKind::type_id(&self) -> core::any::TypeId
  7678. impl<T> core::borrow::Borrow<T> for aya::programs::ProbeKind where T: ?core::marker::Sized
  7679. pub fn aya::programs::ProbeKind::borrow(&self) -> &T
  7680. impl<T> core::borrow::BorrowMut<T> for aya::programs::ProbeKind where T: ?core::marker::Sized
  7681. pub fn aya::programs::ProbeKind::borrow_mut(&mut self) -> &mut T
  7682. impl<T> core::clone::CloneToUninit for aya::programs::ProbeKind where T: core::clone::Clone
  7683. pub unsafe fn aya::programs::ProbeKind::clone_to_uninit(&self, dest: *mut u8)
  7684. impl<T> core::convert::From<T> for aya::programs::ProbeKind
  7685. pub fn aya::programs::ProbeKind::from(t: T) -> T
  7686. pub enum aya::programs::Program
  7687. pub aya::programs::Program::BtfTracePoint(aya::programs::tp_btf::BtfTracePoint)
  7688. pub aya::programs::Program::CgroupDevice(aya::programs::cgroup_device::CgroupDevice)
  7689. pub aya::programs::Program::CgroupSkb(aya::programs::cgroup_skb::CgroupSkb)
  7690. pub aya::programs::Program::CgroupSock(aya::programs::cgroup_sock::CgroupSock)
  7691. pub aya::programs::Program::CgroupSockAddr(aya::programs::cgroup_sock_addr::CgroupSockAddr)
  7692. pub aya::programs::Program::CgroupSockopt(aya::programs::cgroup_sockopt::CgroupSockopt)
  7693. pub aya::programs::Program::CgroupSysctl(aya::programs::cgroup_sysctl::CgroupSysctl)
  7694. pub aya::programs::Program::Extension(aya::programs::extension::Extension)
  7695. pub aya::programs::Program::FEntry(aya::programs::fentry::FEntry)
  7696. pub aya::programs::Program::FExit(aya::programs::fexit::FExit)
  7697. pub aya::programs::Program::FlowDissector(aya::programs::flow_dissector::FlowDissector)
  7698. pub aya::programs::Program::Iter(aya::programs::iter::Iter)
  7699. pub aya::programs::Program::KProbe(aya::programs::kprobe::KProbe)
  7700. pub aya::programs::Program::LircMode2(aya::programs::lirc_mode2::LircMode2)
  7701. pub aya::programs::Program::Lsm(aya::programs::lsm::Lsm)
  7702. pub aya::programs::Program::PerfEvent(aya::programs::perf_event::PerfEvent)
  7703. pub aya::programs::Program::RawTracePoint(aya::programs::raw_trace_point::RawTracePoint)
  7704. pub aya::programs::Program::SchedClassifier(aya::programs::tc::SchedClassifier)
  7705. pub aya::programs::Program::SkLookup(aya::programs::sk_lookup::SkLookup)
  7706. pub aya::programs::Program::SkMsg(aya::programs::sk_msg::SkMsg)
  7707. pub aya::programs::Program::SkSkb(aya::programs::sk_skb::SkSkb)
  7708. pub aya::programs::Program::SockOps(aya::programs::sock_ops::SockOps)
  7709. pub aya::programs::Program::SocketFilter(aya::programs::socket_filter::SocketFilter)
  7710. pub aya::programs::Program::TracePoint(aya::programs::trace_point::TracePoint)
  7711. pub aya::programs::Program::UProbe(aya::programs::uprobe::UProbe)
  7712. pub aya::programs::Program::Xdp(aya::programs::xdp::Xdp)
  7713. impl aya::programs::Program
  7714. pub fn aya::programs::Program::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  7715. pub fn aya::programs::Program::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  7716. pub fn aya::programs::Program::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  7717. pub fn aya::programs::Program::prog_type(&self) -> aya::programs::ProgramType
  7718. pub fn aya::programs::Program::unload(self) -> core::result::Result<(), aya::programs::ProgramError>
  7719. impl core::fmt::Debug for aya::programs::Program
  7720. pub fn aya::programs::Program::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7721. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_device::CgroupDevice
  7722. pub type &'a aya::programs::cgroup_device::CgroupDevice::Error = aya::programs::ProgramError
  7723. 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>
  7724. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_skb::CgroupSkb
  7725. pub type &'a aya::programs::cgroup_skb::CgroupSkb::Error = aya::programs::ProgramError
  7726. 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>
  7727. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sock::CgroupSock
  7728. pub type &'a aya::programs::cgroup_sock::CgroupSock::Error = aya::programs::ProgramError
  7729. 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>
  7730. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sock_addr::CgroupSockAddr
  7731. pub type &'a aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = aya::programs::ProgramError
  7732. 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>
  7733. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sockopt::CgroupSockopt
  7734. pub type &'a aya::programs::cgroup_sockopt::CgroupSockopt::Error = aya::programs::ProgramError
  7735. 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>
  7736. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sysctl::CgroupSysctl
  7737. pub type &'a aya::programs::cgroup_sysctl::CgroupSysctl::Error = aya::programs::ProgramError
  7738. 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>
  7739. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::extension::Extension
  7740. pub type &'a aya::programs::extension::Extension::Error = aya::programs::ProgramError
  7741. 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>
  7742. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::fentry::FEntry
  7743. pub type &'a aya::programs::fentry::FEntry::Error = aya::programs::ProgramError
  7744. 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>
  7745. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::fexit::FExit
  7746. pub type &'a aya::programs::fexit::FExit::Error = aya::programs::ProgramError
  7747. 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>
  7748. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::flow_dissector::FlowDissector
  7749. pub type &'a aya::programs::flow_dissector::FlowDissector::Error = aya::programs::ProgramError
  7750. pub fn &'a aya::programs::flow_dissector::FlowDissector::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::flow_dissector::FlowDissector, aya::programs::ProgramError>
  7751. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::iter::Iter
  7752. pub type &'a aya::programs::iter::Iter::Error = aya::programs::ProgramError
  7753. pub fn &'a aya::programs::iter::Iter::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::iter::Iter, aya::programs::ProgramError>
  7754. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::kprobe::KProbe
  7755. pub type &'a aya::programs::kprobe::KProbe::Error = aya::programs::ProgramError
  7756. 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>
  7757. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::lirc_mode2::LircMode2
  7758. pub type &'a aya::programs::lirc_mode2::LircMode2::Error = aya::programs::ProgramError
  7759. 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>
  7760. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::lsm::Lsm
  7761. pub type &'a aya::programs::lsm::Lsm::Error = aya::programs::ProgramError
  7762. 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>
  7763. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::perf_event::PerfEvent
  7764. pub type &'a aya::programs::perf_event::PerfEvent::Error = aya::programs::ProgramError
  7765. 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>
  7766. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::raw_trace_point::RawTracePoint
  7767. pub type &'a aya::programs::raw_trace_point::RawTracePoint::Error = aya::programs::ProgramError
  7768. pub fn &'a aya::programs::raw_trace_point::RawTracePoint::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::raw_trace_point::RawTracePoint, aya::programs::ProgramError>
  7769. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::sk_lookup::SkLookup
  7770. pub type &'a aya::programs::sk_lookup::SkLookup::Error = aya::programs::ProgramError
  7771. pub fn &'a aya::programs::sk_lookup::SkLookup::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::sk_lookup::SkLookup, aya::programs::ProgramError>
  7772. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::sk_msg::SkMsg
  7773. pub type &'a aya::programs::sk_msg::SkMsg::Error = aya::programs::ProgramError
  7774. pub fn &'a aya::programs::sk_msg::SkMsg::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::sk_msg::SkMsg, aya::programs::ProgramError>
  7775. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::sk_skb::SkSkb
  7776. pub type &'a aya::programs::sk_skb::SkSkb::Error = aya::programs::ProgramError
  7777. pub fn &'a aya::programs::sk_skb::SkSkb::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::sk_skb::SkSkb, aya::programs::ProgramError>
  7778. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::sock_ops::SockOps
  7779. pub type &'a aya::programs::sock_ops::SockOps::Error = aya::programs::ProgramError
  7780. pub fn &'a aya::programs::sock_ops::SockOps::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::sock_ops::SockOps, aya::programs::ProgramError>
  7781. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::socket_filter::SocketFilter
  7782. pub type &'a aya::programs::socket_filter::SocketFilter::Error = aya::programs::ProgramError
  7783. pub fn &'a aya::programs::socket_filter::SocketFilter::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::socket_filter::SocketFilter, aya::programs::ProgramError>
  7784. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::tc::SchedClassifier
  7785. pub type &'a aya::programs::tc::SchedClassifier::Error = aya::programs::ProgramError
  7786. 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>
  7787. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::tp_btf::BtfTracePoint
  7788. pub type &'a aya::programs::tp_btf::BtfTracePoint::Error = aya::programs::ProgramError
  7789. 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>
  7790. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::trace_point::TracePoint
  7791. pub type &'a aya::programs::trace_point::TracePoint::Error = aya::programs::ProgramError
  7792. 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>
  7793. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::uprobe::UProbe
  7794. pub type &'a aya::programs::uprobe::UProbe::Error = aya::programs::ProgramError
  7795. 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>
  7796. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::xdp::Xdp
  7797. pub type &'a aya::programs::xdp::Xdp::Error = aya::programs::ProgramError
  7798. 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>
  7799. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_device::CgroupDevice
  7800. pub type &'a mut aya::programs::cgroup_device::CgroupDevice::Error = aya::programs::ProgramError
  7801. 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>
  7802. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_skb::CgroupSkb
  7803. pub type &'a mut aya::programs::cgroup_skb::CgroupSkb::Error = aya::programs::ProgramError
  7804. 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>
  7805. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sock::CgroupSock
  7806. pub type &'a mut aya::programs::cgroup_sock::CgroupSock::Error = aya::programs::ProgramError
  7807. 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>
  7808. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr
  7809. pub type &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = aya::programs::ProgramError
  7810. 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>
  7811. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sockopt::CgroupSockopt
  7812. pub type &'a mut aya::programs::cgroup_sockopt::CgroupSockopt::Error = aya::programs::ProgramError
  7813. 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>
  7814. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sysctl::CgroupSysctl
  7815. pub type &'a mut aya::programs::cgroup_sysctl::CgroupSysctl::Error = aya::programs::ProgramError
  7816. 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>
  7817. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::extension::Extension
  7818. pub type &'a mut aya::programs::extension::Extension::Error = aya::programs::ProgramError
  7819. 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>
  7820. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::fentry::FEntry
  7821. pub type &'a mut aya::programs::fentry::FEntry::Error = aya::programs::ProgramError
  7822. 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>
  7823. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::fexit::FExit
  7824. pub type &'a mut aya::programs::fexit::FExit::Error = aya::programs::ProgramError
  7825. 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>
  7826. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::flow_dissector::FlowDissector
  7827. pub type &'a mut aya::programs::flow_dissector::FlowDissector::Error = aya::programs::ProgramError
  7828. pub fn &'a mut aya::programs::flow_dissector::FlowDissector::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::flow_dissector::FlowDissector, aya::programs::ProgramError>
  7829. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::iter::Iter
  7830. pub type &'a mut aya::programs::iter::Iter::Error = aya::programs::ProgramError
  7831. pub fn &'a mut aya::programs::iter::Iter::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::iter::Iter, aya::programs::ProgramError>
  7832. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::kprobe::KProbe
  7833. pub type &'a mut aya::programs::kprobe::KProbe::Error = aya::programs::ProgramError
  7834. 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>
  7835. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::lirc_mode2::LircMode2
  7836. pub type &'a mut aya::programs::lirc_mode2::LircMode2::Error = aya::programs::ProgramError
  7837. 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>
  7838. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::lsm::Lsm
  7839. pub type &'a mut aya::programs::lsm::Lsm::Error = aya::programs::ProgramError
  7840. 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>
  7841. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::perf_event::PerfEvent
  7842. pub type &'a mut aya::programs::perf_event::PerfEvent::Error = aya::programs::ProgramError
  7843. 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>
  7844. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::raw_trace_point::RawTracePoint
  7845. pub type &'a mut aya::programs::raw_trace_point::RawTracePoint::Error = aya::programs::ProgramError
  7846. pub fn &'a mut aya::programs::raw_trace_point::RawTracePoint::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::raw_trace_point::RawTracePoint, aya::programs::ProgramError>
  7847. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::sk_lookup::SkLookup
  7848. pub type &'a mut aya::programs::sk_lookup::SkLookup::Error = aya::programs::ProgramError
  7849. pub fn &'a mut aya::programs::sk_lookup::SkLookup::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::sk_lookup::SkLookup, aya::programs::ProgramError>
  7850. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::sk_msg::SkMsg
  7851. pub type &'a mut aya::programs::sk_msg::SkMsg::Error = aya::programs::ProgramError
  7852. pub fn &'a mut aya::programs::sk_msg::SkMsg::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::sk_msg::SkMsg, aya::programs::ProgramError>
  7853. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::sk_skb::SkSkb
  7854. pub type &'a mut aya::programs::sk_skb::SkSkb::Error = aya::programs::ProgramError
  7855. pub fn &'a mut aya::programs::sk_skb::SkSkb::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::sk_skb::SkSkb, aya::programs::ProgramError>
  7856. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::sock_ops::SockOps
  7857. pub type &'a mut aya::programs::sock_ops::SockOps::Error = aya::programs::ProgramError
  7858. pub fn &'a mut aya::programs::sock_ops::SockOps::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::sock_ops::SockOps, aya::programs::ProgramError>
  7859. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::socket_filter::SocketFilter
  7860. pub type &'a mut aya::programs::socket_filter::SocketFilter::Error = aya::programs::ProgramError
  7861. pub fn &'a mut aya::programs::socket_filter::SocketFilter::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::socket_filter::SocketFilter, aya::programs::ProgramError>
  7862. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::tc::SchedClassifier
  7863. pub type &'a mut aya::programs::tc::SchedClassifier::Error = aya::programs::ProgramError
  7864. 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>
  7865. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::tp_btf::BtfTracePoint
  7866. pub type &'a mut aya::programs::tp_btf::BtfTracePoint::Error = aya::programs::ProgramError
  7867. 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>
  7868. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::trace_point::TracePoint
  7869. pub type &'a mut aya::programs::trace_point::TracePoint::Error = aya::programs::ProgramError
  7870. 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>
  7871. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::uprobe::UProbe
  7872. pub type &'a mut aya::programs::uprobe::UProbe::Error = aya::programs::ProgramError
  7873. 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>
  7874. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::xdp::Xdp
  7875. pub type &'a mut aya::programs::xdp::Xdp::Error = aya::programs::ProgramError
  7876. 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>
  7877. impl core::marker::Freeze for aya::programs::Program
  7878. impl core::marker::Send for aya::programs::Program
  7879. impl core::marker::Sync for aya::programs::Program
  7880. impl core::marker::Unpin for aya::programs::Program
  7881. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::Program
  7882. impl core::panic::unwind_safe::UnwindSafe for aya::programs::Program
  7883. impl<T, U> core::convert::Into<U> for aya::programs::Program where U: core::convert::From<T>
  7884. pub fn aya::programs::Program::into(self) -> U
  7885. impl<T, U> core::convert::TryFrom<U> for aya::programs::Program where U: core::convert::Into<T>
  7886. pub type aya::programs::Program::Error = core::convert::Infallible
  7887. pub fn aya::programs::Program::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7888. impl<T, U> core::convert::TryInto<U> for aya::programs::Program where U: core::convert::TryFrom<T>
  7889. pub type aya::programs::Program::Error = <U as core::convert::TryFrom<T>>::Error
  7890. pub fn aya::programs::Program::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7891. impl<T> core::any::Any for aya::programs::Program where T: 'static + ?core::marker::Sized
  7892. pub fn aya::programs::Program::type_id(&self) -> core::any::TypeId
  7893. impl<T> core::borrow::Borrow<T> for aya::programs::Program where T: ?core::marker::Sized
  7894. pub fn aya::programs::Program::borrow(&self) -> &T
  7895. impl<T> core::borrow::BorrowMut<T> for aya::programs::Program where T: ?core::marker::Sized
  7896. pub fn aya::programs::Program::borrow_mut(&mut self) -> &mut T
  7897. impl<T> core::convert::From<T> for aya::programs::Program
  7898. pub fn aya::programs::Program::from(t: T) -> T
  7899. pub enum aya::programs::ProgramError
  7900. pub aya::programs::ProgramError::AlreadyAttached
  7901. pub aya::programs::ProgramError::AlreadyLoaded
  7902. pub aya::programs::ProgramError::AttachCookieNotSupported
  7903. pub aya::programs::ProgramError::Btf(aya_obj::btf::btf::BtfError)
  7904. pub aya::programs::ProgramError::ExtensionError(aya::programs::extension::ExtensionError)
  7905. pub aya::programs::ProgramError::IOError(std::io::error::Error)
  7906. pub aya::programs::ProgramError::InvalidName
  7907. pub aya::programs::ProgramError::InvalidName::name: alloc::string::String
  7908. pub aya::programs::ProgramError::KProbeError(aya::programs::kprobe::KProbeError)
  7909. pub aya::programs::ProgramError::LoadError
  7910. pub aya::programs::ProgramError::LoadError::io_error: std::io::error::Error
  7911. pub aya::programs::ProgramError::LoadError::verifier_log: aya_obj::VerifierLog
  7912. pub aya::programs::ProgramError::MapError(aya::maps::MapError)
  7913. pub aya::programs::ProgramError::NetlinkError(aya::sys::netlink::NetlinkError)
  7914. pub aya::programs::ProgramError::NotAttached
  7915. pub aya::programs::ProgramError::NotLoaded
  7916. pub aya::programs::ProgramError::SocketFilterError(aya::programs::socket_filter::SocketFilterError)
  7917. pub aya::programs::ProgramError::SyscallError(aya::sys::SyscallError)
  7918. pub aya::programs::ProgramError::TcError(aya::programs::tc::TcError)
  7919. pub aya::programs::ProgramError::TracePointError(aya::programs::trace_point::TracePointError)
  7920. pub aya::programs::ProgramError::UProbeError(aya::programs::uprobe::UProbeError)
  7921. pub aya::programs::ProgramError::UnexpectedProgramType
  7922. pub aya::programs::ProgramError::UnknownInterface
  7923. pub aya::programs::ProgramError::UnknownInterface::name: alloc::string::String
  7924. pub aya::programs::ProgramError::XdpError(aya::programs::xdp::XdpError)
  7925. impl core::convert::From<aya::maps::MapError> for aya::programs::ProgramError
  7926. pub fn aya::programs::ProgramError::from(source: aya::maps::MapError) -> Self
  7927. impl core::convert::From<aya::programs::ProgramError> for aya::EbpfError
  7928. pub fn aya::EbpfError::from(source: aya::programs::ProgramError) -> Self
  7929. impl core::convert::From<aya::programs::extension::ExtensionError> for aya::programs::ProgramError
  7930. pub fn aya::programs::ProgramError::from(source: aya::programs::extension::ExtensionError) -> Self
  7931. impl core::convert::From<aya::programs::kprobe::KProbeError> for aya::programs::ProgramError
  7932. pub fn aya::programs::ProgramError::from(source: aya::programs::kprobe::KProbeError) -> Self
  7933. impl core::convert::From<aya::programs::socket_filter::SocketFilterError> for aya::programs::ProgramError
  7934. pub fn aya::programs::ProgramError::from(source: aya::programs::socket_filter::SocketFilterError) -> Self
  7935. impl core::convert::From<aya::programs::tc::TcError> for aya::programs::ProgramError
  7936. pub fn aya::programs::ProgramError::from(source: aya::programs::tc::TcError) -> Self
  7937. impl core::convert::From<aya::programs::trace_point::TracePointError> for aya::programs::ProgramError
  7938. pub fn aya::programs::ProgramError::from(source: aya::programs::trace_point::TracePointError) -> Self
  7939. impl core::convert::From<aya::programs::uprobe::UProbeError> for aya::programs::ProgramError
  7940. pub fn aya::programs::ProgramError::from(source: aya::programs::uprobe::UProbeError) -> Self
  7941. impl core::convert::From<aya::programs::xdp::XdpError> for aya::programs::ProgramError
  7942. pub fn aya::programs::ProgramError::from(source: aya::programs::xdp::XdpError) -> Self
  7943. impl core::convert::From<aya::sys::SyscallError> for aya::programs::ProgramError
  7944. pub fn aya::programs::ProgramError::from(source: aya::sys::SyscallError) -> Self
  7945. impl core::convert::From<aya_obj::btf::btf::BtfError> for aya::programs::ProgramError
  7946. pub fn aya::programs::ProgramError::from(source: aya_obj::btf::btf::BtfError) -> Self
  7947. impl core::convert::From<std::io::error::Error> for aya::programs::ProgramError
  7948. pub fn aya::programs::ProgramError::from(source: std::io::error::Error) -> Self
  7949. impl core::error::Error for aya::programs::ProgramError
  7950. pub fn aya::programs::ProgramError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  7951. impl core::fmt::Debug for aya::programs::ProgramError
  7952. pub fn aya::programs::ProgramError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7953. impl core::fmt::Display for aya::programs::ProgramError
  7954. pub fn aya::programs::ProgramError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7955. impl core::marker::Freeze for aya::programs::ProgramError
  7956. impl core::marker::Send for aya::programs::ProgramError
  7957. impl core::marker::Sync for aya::programs::ProgramError
  7958. impl core::marker::Unpin for aya::programs::ProgramError
  7959. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::ProgramError
  7960. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::ProgramError
  7961. impl<T, U> core::convert::Into<U> for aya::programs::ProgramError where U: core::convert::From<T>
  7962. pub fn aya::programs::ProgramError::into(self) -> U
  7963. impl<T, U> core::convert::TryFrom<U> for aya::programs::ProgramError where U: core::convert::Into<T>
  7964. pub type aya::programs::ProgramError::Error = core::convert::Infallible
  7965. pub fn aya::programs::ProgramError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7966. impl<T, U> core::convert::TryInto<U> for aya::programs::ProgramError where U: core::convert::TryFrom<T>
  7967. pub type aya::programs::ProgramError::Error = <U as core::convert::TryFrom<T>>::Error
  7968. pub fn aya::programs::ProgramError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7969. impl<T> alloc::string::ToString for aya::programs::ProgramError where T: core::fmt::Display + ?core::marker::Sized
  7970. pub fn aya::programs::ProgramError::to_string(&self) -> alloc::string::String
  7971. impl<T> core::any::Any for aya::programs::ProgramError where T: 'static + ?core::marker::Sized
  7972. pub fn aya::programs::ProgramError::type_id(&self) -> core::any::TypeId
  7973. impl<T> core::borrow::Borrow<T> for aya::programs::ProgramError where T: ?core::marker::Sized
  7974. pub fn aya::programs::ProgramError::borrow(&self) -> &T
  7975. impl<T> core::borrow::BorrowMut<T> for aya::programs::ProgramError where T: ?core::marker::Sized
  7976. pub fn aya::programs::ProgramError::borrow_mut(&mut self) -> &mut T
  7977. impl<T> core::convert::From<T> for aya::programs::ProgramError
  7978. pub fn aya::programs::ProgramError::from(t: T) -> T
  7979. #[non_exhaustive] pub enum aya::programs::ProgramType
  7980. pub aya::programs::ProgramType::CgroupDevice = 15
  7981. pub aya::programs::ProgramType::CgroupSkb = 8
  7982. pub aya::programs::ProgramType::CgroupSock = 9
  7983. pub aya::programs::ProgramType::CgroupSockAddr = 18
  7984. pub aya::programs::ProgramType::CgroupSockopt = 25
  7985. pub aya::programs::ProgramType::CgroupSysctl = 23
  7986. pub aya::programs::ProgramType::Extension = 28
  7987. pub aya::programs::ProgramType::FlowDissector = 22
  7988. pub aya::programs::ProgramType::KProbe = 2
  7989. pub aya::programs::ProgramType::LircMode2 = 20
  7990. pub aya::programs::ProgramType::Lsm = 29
  7991. pub aya::programs::ProgramType::LwtInput = 10
  7992. pub aya::programs::ProgramType::LwtOutput = 11
  7993. pub aya::programs::ProgramType::LwtSeg6local = 19
  7994. pub aya::programs::ProgramType::LwtXmit = 12
  7995. pub aya::programs::ProgramType::Netfilter = 32
  7996. pub aya::programs::ProgramType::PerfEvent = 7
  7997. pub aya::programs::ProgramType::RawTracePoint = 17
  7998. pub aya::programs::ProgramType::RawTracePointWritable = 24
  7999. pub aya::programs::ProgramType::SchedAction = 4
  8000. pub aya::programs::ProgramType::SchedClassifier = 3
  8001. pub aya::programs::ProgramType::SkLookup = 30
  8002. pub aya::programs::ProgramType::SkMsg = 16
  8003. pub aya::programs::ProgramType::SkReuseport = 21
  8004. pub aya::programs::ProgramType::SkSkb = 14
  8005. pub aya::programs::ProgramType::SockOps = 13
  8006. pub aya::programs::ProgramType::SocketFilter = 1
  8007. pub aya::programs::ProgramType::StructOps = 27
  8008. pub aya::programs::ProgramType::Syscall = 31
  8009. pub aya::programs::ProgramType::TracePoint = 5
  8010. pub aya::programs::ProgramType::Tracing = 26
  8011. pub aya::programs::ProgramType::Unspecified = 0
  8012. pub aya::programs::ProgramType::Xdp = 6
  8013. impl core::clone::Clone for aya::programs::ProgramType
  8014. pub fn aya::programs::ProgramType::clone(&self) -> aya::programs::ProgramType
  8015. impl core::cmp::PartialEq for aya::programs::ProgramType
  8016. pub fn aya::programs::ProgramType::eq(&self, other: &aya::programs::ProgramType) -> bool
  8017. impl core::convert::TryFrom<aya_obj::generated::linux_bindings_x86_64::bpf_prog_type> for aya::programs::ProgramType
  8018. pub type aya::programs::ProgramType::Error = aya::programs::ProgramError
  8019. pub fn aya::programs::ProgramType::try_from(prog_type: aya_obj::generated::linux_bindings_x86_64::bpf_prog_type) -> core::result::Result<Self, Self::Error>
  8020. impl core::fmt::Debug for aya::programs::ProgramType
  8021. pub fn aya::programs::ProgramType::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8022. impl core::marker::Copy for aya::programs::ProgramType
  8023. impl core::marker::StructuralPartialEq for aya::programs::ProgramType
  8024. impl core::marker::Freeze for aya::programs::ProgramType
  8025. impl core::marker::Send for aya::programs::ProgramType
  8026. impl core::marker::Sync for aya::programs::ProgramType
  8027. impl core::marker::Unpin for aya::programs::ProgramType
  8028. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::ProgramType
  8029. impl core::panic::unwind_safe::UnwindSafe for aya::programs::ProgramType
  8030. impl<T, U> core::convert::Into<U> for aya::programs::ProgramType where U: core::convert::From<T>
  8031. pub fn aya::programs::ProgramType::into(self) -> U
  8032. impl<T, U> core::convert::TryFrom<U> for aya::programs::ProgramType where U: core::convert::Into<T>
  8033. pub type aya::programs::ProgramType::Error = core::convert::Infallible
  8034. pub fn aya::programs::ProgramType::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8035. impl<T, U> core::convert::TryInto<U> for aya::programs::ProgramType where U: core::convert::TryFrom<T>
  8036. pub type aya::programs::ProgramType::Error = <U as core::convert::TryFrom<T>>::Error
  8037. pub fn aya::programs::ProgramType::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8038. impl<T> alloc::borrow::ToOwned for aya::programs::ProgramType where T: core::clone::Clone
  8039. pub type aya::programs::ProgramType::Owned = T
  8040. pub fn aya::programs::ProgramType::clone_into(&self, target: &mut T)
  8041. pub fn aya::programs::ProgramType::to_owned(&self) -> T
  8042. impl<T> core::any::Any for aya::programs::ProgramType where T: 'static + ?core::marker::Sized
  8043. pub fn aya::programs::ProgramType::type_id(&self) -> core::any::TypeId
  8044. impl<T> core::borrow::Borrow<T> for aya::programs::ProgramType where T: ?core::marker::Sized
  8045. pub fn aya::programs::ProgramType::borrow(&self) -> &T
  8046. impl<T> core::borrow::BorrowMut<T> for aya::programs::ProgramType where T: ?core::marker::Sized
  8047. pub fn aya::programs::ProgramType::borrow_mut(&mut self) -> &mut T
  8048. impl<T> core::clone::CloneToUninit for aya::programs::ProgramType where T: core::clone::Clone
  8049. pub unsafe fn aya::programs::ProgramType::clone_to_uninit(&self, dest: *mut u8)
  8050. impl<T> core::convert::From<T> for aya::programs::ProgramType
  8051. pub fn aya::programs::ProgramType::from(t: T) -> T
  8052. pub enum aya::programs::SamplePolicy
  8053. pub aya::programs::SamplePolicy::Frequency(u64)
  8054. pub aya::programs::SamplePolicy::Period(u64)
  8055. impl core::clone::Clone for aya::programs::perf_event::SamplePolicy
  8056. pub fn aya::programs::perf_event::SamplePolicy::clone(&self) -> aya::programs::perf_event::SamplePolicy
  8057. impl core::fmt::Debug for aya::programs::perf_event::SamplePolicy
  8058. pub fn aya::programs::perf_event::SamplePolicy::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8059. impl core::marker::Freeze for aya::programs::perf_event::SamplePolicy
  8060. impl core::marker::Send for aya::programs::perf_event::SamplePolicy
  8061. impl core::marker::Sync for aya::programs::perf_event::SamplePolicy
  8062. impl core::marker::Unpin for aya::programs::perf_event::SamplePolicy
  8063. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::SamplePolicy
  8064. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::SamplePolicy
  8065. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::SamplePolicy where U: core::convert::From<T>
  8066. pub fn aya::programs::perf_event::SamplePolicy::into(self) -> U
  8067. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::SamplePolicy where U: core::convert::Into<T>
  8068. pub type aya::programs::perf_event::SamplePolicy::Error = core::convert::Infallible
  8069. pub fn aya::programs::perf_event::SamplePolicy::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8070. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_event::SamplePolicy where U: core::convert::TryFrom<T>
  8071. pub type aya::programs::perf_event::SamplePolicy::Error = <U as core::convert::TryFrom<T>>::Error
  8072. pub fn aya::programs::perf_event::SamplePolicy::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8073. impl<T> alloc::borrow::ToOwned for aya::programs::perf_event::SamplePolicy where T: core::clone::Clone
  8074. pub type aya::programs::perf_event::SamplePolicy::Owned = T
  8075. pub fn aya::programs::perf_event::SamplePolicy::clone_into(&self, target: &mut T)
  8076. pub fn aya::programs::perf_event::SamplePolicy::to_owned(&self) -> T
  8077. impl<T> core::any::Any for aya::programs::perf_event::SamplePolicy where T: 'static + ?core::marker::Sized
  8078. pub fn aya::programs::perf_event::SamplePolicy::type_id(&self) -> core::any::TypeId
  8079. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::SamplePolicy where T: ?core::marker::Sized
  8080. pub fn aya::programs::perf_event::SamplePolicy::borrow(&self) -> &T
  8081. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::SamplePolicy where T: ?core::marker::Sized
  8082. pub fn aya::programs::perf_event::SamplePolicy::borrow_mut(&mut self) -> &mut T
  8083. impl<T> core::clone::CloneToUninit for aya::programs::perf_event::SamplePolicy where T: core::clone::Clone
  8084. pub unsafe fn aya::programs::perf_event::SamplePolicy::clone_to_uninit(&self, dest: *mut u8)
  8085. impl<T> core::convert::From<T> for aya::programs::perf_event::SamplePolicy
  8086. pub fn aya::programs::perf_event::SamplePolicy::from(t: T) -> T
  8087. pub enum aya::programs::SkSkbKind
  8088. pub aya::programs::SkSkbKind::StreamParser
  8089. pub aya::programs::SkSkbKind::StreamVerdict
  8090. impl core::clone::Clone for aya::programs::sk_skb::SkSkbKind
  8091. pub fn aya::programs::sk_skb::SkSkbKind::clone(&self) -> aya::programs::sk_skb::SkSkbKind
  8092. impl core::fmt::Debug for aya::programs::sk_skb::SkSkbKind
  8093. pub fn aya::programs::sk_skb::SkSkbKind::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8094. impl core::marker::Copy for aya::programs::sk_skb::SkSkbKind
  8095. impl core::marker::Freeze for aya::programs::sk_skb::SkSkbKind
  8096. impl core::marker::Send for aya::programs::sk_skb::SkSkbKind
  8097. impl core::marker::Sync for aya::programs::sk_skb::SkSkbKind
  8098. impl core::marker::Unpin for aya::programs::sk_skb::SkSkbKind
  8099. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sk_skb::SkSkbKind
  8100. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sk_skb::SkSkbKind
  8101. impl<T, U> core::convert::Into<U> for aya::programs::sk_skb::SkSkbKind where U: core::convert::From<T>
  8102. pub fn aya::programs::sk_skb::SkSkbKind::into(self) -> U
  8103. impl<T, U> core::convert::TryFrom<U> for aya::programs::sk_skb::SkSkbKind where U: core::convert::Into<T>
  8104. pub type aya::programs::sk_skb::SkSkbKind::Error = core::convert::Infallible
  8105. pub fn aya::programs::sk_skb::SkSkbKind::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8106. impl<T, U> core::convert::TryInto<U> for aya::programs::sk_skb::SkSkbKind where U: core::convert::TryFrom<T>
  8107. pub type aya::programs::sk_skb::SkSkbKind::Error = <U as core::convert::TryFrom<T>>::Error
  8108. pub fn aya::programs::sk_skb::SkSkbKind::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8109. impl<T> alloc::borrow::ToOwned for aya::programs::sk_skb::SkSkbKind where T: core::clone::Clone
  8110. pub type aya::programs::sk_skb::SkSkbKind::Owned = T
  8111. pub fn aya::programs::sk_skb::SkSkbKind::clone_into(&self, target: &mut T)
  8112. pub fn aya::programs::sk_skb::SkSkbKind::to_owned(&self) -> T
  8113. impl<T> core::any::Any for aya::programs::sk_skb::SkSkbKind where T: 'static + ?core::marker::Sized
  8114. pub fn aya::programs::sk_skb::SkSkbKind::type_id(&self) -> core::any::TypeId
  8115. impl<T> core::borrow::Borrow<T> for aya::programs::sk_skb::SkSkbKind where T: ?core::marker::Sized
  8116. pub fn aya::programs::sk_skb::SkSkbKind::borrow(&self) -> &T
  8117. impl<T> core::borrow::BorrowMut<T> for aya::programs::sk_skb::SkSkbKind where T: ?core::marker::Sized
  8118. pub fn aya::programs::sk_skb::SkSkbKind::borrow_mut(&mut self) -> &mut T
  8119. impl<T> core::clone::CloneToUninit for aya::programs::sk_skb::SkSkbKind where T: core::clone::Clone
  8120. pub unsafe fn aya::programs::sk_skb::SkSkbKind::clone_to_uninit(&self, dest: *mut u8)
  8121. impl<T> core::convert::From<T> for aya::programs::sk_skb::SkSkbKind
  8122. pub fn aya::programs::sk_skb::SkSkbKind::from(t: T) -> T
  8123. pub enum aya::programs::SocketFilterError
  8124. pub aya::programs::SocketFilterError::SoAttachEbpfError
  8125. pub aya::programs::SocketFilterError::SoAttachEbpfError::io_error: std::io::error::Error
  8126. impl core::convert::From<aya::programs::socket_filter::SocketFilterError> for aya::programs::ProgramError
  8127. pub fn aya::programs::ProgramError::from(source: aya::programs::socket_filter::SocketFilterError) -> Self
  8128. impl core::error::Error for aya::programs::socket_filter::SocketFilterError
  8129. pub fn aya::programs::socket_filter::SocketFilterError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  8130. impl core::fmt::Debug for aya::programs::socket_filter::SocketFilterError
  8131. pub fn aya::programs::socket_filter::SocketFilterError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8132. impl core::fmt::Display for aya::programs::socket_filter::SocketFilterError
  8133. pub fn aya::programs::socket_filter::SocketFilterError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8134. impl core::marker::Freeze for aya::programs::socket_filter::SocketFilterError
  8135. impl core::marker::Send for aya::programs::socket_filter::SocketFilterError
  8136. impl core::marker::Sync for aya::programs::socket_filter::SocketFilterError
  8137. impl core::marker::Unpin for aya::programs::socket_filter::SocketFilterError
  8138. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::socket_filter::SocketFilterError
  8139. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::socket_filter::SocketFilterError
  8140. impl<T, U> core::convert::Into<U> for aya::programs::socket_filter::SocketFilterError where U: core::convert::From<T>
  8141. pub fn aya::programs::socket_filter::SocketFilterError::into(self) -> U
  8142. impl<T, U> core::convert::TryFrom<U> for aya::programs::socket_filter::SocketFilterError where U: core::convert::Into<T>
  8143. pub type aya::programs::socket_filter::SocketFilterError::Error = core::convert::Infallible
  8144. pub fn aya::programs::socket_filter::SocketFilterError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8145. impl<T, U> core::convert::TryInto<U> for aya::programs::socket_filter::SocketFilterError where U: core::convert::TryFrom<T>
  8146. pub type aya::programs::socket_filter::SocketFilterError::Error = <U as core::convert::TryFrom<T>>::Error
  8147. pub fn aya::programs::socket_filter::SocketFilterError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8148. impl<T> alloc::string::ToString for aya::programs::socket_filter::SocketFilterError where T: core::fmt::Display + ?core::marker::Sized
  8149. pub fn aya::programs::socket_filter::SocketFilterError::to_string(&self) -> alloc::string::String
  8150. impl<T> core::any::Any for aya::programs::socket_filter::SocketFilterError where T: 'static + ?core::marker::Sized
  8151. pub fn aya::programs::socket_filter::SocketFilterError::type_id(&self) -> core::any::TypeId
  8152. impl<T> core::borrow::Borrow<T> for aya::programs::socket_filter::SocketFilterError where T: ?core::marker::Sized
  8153. pub fn aya::programs::socket_filter::SocketFilterError::borrow(&self) -> &T
  8154. impl<T> core::borrow::BorrowMut<T> for aya::programs::socket_filter::SocketFilterError where T: ?core::marker::Sized
  8155. pub fn aya::programs::socket_filter::SocketFilterError::borrow_mut(&mut self) -> &mut T
  8156. impl<T> core::convert::From<T> for aya::programs::socket_filter::SocketFilterError
  8157. pub fn aya::programs::socket_filter::SocketFilterError::from(t: T) -> T
  8158. pub enum aya::programs::TcAttachType
  8159. pub aya::programs::TcAttachType::Custom(u32)
  8160. pub aya::programs::TcAttachType::Egress
  8161. pub aya::programs::TcAttachType::Ingress
  8162. impl core::clone::Clone for aya::programs::tc::TcAttachType
  8163. pub fn aya::programs::tc::TcAttachType::clone(&self) -> aya::programs::tc::TcAttachType
  8164. impl core::cmp::Eq for aya::programs::tc::TcAttachType
  8165. impl core::cmp::PartialEq for aya::programs::tc::TcAttachType
  8166. pub fn aya::programs::tc::TcAttachType::eq(&self, other: &aya::programs::tc::TcAttachType) -> bool
  8167. impl core::fmt::Debug for aya::programs::tc::TcAttachType
  8168. pub fn aya::programs::tc::TcAttachType::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8169. impl core::hash::Hash for aya::programs::tc::TcAttachType
  8170. pub fn aya::programs::tc::TcAttachType::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  8171. impl core::marker::Copy for aya::programs::tc::TcAttachType
  8172. impl core::marker::StructuralPartialEq for aya::programs::tc::TcAttachType
  8173. impl core::marker::Freeze for aya::programs::tc::TcAttachType
  8174. impl core::marker::Send for aya::programs::tc::TcAttachType
  8175. impl core::marker::Sync for aya::programs::tc::TcAttachType
  8176. impl core::marker::Unpin for aya::programs::tc::TcAttachType
  8177. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::TcAttachType
  8178. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tc::TcAttachType
  8179. impl<Q, K> equivalent::Equivalent<K> for aya::programs::tc::TcAttachType where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  8180. pub fn aya::programs::tc::TcAttachType::equivalent(&self, key: &K) -> bool
  8181. impl<T, U> core::convert::Into<U> for aya::programs::tc::TcAttachType where U: core::convert::From<T>
  8182. pub fn aya::programs::tc::TcAttachType::into(self) -> U
  8183. impl<T, U> core::convert::TryFrom<U> for aya::programs::tc::TcAttachType where U: core::convert::Into<T>
  8184. pub type aya::programs::tc::TcAttachType::Error = core::convert::Infallible
  8185. pub fn aya::programs::tc::TcAttachType::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8186. impl<T, U> core::convert::TryInto<U> for aya::programs::tc::TcAttachType where U: core::convert::TryFrom<T>
  8187. pub type aya::programs::tc::TcAttachType::Error = <U as core::convert::TryFrom<T>>::Error
  8188. pub fn aya::programs::tc::TcAttachType::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8189. impl<T> alloc::borrow::ToOwned for aya::programs::tc::TcAttachType where T: core::clone::Clone
  8190. pub type aya::programs::tc::TcAttachType::Owned = T
  8191. pub fn aya::programs::tc::TcAttachType::clone_into(&self, target: &mut T)
  8192. pub fn aya::programs::tc::TcAttachType::to_owned(&self) -> T
  8193. impl<T> core::any::Any for aya::programs::tc::TcAttachType where T: 'static + ?core::marker::Sized
  8194. pub fn aya::programs::tc::TcAttachType::type_id(&self) -> core::any::TypeId
  8195. impl<T> core::borrow::Borrow<T> for aya::programs::tc::TcAttachType where T: ?core::marker::Sized
  8196. pub fn aya::programs::tc::TcAttachType::borrow(&self) -> &T
  8197. impl<T> core::borrow::BorrowMut<T> for aya::programs::tc::TcAttachType where T: ?core::marker::Sized
  8198. pub fn aya::programs::tc::TcAttachType::borrow_mut(&mut self) -> &mut T
  8199. impl<T> core::clone::CloneToUninit for aya::programs::tc::TcAttachType where T: core::clone::Clone
  8200. pub unsafe fn aya::programs::tc::TcAttachType::clone_to_uninit(&self, dest: *mut u8)
  8201. impl<T> core::convert::From<T> for aya::programs::tc::TcAttachType
  8202. pub fn aya::programs::tc::TcAttachType::from(t: T) -> T
  8203. pub enum aya::programs::TcError
  8204. pub aya::programs::TcError::AlreadyAttached
  8205. pub aya::programs::TcError::InvalidLinkOperation
  8206. pub aya::programs::TcError::InvalidTcxAttach(u32)
  8207. pub aya::programs::TcError::IoError(std::io::error::Error)
  8208. pub aya::programs::TcError::NetlinkError(aya::sys::netlink::NetlinkError)
  8209. pub aya::programs::TcError::NulError(alloc::ffi::c_str::NulError)
  8210. impl core::convert::From<alloc::ffi::c_str::NulError> for aya::programs::tc::TcError
  8211. pub fn aya::programs::tc::TcError::from(source: alloc::ffi::c_str::NulError) -> Self
  8212. impl core::convert::From<aya::programs::tc::TcError> for aya::programs::ProgramError
  8213. pub fn aya::programs::ProgramError::from(source: aya::programs::tc::TcError) -> Self
  8214. impl core::convert::From<std::io::error::Error> for aya::programs::tc::TcError
  8215. pub fn aya::programs::tc::TcError::from(source: std::io::error::Error) -> Self
  8216. impl core::error::Error for aya::programs::tc::TcError
  8217. pub fn aya::programs::tc::TcError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  8218. impl core::fmt::Debug for aya::programs::tc::TcError
  8219. pub fn aya::programs::tc::TcError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8220. impl core::fmt::Display for aya::programs::tc::TcError
  8221. pub fn aya::programs::tc::TcError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8222. impl core::marker::Freeze for aya::programs::tc::TcError
  8223. impl core::marker::Send for aya::programs::tc::TcError
  8224. impl core::marker::Sync for aya::programs::tc::TcError
  8225. impl core::marker::Unpin for aya::programs::tc::TcError
  8226. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::TcError
  8227. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::tc::TcError
  8228. impl<T, U> core::convert::Into<U> for aya::programs::tc::TcError where U: core::convert::From<T>
  8229. pub fn aya::programs::tc::TcError::into(self) -> U
  8230. impl<T, U> core::convert::TryFrom<U> for aya::programs::tc::TcError where U: core::convert::Into<T>
  8231. pub type aya::programs::tc::TcError::Error = core::convert::Infallible
  8232. pub fn aya::programs::tc::TcError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8233. impl<T, U> core::convert::TryInto<U> for aya::programs::tc::TcError where U: core::convert::TryFrom<T>
  8234. pub type aya::programs::tc::TcError::Error = <U as core::convert::TryFrom<T>>::Error
  8235. pub fn aya::programs::tc::TcError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8236. impl<T> alloc::string::ToString for aya::programs::tc::TcError where T: core::fmt::Display + ?core::marker::Sized
  8237. pub fn aya::programs::tc::TcError::to_string(&self) -> alloc::string::String
  8238. impl<T> core::any::Any for aya::programs::tc::TcError where T: 'static + ?core::marker::Sized
  8239. pub fn aya::programs::tc::TcError::type_id(&self) -> core::any::TypeId
  8240. impl<T> core::borrow::Borrow<T> for aya::programs::tc::TcError where T: ?core::marker::Sized
  8241. pub fn aya::programs::tc::TcError::borrow(&self) -> &T
  8242. impl<T> core::borrow::BorrowMut<T> for aya::programs::tc::TcError where T: ?core::marker::Sized
  8243. pub fn aya::programs::tc::TcError::borrow_mut(&mut self) -> &mut T
  8244. impl<T> core::convert::From<T> for aya::programs::tc::TcError
  8245. pub fn aya::programs::tc::TcError::from(t: T) -> T
  8246. pub enum aya::programs::TracePointError
  8247. pub aya::programs::TracePointError::FileError
  8248. pub aya::programs::TracePointError::FileError::filename: std::path::PathBuf
  8249. pub aya::programs::TracePointError::FileError::io_error: std::io::error::Error
  8250. impl core::convert::From<aya::programs::trace_point::TracePointError> for aya::programs::ProgramError
  8251. pub fn aya::programs::ProgramError::from(source: aya::programs::trace_point::TracePointError) -> Self
  8252. impl core::error::Error for aya::programs::trace_point::TracePointError
  8253. pub fn aya::programs::trace_point::TracePointError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  8254. impl core::fmt::Debug for aya::programs::trace_point::TracePointError
  8255. pub fn aya::programs::trace_point::TracePointError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8256. impl core::fmt::Display for aya::programs::trace_point::TracePointError
  8257. pub fn aya::programs::trace_point::TracePointError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8258. impl core::marker::Freeze for aya::programs::trace_point::TracePointError
  8259. impl core::marker::Send for aya::programs::trace_point::TracePointError
  8260. impl core::marker::Sync for aya::programs::trace_point::TracePointError
  8261. impl core::marker::Unpin for aya::programs::trace_point::TracePointError
  8262. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::trace_point::TracePointError
  8263. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::trace_point::TracePointError
  8264. impl<T, U> core::convert::Into<U> for aya::programs::trace_point::TracePointError where U: core::convert::From<T>
  8265. pub fn aya::programs::trace_point::TracePointError::into(self) -> U
  8266. impl<T, U> core::convert::TryFrom<U> for aya::programs::trace_point::TracePointError where U: core::convert::Into<T>
  8267. pub type aya::programs::trace_point::TracePointError::Error = core::convert::Infallible
  8268. pub fn aya::programs::trace_point::TracePointError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8269. impl<T, U> core::convert::TryInto<U> for aya::programs::trace_point::TracePointError where U: core::convert::TryFrom<T>
  8270. pub type aya::programs::trace_point::TracePointError::Error = <U as core::convert::TryFrom<T>>::Error
  8271. pub fn aya::programs::trace_point::TracePointError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8272. impl<T> alloc::string::ToString for aya::programs::trace_point::TracePointError where T: core::fmt::Display + ?core::marker::Sized
  8273. pub fn aya::programs::trace_point::TracePointError::to_string(&self) -> alloc::string::String
  8274. impl<T> core::any::Any for aya::programs::trace_point::TracePointError where T: 'static + ?core::marker::Sized
  8275. pub fn aya::programs::trace_point::TracePointError::type_id(&self) -> core::any::TypeId
  8276. impl<T> core::borrow::Borrow<T> for aya::programs::trace_point::TracePointError where T: ?core::marker::Sized
  8277. pub fn aya::programs::trace_point::TracePointError::borrow(&self) -> &T
  8278. impl<T> core::borrow::BorrowMut<T> for aya::programs::trace_point::TracePointError where T: ?core::marker::Sized
  8279. pub fn aya::programs::trace_point::TracePointError::borrow_mut(&mut self) -> &mut T
  8280. impl<T> core::convert::From<T> for aya::programs::trace_point::TracePointError
  8281. pub fn aya::programs::trace_point::TracePointError::from(t: T) -> T
  8282. pub enum aya::programs::UProbeError
  8283. pub aya::programs::UProbeError::FileError
  8284. pub aya::programs::UProbeError::FileError::filename: std::path::PathBuf
  8285. pub aya::programs::UProbeError::FileError::io_error: std::io::error::Error
  8286. pub aya::programs::UProbeError::InvalidLdSoCache
  8287. pub aya::programs::UProbeError::InvalidLdSoCache::io_error: &'static std::io::error::Error
  8288. pub aya::programs::UProbeError::InvalidTarget
  8289. pub aya::programs::UProbeError::InvalidTarget::path: std::path::PathBuf
  8290. pub aya::programs::UProbeError::ProcMap
  8291. pub aya::programs::UProbeError::ProcMap::pid: i32
  8292. pub aya::programs::UProbeError::ProcMap::source: aya::programs::uprobe::ProcMapError
  8293. pub aya::programs::UProbeError::SymbolError
  8294. pub aya::programs::UProbeError::SymbolError::error: alloc::boxed::Box<(dyn core::error::Error + core::marker::Send + core::marker::Sync)>
  8295. pub aya::programs::UProbeError::SymbolError::symbol: alloc::string::String
  8296. impl core::convert::From<aya::programs::uprobe::UProbeError> for aya::programs::ProgramError
  8297. pub fn aya::programs::ProgramError::from(source: aya::programs::uprobe::UProbeError) -> Self
  8298. impl core::error::Error for aya::programs::uprobe::UProbeError
  8299. pub fn aya::programs::uprobe::UProbeError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  8300. impl core::fmt::Debug for aya::programs::uprobe::UProbeError
  8301. pub fn aya::programs::uprobe::UProbeError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8302. impl core::fmt::Display for aya::programs::uprobe::UProbeError
  8303. pub fn aya::programs::uprobe::UProbeError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8304. impl core::marker::Freeze for aya::programs::uprobe::UProbeError
  8305. impl core::marker::Send for aya::programs::uprobe::UProbeError
  8306. impl core::marker::Sync for aya::programs::uprobe::UProbeError
  8307. impl core::marker::Unpin for aya::programs::uprobe::UProbeError
  8308. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::uprobe::UProbeError
  8309. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::uprobe::UProbeError
  8310. impl<T, U> core::convert::Into<U> for aya::programs::uprobe::UProbeError where U: core::convert::From<T>
  8311. pub fn aya::programs::uprobe::UProbeError::into(self) -> U
  8312. impl<T, U> core::convert::TryFrom<U> for aya::programs::uprobe::UProbeError where U: core::convert::Into<T>
  8313. pub type aya::programs::uprobe::UProbeError::Error = core::convert::Infallible
  8314. pub fn aya::programs::uprobe::UProbeError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8315. impl<T, U> core::convert::TryInto<U> for aya::programs::uprobe::UProbeError where U: core::convert::TryFrom<T>
  8316. pub type aya::programs::uprobe::UProbeError::Error = <U as core::convert::TryFrom<T>>::Error
  8317. pub fn aya::programs::uprobe::UProbeError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8318. impl<T> alloc::string::ToString for aya::programs::uprobe::UProbeError where T: core::fmt::Display + ?core::marker::Sized
  8319. pub fn aya::programs::uprobe::UProbeError::to_string(&self) -> alloc::string::String
  8320. impl<T> core::any::Any for aya::programs::uprobe::UProbeError where T: 'static + ?core::marker::Sized
  8321. pub fn aya::programs::uprobe::UProbeError::type_id(&self) -> core::any::TypeId
  8322. impl<T> core::borrow::Borrow<T> for aya::programs::uprobe::UProbeError where T: ?core::marker::Sized
  8323. pub fn aya::programs::uprobe::UProbeError::borrow(&self) -> &T
  8324. impl<T> core::borrow::BorrowMut<T> for aya::programs::uprobe::UProbeError where T: ?core::marker::Sized
  8325. pub fn aya::programs::uprobe::UProbeError::borrow_mut(&mut self) -> &mut T
  8326. impl<T> core::convert::From<T> for aya::programs::uprobe::UProbeError
  8327. pub fn aya::programs::uprobe::UProbeError::from(t: T) -> T
  8328. pub enum aya::programs::XdpError
  8329. pub aya::programs::XdpError::NetlinkError(aya::sys::netlink::NetlinkError)
  8330. impl core::convert::From<aya::programs::xdp::XdpError> for aya::programs::ProgramError
  8331. pub fn aya::programs::ProgramError::from(source: aya::programs::xdp::XdpError) -> Self
  8332. impl core::error::Error for aya::programs::xdp::XdpError
  8333. pub fn aya::programs::xdp::XdpError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  8334. impl core::fmt::Debug for aya::programs::xdp::XdpError
  8335. pub fn aya::programs::xdp::XdpError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8336. impl core::fmt::Display for aya::programs::xdp::XdpError
  8337. pub fn aya::programs::xdp::XdpError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8338. impl core::marker::Freeze for aya::programs::xdp::XdpError
  8339. impl core::marker::Send for aya::programs::xdp::XdpError
  8340. impl core::marker::Sync for aya::programs::xdp::XdpError
  8341. impl core::marker::Unpin for aya::programs::xdp::XdpError
  8342. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::xdp::XdpError
  8343. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::xdp::XdpError
  8344. impl<T, U> core::convert::Into<U> for aya::programs::xdp::XdpError where U: core::convert::From<T>
  8345. pub fn aya::programs::xdp::XdpError::into(self) -> U
  8346. impl<T, U> core::convert::TryFrom<U> for aya::programs::xdp::XdpError where U: core::convert::Into<T>
  8347. pub type aya::programs::xdp::XdpError::Error = core::convert::Infallible
  8348. pub fn aya::programs::xdp::XdpError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8349. impl<T, U> core::convert::TryInto<U> for aya::programs::xdp::XdpError where U: core::convert::TryFrom<T>
  8350. pub type aya::programs::xdp::XdpError::Error = <U as core::convert::TryFrom<T>>::Error
  8351. pub fn aya::programs::xdp::XdpError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8352. impl<T> alloc::string::ToString for aya::programs::xdp::XdpError where T: core::fmt::Display + ?core::marker::Sized
  8353. pub fn aya::programs::xdp::XdpError::to_string(&self) -> alloc::string::String
  8354. impl<T> core::any::Any for aya::programs::xdp::XdpError where T: 'static + ?core::marker::Sized
  8355. pub fn aya::programs::xdp::XdpError::type_id(&self) -> core::any::TypeId
  8356. impl<T> core::borrow::Borrow<T> for aya::programs::xdp::XdpError where T: ?core::marker::Sized
  8357. pub fn aya::programs::xdp::XdpError::borrow(&self) -> &T
  8358. impl<T> core::borrow::BorrowMut<T> for aya::programs::xdp::XdpError where T: ?core::marker::Sized
  8359. pub fn aya::programs::xdp::XdpError::borrow_mut(&mut self) -> &mut T
  8360. impl<T> core::convert::From<T> for aya::programs::xdp::XdpError
  8361. pub fn aya::programs::xdp::XdpError::from(t: T) -> T
  8362. pub struct aya::programs::BtfTracePoint
  8363. impl aya::programs::tp_btf::BtfTracePoint
  8364. pub const aya::programs::tp_btf::BtfTracePoint::PROGRAM_TYPE: aya::programs::ProgramType
  8365. pub fn aya::programs::tp_btf::BtfTracePoint::attach(&mut self) -> core::result::Result<aya::programs::tp_btf::BtfTracePointLinkId, aya::programs::ProgramError>
  8366. pub fn aya::programs::tp_btf::BtfTracePoint::load(&mut self, tracepoint: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError>
  8367. impl aya::programs::tp_btf::BtfTracePoint
  8368. pub fn aya::programs::tp_btf::BtfTracePoint::detach(&mut self, link_id: aya::programs::tp_btf::BtfTracePointLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  8369. 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>
  8370. impl aya::programs::tp_btf::BtfTracePoint
  8371. pub fn aya::programs::tp_btf::BtfTracePoint::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  8372. impl aya::programs::tp_btf::BtfTracePoint
  8373. 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>
  8374. impl aya::programs::tp_btf::BtfTracePoint
  8375. pub unsafe fn aya::programs::tp_btf::BtfTracePoint::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  8376. impl aya::programs::tp_btf::BtfTracePoint
  8377. pub fn aya::programs::tp_btf::BtfTracePoint::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  8378. impl aya::programs::tp_btf::BtfTracePoint
  8379. 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>
  8380. pub fn aya::programs::tp_btf::BtfTracePoint::unpin(self) -> core::result::Result<(), std::io::error::Error>
  8381. impl aya::programs::tp_btf::BtfTracePoint
  8382. pub fn aya::programs::tp_btf::BtfTracePoint::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8383. impl core::fmt::Debug for aya::programs::tp_btf::BtfTracePoint
  8384. pub fn aya::programs::tp_btf::BtfTracePoint::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8385. impl core::ops::drop::Drop for aya::programs::tp_btf::BtfTracePoint
  8386. pub fn aya::programs::tp_btf::BtfTracePoint::drop(&mut self)
  8387. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::tp_btf::BtfTracePoint
  8388. pub type &'a aya::programs::tp_btf::BtfTracePoint::Error = aya::programs::ProgramError
  8389. 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>
  8390. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::tp_btf::BtfTracePoint
  8391. pub type &'a mut aya::programs::tp_btf::BtfTracePoint::Error = aya::programs::ProgramError
  8392. 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>
  8393. impl core::marker::Freeze for aya::programs::tp_btf::BtfTracePoint
  8394. impl core::marker::Send for aya::programs::tp_btf::BtfTracePoint
  8395. impl core::marker::Sync for aya::programs::tp_btf::BtfTracePoint
  8396. impl core::marker::Unpin for aya::programs::tp_btf::BtfTracePoint
  8397. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tp_btf::BtfTracePoint
  8398. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tp_btf::BtfTracePoint
  8399. impl<T, U> core::convert::Into<U> for aya::programs::tp_btf::BtfTracePoint where U: core::convert::From<T>
  8400. pub fn aya::programs::tp_btf::BtfTracePoint::into(self) -> U
  8401. impl<T, U> core::convert::TryFrom<U> for aya::programs::tp_btf::BtfTracePoint where U: core::convert::Into<T>
  8402. pub type aya::programs::tp_btf::BtfTracePoint::Error = core::convert::Infallible
  8403. pub fn aya::programs::tp_btf::BtfTracePoint::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8404. impl<T, U> core::convert::TryInto<U> for aya::programs::tp_btf::BtfTracePoint where U: core::convert::TryFrom<T>
  8405. pub type aya::programs::tp_btf::BtfTracePoint::Error = <U as core::convert::TryFrom<T>>::Error
  8406. pub fn aya::programs::tp_btf::BtfTracePoint::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8407. impl<T> core::any::Any for aya::programs::tp_btf::BtfTracePoint where T: 'static + ?core::marker::Sized
  8408. pub fn aya::programs::tp_btf::BtfTracePoint::type_id(&self) -> core::any::TypeId
  8409. impl<T> core::borrow::Borrow<T> for aya::programs::tp_btf::BtfTracePoint where T: ?core::marker::Sized
  8410. pub fn aya::programs::tp_btf::BtfTracePoint::borrow(&self) -> &T
  8411. impl<T> core::borrow::BorrowMut<T> for aya::programs::tp_btf::BtfTracePoint where T: ?core::marker::Sized
  8412. pub fn aya::programs::tp_btf::BtfTracePoint::borrow_mut(&mut self) -> &mut T
  8413. impl<T> core::convert::From<T> for aya::programs::tp_btf::BtfTracePoint
  8414. pub fn aya::programs::tp_btf::BtfTracePoint::from(t: T) -> T
  8415. pub struct aya::programs::CgroupDevice
  8416. impl aya::programs::cgroup_device::CgroupDevice
  8417. pub const aya::programs::cgroup_device::CgroupDevice::PROGRAM_TYPE: aya::programs::ProgramType
  8418. pub fn aya::programs::cgroup_device::CgroupDevice::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T, mode: aya::programs::links::CgroupAttachMode) -> core::result::Result<aya::programs::cgroup_device::CgroupDeviceLinkId, aya::programs::ProgramError>
  8419. pub fn aya::programs::cgroup_device::CgroupDevice::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8420. pub fn aya::programs::cgroup_device::CgroupDevice::query<T: std::os::fd::owned::AsFd>(target_fd: T) -> core::result::Result<alloc::vec::Vec<aya::programs::cgroup_device::CgroupDeviceLink>, aya::programs::ProgramError>
  8421. impl aya::programs::cgroup_device::CgroupDevice
  8422. pub fn aya::programs::cgroup_device::CgroupDevice::detach(&mut self, link_id: aya::programs::cgroup_device::CgroupDeviceLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  8423. 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>
  8424. impl aya::programs::cgroup_device::CgroupDevice
  8425. pub fn aya::programs::cgroup_device::CgroupDevice::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  8426. impl aya::programs::cgroup_device::CgroupDevice
  8427. 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>
  8428. impl aya::programs::cgroup_device::CgroupDevice
  8429. pub fn aya::programs::cgroup_device::CgroupDevice::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  8430. impl aya::programs::cgroup_device::CgroupDevice
  8431. pub fn aya::programs::cgroup_device::CgroupDevice::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  8432. impl aya::programs::cgroup_device::CgroupDevice
  8433. 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>
  8434. pub fn aya::programs::cgroup_device::CgroupDevice::unpin(self) -> core::result::Result<(), std::io::error::Error>
  8435. impl aya::programs::cgroup_device::CgroupDevice
  8436. pub fn aya::programs::cgroup_device::CgroupDevice::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8437. impl core::fmt::Debug for aya::programs::cgroup_device::CgroupDevice
  8438. pub fn aya::programs::cgroup_device::CgroupDevice::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8439. impl core::ops::drop::Drop for aya::programs::cgroup_device::CgroupDevice
  8440. pub fn aya::programs::cgroup_device::CgroupDevice::drop(&mut self)
  8441. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_device::CgroupDevice
  8442. pub type &'a aya::programs::cgroup_device::CgroupDevice::Error = aya::programs::ProgramError
  8443. 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>
  8444. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_device::CgroupDevice
  8445. pub type &'a mut aya::programs::cgroup_device::CgroupDevice::Error = aya::programs::ProgramError
  8446. 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>
  8447. impl core::marker::Freeze for aya::programs::cgroup_device::CgroupDevice
  8448. impl core::marker::Send for aya::programs::cgroup_device::CgroupDevice
  8449. impl core::marker::Sync for aya::programs::cgroup_device::CgroupDevice
  8450. impl core::marker::Unpin for aya::programs::cgroup_device::CgroupDevice
  8451. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_device::CgroupDevice
  8452. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_device::CgroupDevice
  8453. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_device::CgroupDevice where U: core::convert::From<T>
  8454. pub fn aya::programs::cgroup_device::CgroupDevice::into(self) -> U
  8455. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_device::CgroupDevice where U: core::convert::Into<T>
  8456. pub type aya::programs::cgroup_device::CgroupDevice::Error = core::convert::Infallible
  8457. pub fn aya::programs::cgroup_device::CgroupDevice::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8458. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_device::CgroupDevice where U: core::convert::TryFrom<T>
  8459. pub type aya::programs::cgroup_device::CgroupDevice::Error = <U as core::convert::TryFrom<T>>::Error
  8460. pub fn aya::programs::cgroup_device::CgroupDevice::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8461. impl<T> core::any::Any for aya::programs::cgroup_device::CgroupDevice where T: 'static + ?core::marker::Sized
  8462. pub fn aya::programs::cgroup_device::CgroupDevice::type_id(&self) -> core::any::TypeId
  8463. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_device::CgroupDevice where T: ?core::marker::Sized
  8464. pub fn aya::programs::cgroup_device::CgroupDevice::borrow(&self) -> &T
  8465. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_device::CgroupDevice where T: ?core::marker::Sized
  8466. pub fn aya::programs::cgroup_device::CgroupDevice::borrow_mut(&mut self) -> &mut T
  8467. impl<T> core::convert::From<T> for aya::programs::cgroup_device::CgroupDevice
  8468. pub fn aya::programs::cgroup_device::CgroupDevice::from(t: T) -> T
  8469. pub struct aya::programs::CgroupSkb
  8470. impl aya::programs::cgroup_skb::CgroupSkb
  8471. pub const aya::programs::cgroup_skb::CgroupSkb::PROGRAM_TYPE: aya::programs::ProgramType
  8472. 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, mode: aya::programs::links::CgroupAttachMode) -> core::result::Result<aya::programs::cgroup_skb::CgroupSkbLinkId, aya::programs::ProgramError>
  8473. pub fn aya::programs::cgroup_skb::CgroupSkb::expected_attach_type(&self) -> &core::option::Option<aya::programs::cgroup_skb::CgroupSkbAttachType>
  8474. 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>
  8475. pub fn aya::programs::cgroup_skb::CgroupSkb::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8476. impl aya::programs::cgroup_skb::CgroupSkb
  8477. pub fn aya::programs::cgroup_skb::CgroupSkb::detach(&mut self, link_id: aya::programs::cgroup_skb::CgroupSkbLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  8478. 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>
  8479. impl aya::programs::cgroup_skb::CgroupSkb
  8480. pub fn aya::programs::cgroup_skb::CgroupSkb::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  8481. impl aya::programs::cgroup_skb::CgroupSkb
  8482. pub fn aya::programs::cgroup_skb::CgroupSkb::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>, attach_type: core::option::Option<aya::programs::cgroup_skb::CgroupSkbAttachType>) -> core::result::Result<Self, aya::programs::ProgramError>
  8483. impl aya::programs::cgroup_skb::CgroupSkb
  8484. pub fn aya::programs::cgroup_skb::CgroupSkb::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  8485. impl aya::programs::cgroup_skb::CgroupSkb
  8486. 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>
  8487. pub fn aya::programs::cgroup_skb::CgroupSkb::unpin(self) -> core::result::Result<(), std::io::error::Error>
  8488. impl aya::programs::cgroup_skb::CgroupSkb
  8489. pub fn aya::programs::cgroup_skb::CgroupSkb::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8490. impl core::fmt::Debug for aya::programs::cgroup_skb::CgroupSkb
  8491. pub fn aya::programs::cgroup_skb::CgroupSkb::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8492. impl core::ops::drop::Drop for aya::programs::cgroup_skb::CgroupSkb
  8493. pub fn aya::programs::cgroup_skb::CgroupSkb::drop(&mut self)
  8494. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_skb::CgroupSkb
  8495. pub type &'a aya::programs::cgroup_skb::CgroupSkb::Error = aya::programs::ProgramError
  8496. 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>
  8497. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_skb::CgroupSkb
  8498. pub type &'a mut aya::programs::cgroup_skb::CgroupSkb::Error = aya::programs::ProgramError
  8499. 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>
  8500. impl core::marker::Freeze for aya::programs::cgroup_skb::CgroupSkb
  8501. impl core::marker::Send for aya::programs::cgroup_skb::CgroupSkb
  8502. impl core::marker::Sync for aya::programs::cgroup_skb::CgroupSkb
  8503. impl core::marker::Unpin for aya::programs::cgroup_skb::CgroupSkb
  8504. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_skb::CgroupSkb
  8505. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_skb::CgroupSkb
  8506. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_skb::CgroupSkb where U: core::convert::From<T>
  8507. pub fn aya::programs::cgroup_skb::CgroupSkb::into(self) -> U
  8508. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_skb::CgroupSkb where U: core::convert::Into<T>
  8509. pub type aya::programs::cgroup_skb::CgroupSkb::Error = core::convert::Infallible
  8510. pub fn aya::programs::cgroup_skb::CgroupSkb::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8511. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_skb::CgroupSkb where U: core::convert::TryFrom<T>
  8512. pub type aya::programs::cgroup_skb::CgroupSkb::Error = <U as core::convert::TryFrom<T>>::Error
  8513. pub fn aya::programs::cgroup_skb::CgroupSkb::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8514. impl<T> core::any::Any for aya::programs::cgroup_skb::CgroupSkb where T: 'static + ?core::marker::Sized
  8515. pub fn aya::programs::cgroup_skb::CgroupSkb::type_id(&self) -> core::any::TypeId
  8516. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_skb::CgroupSkb where T: ?core::marker::Sized
  8517. pub fn aya::programs::cgroup_skb::CgroupSkb::borrow(&self) -> &T
  8518. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_skb::CgroupSkb where T: ?core::marker::Sized
  8519. pub fn aya::programs::cgroup_skb::CgroupSkb::borrow_mut(&mut self) -> &mut T
  8520. impl<T> core::convert::From<T> for aya::programs::cgroup_skb::CgroupSkb
  8521. pub fn aya::programs::cgroup_skb::CgroupSkb::from(t: T) -> T
  8522. pub struct aya::programs::CgroupSock
  8523. impl aya::programs::cgroup_sock::CgroupSock
  8524. pub const aya::programs::cgroup_sock::CgroupSock::PROGRAM_TYPE: aya::programs::ProgramType
  8525. pub fn aya::programs::cgroup_sock::CgroupSock::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T, mode: aya::programs::links::CgroupAttachMode) -> core::result::Result<aya::programs::cgroup_sock::CgroupSockLinkId, aya::programs::ProgramError>
  8526. 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>
  8527. pub fn aya::programs::cgroup_sock::CgroupSock::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8528. impl aya::programs::cgroup_sock::CgroupSock
  8529. pub fn aya::programs::cgroup_sock::CgroupSock::detach(&mut self, link_id: aya::programs::cgroup_sock::CgroupSockLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  8530. 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>
  8531. impl aya::programs::cgroup_sock::CgroupSock
  8532. pub fn aya::programs::cgroup_sock::CgroupSock::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  8533. impl aya::programs::cgroup_sock::CgroupSock
  8534. pub fn aya::programs::cgroup_sock::CgroupSock::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  8535. impl aya::programs::cgroup_sock::CgroupSock
  8536. 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>
  8537. pub fn aya::programs::cgroup_sock::CgroupSock::unpin(self) -> core::result::Result<(), std::io::error::Error>
  8538. impl aya::programs::cgroup_sock::CgroupSock
  8539. pub fn aya::programs::cgroup_sock::CgroupSock::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8540. impl core::fmt::Debug for aya::programs::cgroup_sock::CgroupSock
  8541. pub fn aya::programs::cgroup_sock::CgroupSock::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8542. impl core::ops::drop::Drop for aya::programs::cgroup_sock::CgroupSock
  8543. pub fn aya::programs::cgroup_sock::CgroupSock::drop(&mut self)
  8544. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sock::CgroupSock
  8545. pub type &'a aya::programs::cgroup_sock::CgroupSock::Error = aya::programs::ProgramError
  8546. 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>
  8547. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sock::CgroupSock
  8548. pub type &'a mut aya::programs::cgroup_sock::CgroupSock::Error = aya::programs::ProgramError
  8549. 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>
  8550. impl core::marker::Freeze for aya::programs::cgroup_sock::CgroupSock
  8551. impl core::marker::Send for aya::programs::cgroup_sock::CgroupSock
  8552. impl core::marker::Sync for aya::programs::cgroup_sock::CgroupSock
  8553. impl core::marker::Unpin for aya::programs::cgroup_sock::CgroupSock
  8554. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sock::CgroupSock
  8555. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sock::CgroupSock
  8556. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sock::CgroupSock where U: core::convert::From<T>
  8557. pub fn aya::programs::cgroup_sock::CgroupSock::into(self) -> U
  8558. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sock::CgroupSock where U: core::convert::Into<T>
  8559. pub type aya::programs::cgroup_sock::CgroupSock::Error = core::convert::Infallible
  8560. pub fn aya::programs::cgroup_sock::CgroupSock::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8561. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sock::CgroupSock where U: core::convert::TryFrom<T>
  8562. pub type aya::programs::cgroup_sock::CgroupSock::Error = <U as core::convert::TryFrom<T>>::Error
  8563. pub fn aya::programs::cgroup_sock::CgroupSock::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8564. impl<T> core::any::Any for aya::programs::cgroup_sock::CgroupSock where T: 'static + ?core::marker::Sized
  8565. pub fn aya::programs::cgroup_sock::CgroupSock::type_id(&self) -> core::any::TypeId
  8566. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sock::CgroupSock where T: ?core::marker::Sized
  8567. pub fn aya::programs::cgroup_sock::CgroupSock::borrow(&self) -> &T
  8568. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sock::CgroupSock where T: ?core::marker::Sized
  8569. pub fn aya::programs::cgroup_sock::CgroupSock::borrow_mut(&mut self) -> &mut T
  8570. impl<T> core::convert::From<T> for aya::programs::cgroup_sock::CgroupSock
  8571. pub fn aya::programs::cgroup_sock::CgroupSock::from(t: T) -> T
  8572. pub struct aya::programs::CgroupSockAddr
  8573. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  8574. pub const aya::programs::cgroup_sock_addr::CgroupSockAddr::PROGRAM_TYPE: aya::programs::ProgramType
  8575. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T, mode: aya::programs::links::CgroupAttachMode) -> core::result::Result<aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId, aya::programs::ProgramError>
  8576. 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>
  8577. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8578. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  8579. 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>
  8580. 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>
  8581. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  8582. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  8583. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  8584. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  8585. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  8586. 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>
  8587. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::unpin(self) -> core::result::Result<(), std::io::error::Error>
  8588. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  8589. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8590. impl core::fmt::Debug for aya::programs::cgroup_sock_addr::CgroupSockAddr
  8591. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8592. impl core::ops::drop::Drop for aya::programs::cgroup_sock_addr::CgroupSockAddr
  8593. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::drop(&mut self)
  8594. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sock_addr::CgroupSockAddr
  8595. pub type &'a aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = aya::programs::ProgramError
  8596. 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>
  8597. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr
  8598. pub type &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = aya::programs::ProgramError
  8599. 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>
  8600. impl core::marker::Freeze for aya::programs::cgroup_sock_addr::CgroupSockAddr
  8601. impl core::marker::Send for aya::programs::cgroup_sock_addr::CgroupSockAddr
  8602. impl core::marker::Sync for aya::programs::cgroup_sock_addr::CgroupSockAddr
  8603. impl core::marker::Unpin for aya::programs::cgroup_sock_addr::CgroupSockAddr
  8604. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sock_addr::CgroupSockAddr
  8605. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sock_addr::CgroupSockAddr
  8606. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sock_addr::CgroupSockAddr where U: core::convert::From<T>
  8607. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::into(self) -> U
  8608. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sock_addr::CgroupSockAddr where U: core::convert::Into<T>
  8609. pub type aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = core::convert::Infallible
  8610. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8611. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sock_addr::CgroupSockAddr where U: core::convert::TryFrom<T>
  8612. pub type aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = <U as core::convert::TryFrom<T>>::Error
  8613. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8614. impl<T> core::any::Any for aya::programs::cgroup_sock_addr::CgroupSockAddr where T: 'static + ?core::marker::Sized
  8615. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::type_id(&self) -> core::any::TypeId
  8616. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sock_addr::CgroupSockAddr where T: ?core::marker::Sized
  8617. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::borrow(&self) -> &T
  8618. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sock_addr::CgroupSockAddr where T: ?core::marker::Sized
  8619. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::borrow_mut(&mut self) -> &mut T
  8620. impl<T> core::convert::From<T> for aya::programs::cgroup_sock_addr::CgroupSockAddr
  8621. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::from(t: T) -> T
  8622. pub struct aya::programs::CgroupSockopt
  8623. impl aya::programs::cgroup_sockopt::CgroupSockopt
  8624. pub const aya::programs::cgroup_sockopt::CgroupSockopt::PROGRAM_TYPE: aya::programs::ProgramType
  8625. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T, mode: aya::programs::links::CgroupAttachMode) -> core::result::Result<aya::programs::cgroup_sockopt::CgroupSockoptLinkId, aya::programs::ProgramError>
  8626. 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>
  8627. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8628. impl aya::programs::cgroup_sockopt::CgroupSockopt
  8629. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::detach(&mut self, link_id: aya::programs::cgroup_sockopt::CgroupSockoptLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  8630. 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>
  8631. impl aya::programs::cgroup_sockopt::CgroupSockopt
  8632. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  8633. impl aya::programs::cgroup_sockopt::CgroupSockopt
  8634. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>, attach_type: aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  8635. impl aya::programs::cgroup_sockopt::CgroupSockopt
  8636. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  8637. impl aya::programs::cgroup_sockopt::CgroupSockopt
  8638. 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>
  8639. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::unpin(self) -> core::result::Result<(), std::io::error::Error>
  8640. impl aya::programs::cgroup_sockopt::CgroupSockopt
  8641. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8642. impl core::fmt::Debug for aya::programs::cgroup_sockopt::CgroupSockopt
  8643. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8644. impl core::ops::drop::Drop for aya::programs::cgroup_sockopt::CgroupSockopt
  8645. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::drop(&mut self)
  8646. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sockopt::CgroupSockopt
  8647. pub type &'a aya::programs::cgroup_sockopt::CgroupSockopt::Error = aya::programs::ProgramError
  8648. 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>
  8649. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sockopt::CgroupSockopt
  8650. pub type &'a mut aya::programs::cgroup_sockopt::CgroupSockopt::Error = aya::programs::ProgramError
  8651. 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>
  8652. impl core::marker::Freeze for aya::programs::cgroup_sockopt::CgroupSockopt
  8653. impl core::marker::Send for aya::programs::cgroup_sockopt::CgroupSockopt
  8654. impl core::marker::Sync for aya::programs::cgroup_sockopt::CgroupSockopt
  8655. impl core::marker::Unpin for aya::programs::cgroup_sockopt::CgroupSockopt
  8656. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sockopt::CgroupSockopt
  8657. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sockopt::CgroupSockopt
  8658. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sockopt::CgroupSockopt where U: core::convert::From<T>
  8659. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::into(self) -> U
  8660. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sockopt::CgroupSockopt where U: core::convert::Into<T>
  8661. pub type aya::programs::cgroup_sockopt::CgroupSockopt::Error = core::convert::Infallible
  8662. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8663. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sockopt::CgroupSockopt where U: core::convert::TryFrom<T>
  8664. pub type aya::programs::cgroup_sockopt::CgroupSockopt::Error = <U as core::convert::TryFrom<T>>::Error
  8665. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8666. impl<T> core::any::Any for aya::programs::cgroup_sockopt::CgroupSockopt where T: 'static + ?core::marker::Sized
  8667. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::type_id(&self) -> core::any::TypeId
  8668. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sockopt::CgroupSockopt where T: ?core::marker::Sized
  8669. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::borrow(&self) -> &T
  8670. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sockopt::CgroupSockopt where T: ?core::marker::Sized
  8671. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::borrow_mut(&mut self) -> &mut T
  8672. impl<T> core::convert::From<T> for aya::programs::cgroup_sockopt::CgroupSockopt
  8673. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::from(t: T) -> T
  8674. pub struct aya::programs::CgroupSysctl
  8675. impl aya::programs::cgroup_sysctl::CgroupSysctl
  8676. pub const aya::programs::cgroup_sysctl::CgroupSysctl::PROGRAM_TYPE: aya::programs::ProgramType
  8677. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T, mode: aya::programs::links::CgroupAttachMode) -> core::result::Result<aya::programs::cgroup_sysctl::CgroupSysctlLinkId, aya::programs::ProgramError>
  8678. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8679. impl aya::programs::cgroup_sysctl::CgroupSysctl
  8680. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::detach(&mut self, link_id: aya::programs::cgroup_sysctl::CgroupSysctlLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  8681. 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>
  8682. impl aya::programs::cgroup_sysctl::CgroupSysctl
  8683. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  8684. impl aya::programs::cgroup_sysctl::CgroupSysctl
  8685. 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>
  8686. impl aya::programs::cgroup_sysctl::CgroupSysctl
  8687. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  8688. impl aya::programs::cgroup_sysctl::CgroupSysctl
  8689. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  8690. impl aya::programs::cgroup_sysctl::CgroupSysctl
  8691. 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>
  8692. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::unpin(self) -> core::result::Result<(), std::io::error::Error>
  8693. impl aya::programs::cgroup_sysctl::CgroupSysctl
  8694. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8695. impl core::fmt::Debug for aya::programs::cgroup_sysctl::CgroupSysctl
  8696. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8697. impl core::ops::drop::Drop for aya::programs::cgroup_sysctl::CgroupSysctl
  8698. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::drop(&mut self)
  8699. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sysctl::CgroupSysctl
  8700. pub type &'a aya::programs::cgroup_sysctl::CgroupSysctl::Error = aya::programs::ProgramError
  8701. 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>
  8702. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sysctl::CgroupSysctl
  8703. pub type &'a mut aya::programs::cgroup_sysctl::CgroupSysctl::Error = aya::programs::ProgramError
  8704. 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>
  8705. impl core::marker::Freeze for aya::programs::cgroup_sysctl::CgroupSysctl
  8706. impl core::marker::Send for aya::programs::cgroup_sysctl::CgroupSysctl
  8707. impl core::marker::Sync for aya::programs::cgroup_sysctl::CgroupSysctl
  8708. impl core::marker::Unpin for aya::programs::cgroup_sysctl::CgroupSysctl
  8709. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sysctl::CgroupSysctl
  8710. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sysctl::CgroupSysctl
  8711. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sysctl::CgroupSysctl where U: core::convert::From<T>
  8712. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::into(self) -> U
  8713. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sysctl::CgroupSysctl where U: core::convert::Into<T>
  8714. pub type aya::programs::cgroup_sysctl::CgroupSysctl::Error = core::convert::Infallible
  8715. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8716. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sysctl::CgroupSysctl where U: core::convert::TryFrom<T>
  8717. pub type aya::programs::cgroup_sysctl::CgroupSysctl::Error = <U as core::convert::TryFrom<T>>::Error
  8718. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8719. impl<T> core::any::Any for aya::programs::cgroup_sysctl::CgroupSysctl where T: 'static + ?core::marker::Sized
  8720. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::type_id(&self) -> core::any::TypeId
  8721. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sysctl::CgroupSysctl where T: ?core::marker::Sized
  8722. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::borrow(&self) -> &T
  8723. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sysctl::CgroupSysctl where T: ?core::marker::Sized
  8724. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::borrow_mut(&mut self) -> &mut T
  8725. impl<T> core::convert::From<T> for aya::programs::cgroup_sysctl::CgroupSysctl
  8726. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::from(t: T) -> T
  8727. pub struct aya::programs::Extension
  8728. impl aya::programs::extension::Extension
  8729. pub const aya::programs::extension::Extension::PROGRAM_TYPE: aya::programs::ProgramType
  8730. pub fn aya::programs::extension::Extension::attach(&mut self) -> core::result::Result<aya::programs::extension::ExtensionLinkId, aya::programs::ProgramError>
  8731. 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>
  8732. pub fn aya::programs::extension::Extension::load(&mut self, program: aya::programs::ProgramFd, func_name: &str) -> core::result::Result<(), aya::programs::ProgramError>
  8733. impl aya::programs::extension::Extension
  8734. pub fn aya::programs::extension::Extension::detach(&mut self, link_id: aya::programs::extension::ExtensionLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  8735. 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>
  8736. impl aya::programs::extension::Extension
  8737. pub fn aya::programs::extension::Extension::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  8738. impl aya::programs::extension::Extension
  8739. pub fn aya::programs::extension::Extension::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  8740. impl aya::programs::extension::Extension
  8741. pub fn aya::programs::extension::Extension::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  8742. impl aya::programs::extension::Extension
  8743. pub fn aya::programs::extension::Extension::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  8744. impl aya::programs::extension::Extension
  8745. pub fn aya::programs::extension::Extension::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  8746. pub fn aya::programs::extension::Extension::unpin(self) -> core::result::Result<(), std::io::error::Error>
  8747. impl aya::programs::extension::Extension
  8748. pub fn aya::programs::extension::Extension::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8749. impl core::fmt::Debug for aya::programs::extension::Extension
  8750. pub fn aya::programs::extension::Extension::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8751. impl core::ops::drop::Drop for aya::programs::extension::Extension
  8752. pub fn aya::programs::extension::Extension::drop(&mut self)
  8753. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::extension::Extension
  8754. pub type &'a aya::programs::extension::Extension::Error = aya::programs::ProgramError
  8755. 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>
  8756. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::extension::Extension
  8757. pub type &'a mut aya::programs::extension::Extension::Error = aya::programs::ProgramError
  8758. 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>
  8759. impl core::marker::Freeze for aya::programs::extension::Extension
  8760. impl core::marker::Send for aya::programs::extension::Extension
  8761. impl core::marker::Sync for aya::programs::extension::Extension
  8762. impl core::marker::Unpin for aya::programs::extension::Extension
  8763. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::extension::Extension
  8764. impl core::panic::unwind_safe::UnwindSafe for aya::programs::extension::Extension
  8765. impl<T, U> core::convert::Into<U> for aya::programs::extension::Extension where U: core::convert::From<T>
  8766. pub fn aya::programs::extension::Extension::into(self) -> U
  8767. impl<T, U> core::convert::TryFrom<U> for aya::programs::extension::Extension where U: core::convert::Into<T>
  8768. pub type aya::programs::extension::Extension::Error = core::convert::Infallible
  8769. pub fn aya::programs::extension::Extension::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8770. impl<T, U> core::convert::TryInto<U> for aya::programs::extension::Extension where U: core::convert::TryFrom<T>
  8771. pub type aya::programs::extension::Extension::Error = <U as core::convert::TryFrom<T>>::Error
  8772. pub fn aya::programs::extension::Extension::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8773. impl<T> core::any::Any for aya::programs::extension::Extension where T: 'static + ?core::marker::Sized
  8774. pub fn aya::programs::extension::Extension::type_id(&self) -> core::any::TypeId
  8775. impl<T> core::borrow::Borrow<T> for aya::programs::extension::Extension where T: ?core::marker::Sized
  8776. pub fn aya::programs::extension::Extension::borrow(&self) -> &T
  8777. impl<T> core::borrow::BorrowMut<T> for aya::programs::extension::Extension where T: ?core::marker::Sized
  8778. pub fn aya::programs::extension::Extension::borrow_mut(&mut self) -> &mut T
  8779. impl<T> core::convert::From<T> for aya::programs::extension::Extension
  8780. pub fn aya::programs::extension::Extension::from(t: T) -> T
  8781. pub struct aya::programs::FEntry
  8782. impl aya::programs::fentry::FEntry
  8783. pub const aya::programs::fentry::FEntry::PROGRAM_TYPE: aya::programs::ProgramType
  8784. pub fn aya::programs::fentry::FEntry::attach(&mut self) -> core::result::Result<aya::programs::fentry::FEntryLinkId, aya::programs::ProgramError>
  8785. pub fn aya::programs::fentry::FEntry::load(&mut self, fn_name: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError>
  8786. impl aya::programs::fentry::FEntry
  8787. pub fn aya::programs::fentry::FEntry::detach(&mut self, link_id: aya::programs::fentry::FEntryLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  8788. 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>
  8789. impl aya::programs::fentry::FEntry
  8790. pub fn aya::programs::fentry::FEntry::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  8791. impl aya::programs::fentry::FEntry
  8792. pub fn aya::programs::fentry::FEntry::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  8793. impl aya::programs::fentry::FEntry
  8794. pub unsafe fn aya::programs::fentry::FEntry::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  8795. impl aya::programs::fentry::FEntry
  8796. pub fn aya::programs::fentry::FEntry::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  8797. impl aya::programs::fentry::FEntry
  8798. pub fn aya::programs::fentry::FEntry::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  8799. pub fn aya::programs::fentry::FEntry::unpin(self) -> core::result::Result<(), std::io::error::Error>
  8800. impl aya::programs::fentry::FEntry
  8801. pub fn aya::programs::fentry::FEntry::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8802. impl core::fmt::Debug for aya::programs::fentry::FEntry
  8803. pub fn aya::programs::fentry::FEntry::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8804. impl core::ops::drop::Drop for aya::programs::fentry::FEntry
  8805. pub fn aya::programs::fentry::FEntry::drop(&mut self)
  8806. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::fentry::FEntry
  8807. pub type &'a aya::programs::fentry::FEntry::Error = aya::programs::ProgramError
  8808. 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>
  8809. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::fentry::FEntry
  8810. pub type &'a mut aya::programs::fentry::FEntry::Error = aya::programs::ProgramError
  8811. 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>
  8812. impl core::marker::Freeze for aya::programs::fentry::FEntry
  8813. impl core::marker::Send for aya::programs::fentry::FEntry
  8814. impl core::marker::Sync for aya::programs::fentry::FEntry
  8815. impl core::marker::Unpin for aya::programs::fentry::FEntry
  8816. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::fentry::FEntry
  8817. impl core::panic::unwind_safe::UnwindSafe for aya::programs::fentry::FEntry
  8818. impl<T, U> core::convert::Into<U> for aya::programs::fentry::FEntry where U: core::convert::From<T>
  8819. pub fn aya::programs::fentry::FEntry::into(self) -> U
  8820. impl<T, U> core::convert::TryFrom<U> for aya::programs::fentry::FEntry where U: core::convert::Into<T>
  8821. pub type aya::programs::fentry::FEntry::Error = core::convert::Infallible
  8822. pub fn aya::programs::fentry::FEntry::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8823. impl<T, U> core::convert::TryInto<U> for aya::programs::fentry::FEntry where U: core::convert::TryFrom<T>
  8824. pub type aya::programs::fentry::FEntry::Error = <U as core::convert::TryFrom<T>>::Error
  8825. pub fn aya::programs::fentry::FEntry::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8826. impl<T> core::any::Any for aya::programs::fentry::FEntry where T: 'static + ?core::marker::Sized
  8827. pub fn aya::programs::fentry::FEntry::type_id(&self) -> core::any::TypeId
  8828. impl<T> core::borrow::Borrow<T> for aya::programs::fentry::FEntry where T: ?core::marker::Sized
  8829. pub fn aya::programs::fentry::FEntry::borrow(&self) -> &T
  8830. impl<T> core::borrow::BorrowMut<T> for aya::programs::fentry::FEntry where T: ?core::marker::Sized
  8831. pub fn aya::programs::fentry::FEntry::borrow_mut(&mut self) -> &mut T
  8832. impl<T> core::convert::From<T> for aya::programs::fentry::FEntry
  8833. pub fn aya::programs::fentry::FEntry::from(t: T) -> T
  8834. pub struct aya::programs::FExit
  8835. impl aya::programs::fexit::FExit
  8836. pub const aya::programs::fexit::FExit::PROGRAM_TYPE: aya::programs::ProgramType
  8837. pub fn aya::programs::fexit::FExit::attach(&mut self) -> core::result::Result<aya::programs::fexit::FExitLinkId, aya::programs::ProgramError>
  8838. pub fn aya::programs::fexit::FExit::load(&mut self, fn_name: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError>
  8839. impl aya::programs::fexit::FExit
  8840. pub fn aya::programs::fexit::FExit::detach(&mut self, link_id: aya::programs::fexit::FExitLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  8841. 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>
  8842. impl aya::programs::fexit::FExit
  8843. pub fn aya::programs::fexit::FExit::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  8844. impl aya::programs::fexit::FExit
  8845. pub fn aya::programs::fexit::FExit::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  8846. impl aya::programs::fexit::FExit
  8847. pub unsafe fn aya::programs::fexit::FExit::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  8848. impl aya::programs::fexit::FExit
  8849. pub fn aya::programs::fexit::FExit::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  8850. impl aya::programs::fexit::FExit
  8851. pub fn aya::programs::fexit::FExit::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  8852. pub fn aya::programs::fexit::FExit::unpin(self) -> core::result::Result<(), std::io::error::Error>
  8853. impl aya::programs::fexit::FExit
  8854. pub fn aya::programs::fexit::FExit::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8855. impl core::fmt::Debug for aya::programs::fexit::FExit
  8856. pub fn aya::programs::fexit::FExit::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8857. impl core::ops::drop::Drop for aya::programs::fexit::FExit
  8858. pub fn aya::programs::fexit::FExit::drop(&mut self)
  8859. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::fexit::FExit
  8860. pub type &'a aya::programs::fexit::FExit::Error = aya::programs::ProgramError
  8861. 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>
  8862. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::fexit::FExit
  8863. pub type &'a mut aya::programs::fexit::FExit::Error = aya::programs::ProgramError
  8864. 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>
  8865. impl core::marker::Freeze for aya::programs::fexit::FExit
  8866. impl core::marker::Send for aya::programs::fexit::FExit
  8867. impl core::marker::Sync for aya::programs::fexit::FExit
  8868. impl core::marker::Unpin for aya::programs::fexit::FExit
  8869. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::fexit::FExit
  8870. impl core::panic::unwind_safe::UnwindSafe for aya::programs::fexit::FExit
  8871. impl<T, U> core::convert::Into<U> for aya::programs::fexit::FExit where U: core::convert::From<T>
  8872. pub fn aya::programs::fexit::FExit::into(self) -> U
  8873. impl<T, U> core::convert::TryFrom<U> for aya::programs::fexit::FExit where U: core::convert::Into<T>
  8874. pub type aya::programs::fexit::FExit::Error = core::convert::Infallible
  8875. pub fn aya::programs::fexit::FExit::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8876. impl<T, U> core::convert::TryInto<U> for aya::programs::fexit::FExit where U: core::convert::TryFrom<T>
  8877. pub type aya::programs::fexit::FExit::Error = <U as core::convert::TryFrom<T>>::Error
  8878. pub fn aya::programs::fexit::FExit::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8879. impl<T> core::any::Any for aya::programs::fexit::FExit where T: 'static + ?core::marker::Sized
  8880. pub fn aya::programs::fexit::FExit::type_id(&self) -> core::any::TypeId
  8881. impl<T> core::borrow::Borrow<T> for aya::programs::fexit::FExit where T: ?core::marker::Sized
  8882. pub fn aya::programs::fexit::FExit::borrow(&self) -> &T
  8883. impl<T> core::borrow::BorrowMut<T> for aya::programs::fexit::FExit where T: ?core::marker::Sized
  8884. pub fn aya::programs::fexit::FExit::borrow_mut(&mut self) -> &mut T
  8885. impl<T> core::convert::From<T> for aya::programs::fexit::FExit
  8886. pub fn aya::programs::fexit::FExit::from(t: T) -> T
  8887. pub struct aya::programs::FlowDissector
  8888. impl aya::programs::flow_dissector::FlowDissector
  8889. pub const aya::programs::flow_dissector::FlowDissector::PROGRAM_TYPE: aya::programs::ProgramType
  8890. pub fn aya::programs::flow_dissector::FlowDissector::attach<T: std::os::fd::owned::AsFd>(&mut self, netns: T) -> core::result::Result<aya::programs::flow_dissector::FlowDissectorLinkId, aya::programs::ProgramError>
  8891. pub fn aya::programs::flow_dissector::FlowDissector::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8892. impl aya::programs::flow_dissector::FlowDissector
  8893. pub fn aya::programs::flow_dissector::FlowDissector::detach(&mut self, link_id: aya::programs::flow_dissector::FlowDissectorLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  8894. pub fn aya::programs::flow_dissector::FlowDissector::take_link(&mut self, link_id: aya::programs::flow_dissector::FlowDissectorLinkId) -> core::result::Result<aya::programs::flow_dissector::FlowDissectorLink, aya::programs::ProgramError>
  8895. impl aya::programs::flow_dissector::FlowDissector
  8896. pub fn aya::programs::flow_dissector::FlowDissector::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  8897. impl aya::programs::flow_dissector::FlowDissector
  8898. pub fn aya::programs::flow_dissector::FlowDissector::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  8899. impl aya::programs::flow_dissector::FlowDissector
  8900. pub fn aya::programs::flow_dissector::FlowDissector::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  8901. impl aya::programs::flow_dissector::FlowDissector
  8902. pub fn aya::programs::flow_dissector::FlowDissector::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  8903. pub fn aya::programs::flow_dissector::FlowDissector::unpin(self) -> core::result::Result<(), std::io::error::Error>
  8904. impl aya::programs::flow_dissector::FlowDissector
  8905. pub fn aya::programs::flow_dissector::FlowDissector::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8906. impl core::fmt::Debug for aya::programs::flow_dissector::FlowDissector
  8907. pub fn aya::programs::flow_dissector::FlowDissector::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8908. impl core::ops::drop::Drop for aya::programs::flow_dissector::FlowDissector
  8909. pub fn aya::programs::flow_dissector::FlowDissector::drop(&mut self)
  8910. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::flow_dissector::FlowDissector
  8911. pub type &'a aya::programs::flow_dissector::FlowDissector::Error = aya::programs::ProgramError
  8912. pub fn &'a aya::programs::flow_dissector::FlowDissector::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::flow_dissector::FlowDissector, aya::programs::ProgramError>
  8913. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::flow_dissector::FlowDissector
  8914. pub type &'a mut aya::programs::flow_dissector::FlowDissector::Error = aya::programs::ProgramError
  8915. pub fn &'a mut aya::programs::flow_dissector::FlowDissector::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::flow_dissector::FlowDissector, aya::programs::ProgramError>
  8916. impl core::marker::Freeze for aya::programs::flow_dissector::FlowDissector
  8917. impl core::marker::Send for aya::programs::flow_dissector::FlowDissector
  8918. impl core::marker::Sync for aya::programs::flow_dissector::FlowDissector
  8919. impl core::marker::Unpin for aya::programs::flow_dissector::FlowDissector
  8920. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::flow_dissector::FlowDissector
  8921. impl core::panic::unwind_safe::UnwindSafe for aya::programs::flow_dissector::FlowDissector
  8922. impl<T, U> core::convert::Into<U> for aya::programs::flow_dissector::FlowDissector where U: core::convert::From<T>
  8923. pub fn aya::programs::flow_dissector::FlowDissector::into(self) -> U
  8924. impl<T, U> core::convert::TryFrom<U> for aya::programs::flow_dissector::FlowDissector where U: core::convert::Into<T>
  8925. pub type aya::programs::flow_dissector::FlowDissector::Error = core::convert::Infallible
  8926. pub fn aya::programs::flow_dissector::FlowDissector::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8927. impl<T, U> core::convert::TryInto<U> for aya::programs::flow_dissector::FlowDissector where U: core::convert::TryFrom<T>
  8928. pub type aya::programs::flow_dissector::FlowDissector::Error = <U as core::convert::TryFrom<T>>::Error
  8929. pub fn aya::programs::flow_dissector::FlowDissector::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8930. impl<T> core::any::Any for aya::programs::flow_dissector::FlowDissector where T: 'static + ?core::marker::Sized
  8931. pub fn aya::programs::flow_dissector::FlowDissector::type_id(&self) -> core::any::TypeId
  8932. impl<T> core::borrow::Borrow<T> for aya::programs::flow_dissector::FlowDissector where T: ?core::marker::Sized
  8933. pub fn aya::programs::flow_dissector::FlowDissector::borrow(&self) -> &T
  8934. impl<T> core::borrow::BorrowMut<T> for aya::programs::flow_dissector::FlowDissector where T: ?core::marker::Sized
  8935. pub fn aya::programs::flow_dissector::FlowDissector::borrow_mut(&mut self) -> &mut T
  8936. impl<T> core::convert::From<T> for aya::programs::flow_dissector::FlowDissector
  8937. pub fn aya::programs::flow_dissector::FlowDissector::from(t: T) -> T
  8938. pub struct aya::programs::Iter
  8939. impl aya::programs::iter::Iter
  8940. pub const aya::programs::iter::Iter::PROGRAM_TYPE: aya::programs::ProgramType
  8941. pub fn aya::programs::iter::Iter::attach(&mut self) -> core::result::Result<aya::programs::iter::IterLinkId, aya::programs::ProgramError>
  8942. pub fn aya::programs::iter::Iter::load(&mut self, iter_type: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError>
  8943. impl aya::programs::iter::Iter
  8944. pub fn aya::programs::iter::Iter::detach(&mut self, link_id: aya::programs::iter::IterLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  8945. pub fn aya::programs::iter::Iter::take_link(&mut self, link_id: aya::programs::iter::IterLinkId) -> core::result::Result<aya::programs::iter::IterLink, aya::programs::ProgramError>
  8946. impl aya::programs::iter::Iter
  8947. pub fn aya::programs::iter::Iter::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  8948. impl aya::programs::iter::Iter
  8949. pub fn aya::programs::iter::Iter::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  8950. impl aya::programs::iter::Iter
  8951. pub fn aya::programs::iter::Iter::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  8952. impl aya::programs::iter::Iter
  8953. pub fn aya::programs::iter::Iter::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  8954. impl aya::programs::iter::Iter
  8955. pub fn aya::programs::iter::Iter::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  8956. pub fn aya::programs::iter::Iter::unpin(self) -> core::result::Result<(), std::io::error::Error>
  8957. impl aya::programs::iter::Iter
  8958. pub fn aya::programs::iter::Iter::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8959. impl core::fmt::Debug for aya::programs::iter::Iter
  8960. pub fn aya::programs::iter::Iter::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8961. impl core::ops::drop::Drop for aya::programs::iter::Iter
  8962. pub fn aya::programs::iter::Iter::drop(&mut self)
  8963. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::iter::Iter
  8964. pub type &'a aya::programs::iter::Iter::Error = aya::programs::ProgramError
  8965. pub fn &'a aya::programs::iter::Iter::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::iter::Iter, aya::programs::ProgramError>
  8966. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::iter::Iter
  8967. pub type &'a mut aya::programs::iter::Iter::Error = aya::programs::ProgramError
  8968. pub fn &'a mut aya::programs::iter::Iter::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::iter::Iter, aya::programs::ProgramError>
  8969. impl core::marker::Freeze for aya::programs::iter::Iter
  8970. impl core::marker::Send for aya::programs::iter::Iter
  8971. impl core::marker::Sync for aya::programs::iter::Iter
  8972. impl core::marker::Unpin for aya::programs::iter::Iter
  8973. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::iter::Iter
  8974. impl core::panic::unwind_safe::UnwindSafe for aya::programs::iter::Iter
  8975. impl<T, U> core::convert::Into<U> for aya::programs::iter::Iter where U: core::convert::From<T>
  8976. pub fn aya::programs::iter::Iter::into(self) -> U
  8977. impl<T, U> core::convert::TryFrom<U> for aya::programs::iter::Iter where U: core::convert::Into<T>
  8978. pub type aya::programs::iter::Iter::Error = core::convert::Infallible
  8979. pub fn aya::programs::iter::Iter::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8980. impl<T, U> core::convert::TryInto<U> for aya::programs::iter::Iter where U: core::convert::TryFrom<T>
  8981. pub type aya::programs::iter::Iter::Error = <U as core::convert::TryFrom<T>>::Error
  8982. pub fn aya::programs::iter::Iter::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8983. impl<T> core::any::Any for aya::programs::iter::Iter where T: 'static + ?core::marker::Sized
  8984. pub fn aya::programs::iter::Iter::type_id(&self) -> core::any::TypeId
  8985. impl<T> core::borrow::Borrow<T> for aya::programs::iter::Iter where T: ?core::marker::Sized
  8986. pub fn aya::programs::iter::Iter::borrow(&self) -> &T
  8987. impl<T> core::borrow::BorrowMut<T> for aya::programs::iter::Iter where T: ?core::marker::Sized
  8988. pub fn aya::programs::iter::Iter::borrow_mut(&mut self) -> &mut T
  8989. impl<T> core::convert::From<T> for aya::programs::iter::Iter
  8990. pub fn aya::programs::iter::Iter::from(t: T) -> T
  8991. pub struct aya::programs::KProbe
  8992. impl aya::programs::kprobe::KProbe
  8993. pub const aya::programs::kprobe::KProbe::PROGRAM_TYPE: aya::programs::ProgramType
  8994. 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>
  8995. 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>
  8996. pub fn aya::programs::kprobe::KProbe::kind(&self) -> aya::programs::ProbeKind
  8997. pub fn aya::programs::kprobe::KProbe::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8998. impl aya::programs::kprobe::KProbe
  8999. pub fn aya::programs::kprobe::KProbe::detach(&mut self, link_id: aya::programs::kprobe::KProbeLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  9000. 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>
  9001. impl aya::programs::kprobe::KProbe
  9002. pub fn aya::programs::kprobe::KProbe::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  9003. impl aya::programs::kprobe::KProbe
  9004. pub unsafe fn aya::programs::kprobe::KProbe::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>, kind: aya::programs::ProbeKind) -> core::result::Result<Self, aya::programs::ProgramError>
  9005. impl aya::programs::kprobe::KProbe
  9006. pub fn aya::programs::kprobe::KProbe::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  9007. impl aya::programs::kprobe::KProbe
  9008. pub fn aya::programs::kprobe::KProbe::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  9009. pub fn aya::programs::kprobe::KProbe::unpin(self) -> core::result::Result<(), std::io::error::Error>
  9010. impl aya::programs::kprobe::KProbe
  9011. pub fn aya::programs::kprobe::KProbe::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9012. impl core::fmt::Debug for aya::programs::kprobe::KProbe
  9013. pub fn aya::programs::kprobe::KProbe::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9014. impl core::ops::drop::Drop for aya::programs::kprobe::KProbe
  9015. pub fn aya::programs::kprobe::KProbe::drop(&mut self)
  9016. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::kprobe::KProbe
  9017. pub type &'a aya::programs::kprobe::KProbe::Error = aya::programs::ProgramError
  9018. 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>
  9019. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::kprobe::KProbe
  9020. pub type &'a mut aya::programs::kprobe::KProbe::Error = aya::programs::ProgramError
  9021. 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>
  9022. impl core::marker::Freeze for aya::programs::kprobe::KProbe
  9023. impl core::marker::Send for aya::programs::kprobe::KProbe
  9024. impl core::marker::Sync for aya::programs::kprobe::KProbe
  9025. impl core::marker::Unpin for aya::programs::kprobe::KProbe
  9026. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::kprobe::KProbe
  9027. impl core::panic::unwind_safe::UnwindSafe for aya::programs::kprobe::KProbe
  9028. impl<T, U> core::convert::Into<U> for aya::programs::kprobe::KProbe where U: core::convert::From<T>
  9029. pub fn aya::programs::kprobe::KProbe::into(self) -> U
  9030. impl<T, U> core::convert::TryFrom<U> for aya::programs::kprobe::KProbe where U: core::convert::Into<T>
  9031. pub type aya::programs::kprobe::KProbe::Error = core::convert::Infallible
  9032. pub fn aya::programs::kprobe::KProbe::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9033. impl<T, U> core::convert::TryInto<U> for aya::programs::kprobe::KProbe where U: core::convert::TryFrom<T>
  9034. pub type aya::programs::kprobe::KProbe::Error = <U as core::convert::TryFrom<T>>::Error
  9035. pub fn aya::programs::kprobe::KProbe::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9036. impl<T> core::any::Any for aya::programs::kprobe::KProbe where T: 'static + ?core::marker::Sized
  9037. pub fn aya::programs::kprobe::KProbe::type_id(&self) -> core::any::TypeId
  9038. impl<T> core::borrow::Borrow<T> for aya::programs::kprobe::KProbe where T: ?core::marker::Sized
  9039. pub fn aya::programs::kprobe::KProbe::borrow(&self) -> &T
  9040. impl<T> core::borrow::BorrowMut<T> for aya::programs::kprobe::KProbe where T: ?core::marker::Sized
  9041. pub fn aya::programs::kprobe::KProbe::borrow_mut(&mut self) -> &mut T
  9042. impl<T> core::convert::From<T> for aya::programs::kprobe::KProbe
  9043. pub fn aya::programs::kprobe::KProbe::from(t: T) -> T
  9044. pub struct aya::programs::LinkOrder
  9045. impl aya::programs::links::LinkOrder
  9046. pub fn aya::programs::links::LinkOrder::after_link<L: aya::programs::MultiProgLink>(link: &L) -> core::result::Result<Self, aya::programs::links::LinkError>
  9047. pub fn aya::programs::links::LinkOrder::after_program<P: aya::programs::MultiProgram>(program: &P) -> core::result::Result<Self, aya::programs::ProgramError>
  9048. pub fn aya::programs::links::LinkOrder::after_program_id(id: aya::programs::ProgramId) -> Self
  9049. pub fn aya::programs::links::LinkOrder::before_link<L: aya::programs::MultiProgLink>(link: &L) -> core::result::Result<Self, aya::programs::links::LinkError>
  9050. pub fn aya::programs::links::LinkOrder::before_program<P: aya::programs::MultiProgram>(program: &P) -> core::result::Result<Self, aya::programs::ProgramError>
  9051. pub fn aya::programs::links::LinkOrder::before_program_id(id: aya::programs::ProgramId) -> Self
  9052. pub fn aya::programs::links::LinkOrder::first() -> Self
  9053. pub fn aya::programs::links::LinkOrder::last() -> Self
  9054. impl core::default::Default for aya::programs::links::LinkOrder
  9055. pub fn aya::programs::links::LinkOrder::default() -> Self
  9056. impl core::fmt::Debug for aya::programs::links::LinkOrder
  9057. pub fn aya::programs::links::LinkOrder::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9058. impl core::marker::Freeze for aya::programs::links::LinkOrder
  9059. impl core::marker::Send for aya::programs::links::LinkOrder
  9060. impl core::marker::Sync for aya::programs::links::LinkOrder
  9061. impl core::marker::Unpin for aya::programs::links::LinkOrder
  9062. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::LinkOrder
  9063. impl core::panic::unwind_safe::UnwindSafe for aya::programs::links::LinkOrder
  9064. impl<T, U> core::convert::Into<U> for aya::programs::links::LinkOrder where U: core::convert::From<T>
  9065. pub fn aya::programs::links::LinkOrder::into(self) -> U
  9066. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::LinkOrder where U: core::convert::Into<T>
  9067. pub type aya::programs::links::LinkOrder::Error = core::convert::Infallible
  9068. pub fn aya::programs::links::LinkOrder::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9069. impl<T, U> core::convert::TryInto<U> for aya::programs::links::LinkOrder where U: core::convert::TryFrom<T>
  9070. pub type aya::programs::links::LinkOrder::Error = <U as core::convert::TryFrom<T>>::Error
  9071. pub fn aya::programs::links::LinkOrder::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9072. impl<T> core::any::Any for aya::programs::links::LinkOrder where T: 'static + ?core::marker::Sized
  9073. pub fn aya::programs::links::LinkOrder::type_id(&self) -> core::any::TypeId
  9074. impl<T> core::borrow::Borrow<T> for aya::programs::links::LinkOrder where T: ?core::marker::Sized
  9075. pub fn aya::programs::links::LinkOrder::borrow(&self) -> &T
  9076. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::LinkOrder where T: ?core::marker::Sized
  9077. pub fn aya::programs::links::LinkOrder::borrow_mut(&mut self) -> &mut T
  9078. impl<T> core::convert::From<T> for aya::programs::links::LinkOrder
  9079. pub fn aya::programs::links::LinkOrder::from(t: T) -> T
  9080. pub struct aya::programs::LircMode2
  9081. impl aya::programs::lirc_mode2::LircMode2
  9082. pub const aya::programs::lirc_mode2::LircMode2::PROGRAM_TYPE: aya::programs::ProgramType
  9083. 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>
  9084. pub fn aya::programs::lirc_mode2::LircMode2::detach(&mut self, link_id: aya::programs::lirc_mode2::LircLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  9085. pub fn aya::programs::lirc_mode2::LircMode2::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9086. 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>
  9087. 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>
  9088. impl aya::programs::lirc_mode2::LircMode2
  9089. pub fn aya::programs::lirc_mode2::LircMode2::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  9090. impl aya::programs::lirc_mode2::LircMode2
  9091. 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>
  9092. impl aya::programs::lirc_mode2::LircMode2
  9093. pub fn aya::programs::lirc_mode2::LircMode2::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  9094. impl aya::programs::lirc_mode2::LircMode2
  9095. pub fn aya::programs::lirc_mode2::LircMode2::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  9096. impl aya::programs::lirc_mode2::LircMode2
  9097. 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>
  9098. pub fn aya::programs::lirc_mode2::LircMode2::unpin(self) -> core::result::Result<(), std::io::error::Error>
  9099. impl aya::programs::lirc_mode2::LircMode2
  9100. pub fn aya::programs::lirc_mode2::LircMode2::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9101. impl core::fmt::Debug for aya::programs::lirc_mode2::LircMode2
  9102. pub fn aya::programs::lirc_mode2::LircMode2::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9103. impl core::ops::drop::Drop for aya::programs::lirc_mode2::LircMode2
  9104. pub fn aya::programs::lirc_mode2::LircMode2::drop(&mut self)
  9105. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::lirc_mode2::LircMode2
  9106. pub type &'a aya::programs::lirc_mode2::LircMode2::Error = aya::programs::ProgramError
  9107. 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>
  9108. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::lirc_mode2::LircMode2
  9109. pub type &'a mut aya::programs::lirc_mode2::LircMode2::Error = aya::programs::ProgramError
  9110. 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>
  9111. impl core::marker::Freeze for aya::programs::lirc_mode2::LircMode2
  9112. impl core::marker::Send for aya::programs::lirc_mode2::LircMode2
  9113. impl core::marker::Sync for aya::programs::lirc_mode2::LircMode2
  9114. impl core::marker::Unpin for aya::programs::lirc_mode2::LircMode2
  9115. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::lirc_mode2::LircMode2
  9116. impl core::panic::unwind_safe::UnwindSafe for aya::programs::lirc_mode2::LircMode2
  9117. impl<T, U> core::convert::Into<U> for aya::programs::lirc_mode2::LircMode2 where U: core::convert::From<T>
  9118. pub fn aya::programs::lirc_mode2::LircMode2::into(self) -> U
  9119. impl<T, U> core::convert::TryFrom<U> for aya::programs::lirc_mode2::LircMode2 where U: core::convert::Into<T>
  9120. pub type aya::programs::lirc_mode2::LircMode2::Error = core::convert::Infallible
  9121. pub fn aya::programs::lirc_mode2::LircMode2::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9122. impl<T, U> core::convert::TryInto<U> for aya::programs::lirc_mode2::LircMode2 where U: core::convert::TryFrom<T>
  9123. pub type aya::programs::lirc_mode2::LircMode2::Error = <U as core::convert::TryFrom<T>>::Error
  9124. pub fn aya::programs::lirc_mode2::LircMode2::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9125. impl<T> core::any::Any for aya::programs::lirc_mode2::LircMode2 where T: 'static + ?core::marker::Sized
  9126. pub fn aya::programs::lirc_mode2::LircMode2::type_id(&self) -> core::any::TypeId
  9127. impl<T> core::borrow::Borrow<T> for aya::programs::lirc_mode2::LircMode2 where T: ?core::marker::Sized
  9128. pub fn aya::programs::lirc_mode2::LircMode2::borrow(&self) -> &T
  9129. impl<T> core::borrow::BorrowMut<T> for aya::programs::lirc_mode2::LircMode2 where T: ?core::marker::Sized
  9130. pub fn aya::programs::lirc_mode2::LircMode2::borrow_mut(&mut self) -> &mut T
  9131. impl<T> core::convert::From<T> for aya::programs::lirc_mode2::LircMode2
  9132. pub fn aya::programs::lirc_mode2::LircMode2::from(t: T) -> T
  9133. pub struct aya::programs::Lsm
  9134. impl aya::programs::lsm::Lsm
  9135. pub const aya::programs::lsm::Lsm::PROGRAM_TYPE: aya::programs::ProgramType
  9136. pub fn aya::programs::lsm::Lsm::attach(&mut self) -> core::result::Result<aya::programs::lsm::LsmLinkId, aya::programs::ProgramError>
  9137. 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>
  9138. impl aya::programs::lsm::Lsm
  9139. pub fn aya::programs::lsm::Lsm::detach(&mut self, link_id: aya::programs::lsm::LsmLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  9140. 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>
  9141. impl aya::programs::lsm::Lsm
  9142. pub fn aya::programs::lsm::Lsm::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  9143. impl aya::programs::lsm::Lsm
  9144. pub fn aya::programs::lsm::Lsm::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  9145. impl aya::programs::lsm::Lsm
  9146. pub fn aya::programs::lsm::Lsm::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  9147. impl aya::programs::lsm::Lsm
  9148. pub fn aya::programs::lsm::Lsm::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  9149. impl aya::programs::lsm::Lsm
  9150. pub fn aya::programs::lsm::Lsm::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  9151. pub fn aya::programs::lsm::Lsm::unpin(self) -> core::result::Result<(), std::io::error::Error>
  9152. impl aya::programs::lsm::Lsm
  9153. pub fn aya::programs::lsm::Lsm::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9154. impl core::fmt::Debug for aya::programs::lsm::Lsm
  9155. pub fn aya::programs::lsm::Lsm::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9156. impl core::ops::drop::Drop for aya::programs::lsm::Lsm
  9157. pub fn aya::programs::lsm::Lsm::drop(&mut self)
  9158. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::lsm::Lsm
  9159. pub type &'a aya::programs::lsm::Lsm::Error = aya::programs::ProgramError
  9160. 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>
  9161. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::lsm::Lsm
  9162. pub type &'a mut aya::programs::lsm::Lsm::Error = aya::programs::ProgramError
  9163. 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>
  9164. impl core::marker::Freeze for aya::programs::lsm::Lsm
  9165. impl core::marker::Send for aya::programs::lsm::Lsm
  9166. impl core::marker::Sync for aya::programs::lsm::Lsm
  9167. impl core::marker::Unpin for aya::programs::lsm::Lsm
  9168. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::lsm::Lsm
  9169. impl core::panic::unwind_safe::UnwindSafe for aya::programs::lsm::Lsm
  9170. impl<T, U> core::convert::Into<U> for aya::programs::lsm::Lsm where U: core::convert::From<T>
  9171. pub fn aya::programs::lsm::Lsm::into(self) -> U
  9172. impl<T, U> core::convert::TryFrom<U> for aya::programs::lsm::Lsm where U: core::convert::Into<T>
  9173. pub type aya::programs::lsm::Lsm::Error = core::convert::Infallible
  9174. pub fn aya::programs::lsm::Lsm::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9175. impl<T, U> core::convert::TryInto<U> for aya::programs::lsm::Lsm where U: core::convert::TryFrom<T>
  9176. pub type aya::programs::lsm::Lsm::Error = <U as core::convert::TryFrom<T>>::Error
  9177. pub fn aya::programs::lsm::Lsm::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9178. impl<T> core::any::Any for aya::programs::lsm::Lsm where T: 'static + ?core::marker::Sized
  9179. pub fn aya::programs::lsm::Lsm::type_id(&self) -> core::any::TypeId
  9180. impl<T> core::borrow::Borrow<T> for aya::programs::lsm::Lsm where T: ?core::marker::Sized
  9181. pub fn aya::programs::lsm::Lsm::borrow(&self) -> &T
  9182. impl<T> core::borrow::BorrowMut<T> for aya::programs::lsm::Lsm where T: ?core::marker::Sized
  9183. pub fn aya::programs::lsm::Lsm::borrow_mut(&mut self) -> &mut T
  9184. impl<T> core::convert::From<T> for aya::programs::lsm::Lsm
  9185. pub fn aya::programs::lsm::Lsm::from(t: T) -> T
  9186. pub struct aya::programs::PerfEvent
  9187. impl aya::programs::perf_event::PerfEvent
  9188. pub const aya::programs::perf_event::PerfEvent::PROGRAM_TYPE: aya::programs::ProgramType
  9189. 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>
  9190. pub fn aya::programs::perf_event::PerfEvent::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9191. impl aya::programs::perf_event::PerfEvent
  9192. pub fn aya::programs::perf_event::PerfEvent::detach(&mut self, link_id: aya::programs::perf_event::PerfEventLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  9193. 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>
  9194. impl aya::programs::perf_event::PerfEvent
  9195. pub fn aya::programs::perf_event::PerfEvent::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  9196. impl aya::programs::perf_event::PerfEvent
  9197. 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>
  9198. impl aya::programs::perf_event::PerfEvent
  9199. pub fn aya::programs::perf_event::PerfEvent::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  9200. impl aya::programs::perf_event::PerfEvent
  9201. pub fn aya::programs::perf_event::PerfEvent::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  9202. impl aya::programs::perf_event::PerfEvent
  9203. 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>
  9204. pub fn aya::programs::perf_event::PerfEvent::unpin(self) -> core::result::Result<(), std::io::error::Error>
  9205. impl aya::programs::perf_event::PerfEvent
  9206. pub fn aya::programs::perf_event::PerfEvent::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9207. impl core::fmt::Debug for aya::programs::perf_event::PerfEvent
  9208. pub fn aya::programs::perf_event::PerfEvent::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9209. impl core::ops::drop::Drop for aya::programs::perf_event::PerfEvent
  9210. pub fn aya::programs::perf_event::PerfEvent::drop(&mut self)
  9211. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::perf_event::PerfEvent
  9212. pub type &'a aya::programs::perf_event::PerfEvent::Error = aya::programs::ProgramError
  9213. 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>
  9214. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::perf_event::PerfEvent
  9215. pub type &'a mut aya::programs::perf_event::PerfEvent::Error = aya::programs::ProgramError
  9216. 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>
  9217. impl core::marker::Freeze for aya::programs::perf_event::PerfEvent
  9218. impl core::marker::Send for aya::programs::perf_event::PerfEvent
  9219. impl core::marker::Sync for aya::programs::perf_event::PerfEvent
  9220. impl core::marker::Unpin for aya::programs::perf_event::PerfEvent
  9221. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::PerfEvent
  9222. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::PerfEvent
  9223. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::PerfEvent where U: core::convert::From<T>
  9224. pub fn aya::programs::perf_event::PerfEvent::into(self) -> U
  9225. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::PerfEvent where U: core::convert::Into<T>
  9226. pub type aya::programs::perf_event::PerfEvent::Error = core::convert::Infallible
  9227. pub fn aya::programs::perf_event::PerfEvent::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9228. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_event::PerfEvent where U: core::convert::TryFrom<T>
  9229. pub type aya::programs::perf_event::PerfEvent::Error = <U as core::convert::TryFrom<T>>::Error
  9230. pub fn aya::programs::perf_event::PerfEvent::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9231. impl<T> core::any::Any for aya::programs::perf_event::PerfEvent where T: 'static + ?core::marker::Sized
  9232. pub fn aya::programs::perf_event::PerfEvent::type_id(&self) -> core::any::TypeId
  9233. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::PerfEvent where T: ?core::marker::Sized
  9234. pub fn aya::programs::perf_event::PerfEvent::borrow(&self) -> &T
  9235. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::PerfEvent where T: ?core::marker::Sized
  9236. pub fn aya::programs::perf_event::PerfEvent::borrow_mut(&mut self) -> &mut T
  9237. impl<T> core::convert::From<T> for aya::programs::perf_event::PerfEvent
  9238. pub fn aya::programs::perf_event::PerfEvent::from(t: T) -> T
  9239. pub struct aya::programs::ProgramFd(_)
  9240. impl aya::programs::ProgramFd
  9241. pub fn aya::programs::ProgramFd::try_clone(&self) -> std::io::error::Result<Self>
  9242. impl core::fmt::Debug for aya::programs::ProgramFd
  9243. pub fn aya::programs::ProgramFd::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9244. impl std::os::fd::owned::AsFd for aya::programs::ProgramFd
  9245. pub fn aya::programs::ProgramFd::as_fd(&self) -> std::os::fd::owned::BorrowedFd<'_>
  9246. impl core::marker::Freeze for aya::programs::ProgramFd
  9247. impl core::marker::Send for aya::programs::ProgramFd
  9248. impl core::marker::Sync for aya::programs::ProgramFd
  9249. impl core::marker::Unpin for aya::programs::ProgramFd
  9250. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::ProgramFd
  9251. impl core::panic::unwind_safe::UnwindSafe for aya::programs::ProgramFd
  9252. impl<T, U> core::convert::Into<U> for aya::programs::ProgramFd where U: core::convert::From<T>
  9253. pub fn aya::programs::ProgramFd::into(self) -> U
  9254. impl<T, U> core::convert::TryFrom<U> for aya::programs::ProgramFd where U: core::convert::Into<T>
  9255. pub type aya::programs::ProgramFd::Error = core::convert::Infallible
  9256. pub fn aya::programs::ProgramFd::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9257. impl<T, U> core::convert::TryInto<U> for aya::programs::ProgramFd where U: core::convert::TryFrom<T>
  9258. pub type aya::programs::ProgramFd::Error = <U as core::convert::TryFrom<T>>::Error
  9259. pub fn aya::programs::ProgramFd::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9260. impl<T> core::any::Any for aya::programs::ProgramFd where T: 'static + ?core::marker::Sized
  9261. pub fn aya::programs::ProgramFd::type_id(&self) -> core::any::TypeId
  9262. impl<T> core::borrow::Borrow<T> for aya::programs::ProgramFd where T: ?core::marker::Sized
  9263. pub fn aya::programs::ProgramFd::borrow(&self) -> &T
  9264. impl<T> core::borrow::BorrowMut<T> for aya::programs::ProgramFd where T: ?core::marker::Sized
  9265. pub fn aya::programs::ProgramFd::borrow_mut(&mut self) -> &mut T
  9266. impl<T> core::convert::From<T> for aya::programs::ProgramFd
  9267. pub fn aya::programs::ProgramFd::from(t: T) -> T
  9268. pub struct aya::programs::ProgramId(_)
  9269. impl aya::programs::ProgramId
  9270. pub unsafe fn aya::programs::ProgramId::new(id: u32) -> Self
  9271. impl core::marker::Freeze for aya::programs::ProgramId
  9272. impl core::marker::Send for aya::programs::ProgramId
  9273. impl core::marker::Sync for aya::programs::ProgramId
  9274. impl core::marker::Unpin for aya::programs::ProgramId
  9275. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::ProgramId
  9276. impl core::panic::unwind_safe::UnwindSafe for aya::programs::ProgramId
  9277. impl<T, U> core::convert::Into<U> for aya::programs::ProgramId where U: core::convert::From<T>
  9278. pub fn aya::programs::ProgramId::into(self) -> U
  9279. impl<T, U> core::convert::TryFrom<U> for aya::programs::ProgramId where U: core::convert::Into<T>
  9280. pub type aya::programs::ProgramId::Error = core::convert::Infallible
  9281. pub fn aya::programs::ProgramId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9282. impl<T, U> core::convert::TryInto<U> for aya::programs::ProgramId where U: core::convert::TryFrom<T>
  9283. pub type aya::programs::ProgramId::Error = <U as core::convert::TryFrom<T>>::Error
  9284. pub fn aya::programs::ProgramId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9285. impl<T> core::any::Any for aya::programs::ProgramId where T: 'static + ?core::marker::Sized
  9286. pub fn aya::programs::ProgramId::type_id(&self) -> core::any::TypeId
  9287. impl<T> core::borrow::Borrow<T> for aya::programs::ProgramId where T: ?core::marker::Sized
  9288. pub fn aya::programs::ProgramId::borrow(&self) -> &T
  9289. impl<T> core::borrow::BorrowMut<T> for aya::programs::ProgramId where T: ?core::marker::Sized
  9290. pub fn aya::programs::ProgramId::borrow_mut(&mut self) -> &mut T
  9291. impl<T> core::convert::From<T> for aya::programs::ProgramId
  9292. pub fn aya::programs::ProgramId::from(t: T) -> T
  9293. pub struct aya::programs::ProgramInfo(_)
  9294. impl aya::programs::ProgramInfo
  9295. pub fn aya::programs::ProgramInfo::btf_id(&self) -> core::option::Option<u32>
  9296. pub fn aya::programs::ProgramInfo::created_by_uid(&self) -> core::option::Option<u32>
  9297. pub fn aya::programs::ProgramInfo::fd(&self) -> core::result::Result<aya::programs::ProgramFd, aya::programs::ProgramError>
  9298. pub fn aya::programs::ProgramInfo::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  9299. pub fn aya::programs::ProgramInfo::gpl_compatible(&self) -> core::option::Option<bool>
  9300. pub fn aya::programs::ProgramInfo::id(&self) -> u32
  9301. pub fn aya::programs::ProgramInfo::loaded_at(&self) -> core::option::Option<std::time::SystemTime>
  9302. pub fn aya::programs::ProgramInfo::map_ids(&self) -> core::result::Result<core::option::Option<alloc::vec::Vec<u32>>, aya::programs::ProgramError>
  9303. pub fn aya::programs::ProgramInfo::memory_locked(&self) -> core::result::Result<u32, aya::programs::ProgramError>
  9304. pub fn aya::programs::ProgramInfo::name(&self) -> &[u8]
  9305. pub fn aya::programs::ProgramInfo::name_as_str(&self) -> core::option::Option<&str>
  9306. pub fn aya::programs::ProgramInfo::program_type(&self) -> core::result::Result<aya::programs::ProgramType, aya::programs::ProgramError>
  9307. pub fn aya::programs::ProgramInfo::run_count(&self) -> u64
  9308. pub fn aya::programs::ProgramInfo::run_time(&self) -> core::time::Duration
  9309. pub fn aya::programs::ProgramInfo::size_jitted(&self) -> u32
  9310. pub fn aya::programs::ProgramInfo::size_translated(&self) -> core::option::Option<u32>
  9311. pub fn aya::programs::ProgramInfo::tag(&self) -> u64
  9312. pub fn aya::programs::ProgramInfo::verified_instruction_count(&self) -> core::option::Option<u32>
  9313. impl core::fmt::Debug for aya::programs::ProgramInfo
  9314. pub fn aya::programs::ProgramInfo::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9315. impl core::marker::Freeze for aya::programs::ProgramInfo
  9316. impl core::marker::Send for aya::programs::ProgramInfo
  9317. impl core::marker::Sync for aya::programs::ProgramInfo
  9318. impl core::marker::Unpin for aya::programs::ProgramInfo
  9319. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::ProgramInfo
  9320. impl core::panic::unwind_safe::UnwindSafe for aya::programs::ProgramInfo
  9321. impl<T, U> core::convert::Into<U> for aya::programs::ProgramInfo where U: core::convert::From<T>
  9322. pub fn aya::programs::ProgramInfo::into(self) -> U
  9323. impl<T, U> core::convert::TryFrom<U> for aya::programs::ProgramInfo where U: core::convert::Into<T>
  9324. pub type aya::programs::ProgramInfo::Error = core::convert::Infallible
  9325. pub fn aya::programs::ProgramInfo::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9326. impl<T, U> core::convert::TryInto<U> for aya::programs::ProgramInfo where U: core::convert::TryFrom<T>
  9327. pub type aya::programs::ProgramInfo::Error = <U as core::convert::TryFrom<T>>::Error
  9328. pub fn aya::programs::ProgramInfo::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9329. impl<T> core::any::Any for aya::programs::ProgramInfo where T: 'static + ?core::marker::Sized
  9330. pub fn aya::programs::ProgramInfo::type_id(&self) -> core::any::TypeId
  9331. impl<T> core::borrow::Borrow<T> for aya::programs::ProgramInfo where T: ?core::marker::Sized
  9332. pub fn aya::programs::ProgramInfo::borrow(&self) -> &T
  9333. impl<T> core::borrow::BorrowMut<T> for aya::programs::ProgramInfo where T: ?core::marker::Sized
  9334. pub fn aya::programs::ProgramInfo::borrow_mut(&mut self) -> &mut T
  9335. impl<T> core::convert::From<T> for aya::programs::ProgramInfo
  9336. pub fn aya::programs::ProgramInfo::from(t: T) -> T
  9337. pub struct aya::programs::RawTracePoint
  9338. impl aya::programs::raw_trace_point::RawTracePoint
  9339. pub const aya::programs::raw_trace_point::RawTracePoint::PROGRAM_TYPE: aya::programs::ProgramType
  9340. pub fn aya::programs::raw_trace_point::RawTracePoint::attach(&mut self, tp_name: &str) -> core::result::Result<aya::programs::raw_trace_point::RawTracePointLinkId, aya::programs::ProgramError>
  9341. pub fn aya::programs::raw_trace_point::RawTracePoint::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9342. impl aya::programs::raw_trace_point::RawTracePoint
  9343. pub fn aya::programs::raw_trace_point::RawTracePoint::detach(&mut self, link_id: aya::programs::raw_trace_point::RawTracePointLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  9344. pub fn aya::programs::raw_trace_point::RawTracePoint::take_link(&mut self, link_id: aya::programs::raw_trace_point::RawTracePointLinkId) -> core::result::Result<aya::programs::raw_trace_point::RawTracePointLink, aya::programs::ProgramError>
  9345. impl aya::programs::raw_trace_point::RawTracePoint
  9346. pub fn aya::programs::raw_trace_point::RawTracePoint::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  9347. impl aya::programs::raw_trace_point::RawTracePoint
  9348. pub fn aya::programs::raw_trace_point::RawTracePoint::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  9349. impl aya::programs::raw_trace_point::RawTracePoint
  9350. pub fn aya::programs::raw_trace_point::RawTracePoint::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  9351. impl aya::programs::raw_trace_point::RawTracePoint
  9352. pub fn aya::programs::raw_trace_point::RawTracePoint::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  9353. impl aya::programs::raw_trace_point::RawTracePoint
  9354. pub fn aya::programs::raw_trace_point::RawTracePoint::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  9355. pub fn aya::programs::raw_trace_point::RawTracePoint::unpin(self) -> core::result::Result<(), std::io::error::Error>
  9356. impl aya::programs::raw_trace_point::RawTracePoint
  9357. pub fn aya::programs::raw_trace_point::RawTracePoint::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9358. impl core::fmt::Debug for aya::programs::raw_trace_point::RawTracePoint
  9359. pub fn aya::programs::raw_trace_point::RawTracePoint::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9360. impl core::ops::drop::Drop for aya::programs::raw_trace_point::RawTracePoint
  9361. pub fn aya::programs::raw_trace_point::RawTracePoint::drop(&mut self)
  9362. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::raw_trace_point::RawTracePoint
  9363. pub type &'a aya::programs::raw_trace_point::RawTracePoint::Error = aya::programs::ProgramError
  9364. pub fn &'a aya::programs::raw_trace_point::RawTracePoint::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::raw_trace_point::RawTracePoint, aya::programs::ProgramError>
  9365. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::raw_trace_point::RawTracePoint
  9366. pub type &'a mut aya::programs::raw_trace_point::RawTracePoint::Error = aya::programs::ProgramError
  9367. pub fn &'a mut aya::programs::raw_trace_point::RawTracePoint::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::raw_trace_point::RawTracePoint, aya::programs::ProgramError>
  9368. impl core::marker::Freeze for aya::programs::raw_trace_point::RawTracePoint
  9369. impl core::marker::Send for aya::programs::raw_trace_point::RawTracePoint
  9370. impl core::marker::Sync for aya::programs::raw_trace_point::RawTracePoint
  9371. impl core::marker::Unpin for aya::programs::raw_trace_point::RawTracePoint
  9372. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::raw_trace_point::RawTracePoint
  9373. impl core::panic::unwind_safe::UnwindSafe for aya::programs::raw_trace_point::RawTracePoint
  9374. impl<T, U> core::convert::Into<U> for aya::programs::raw_trace_point::RawTracePoint where U: core::convert::From<T>
  9375. pub fn aya::programs::raw_trace_point::RawTracePoint::into(self) -> U
  9376. impl<T, U> core::convert::TryFrom<U> for aya::programs::raw_trace_point::RawTracePoint where U: core::convert::Into<T>
  9377. pub type aya::programs::raw_trace_point::RawTracePoint::Error = core::convert::Infallible
  9378. pub fn aya::programs::raw_trace_point::RawTracePoint::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9379. impl<T, U> core::convert::TryInto<U> for aya::programs::raw_trace_point::RawTracePoint where U: core::convert::TryFrom<T>
  9380. pub type aya::programs::raw_trace_point::RawTracePoint::Error = <U as core::convert::TryFrom<T>>::Error
  9381. pub fn aya::programs::raw_trace_point::RawTracePoint::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9382. impl<T> core::any::Any for aya::programs::raw_trace_point::RawTracePoint where T: 'static + ?core::marker::Sized
  9383. pub fn aya::programs::raw_trace_point::RawTracePoint::type_id(&self) -> core::any::TypeId
  9384. impl<T> core::borrow::Borrow<T> for aya::programs::raw_trace_point::RawTracePoint where T: ?core::marker::Sized
  9385. pub fn aya::programs::raw_trace_point::RawTracePoint::borrow(&self) -> &T
  9386. impl<T> core::borrow::BorrowMut<T> for aya::programs::raw_trace_point::RawTracePoint where T: ?core::marker::Sized
  9387. pub fn aya::programs::raw_trace_point::RawTracePoint::borrow_mut(&mut self) -> &mut T
  9388. impl<T> core::convert::From<T> for aya::programs::raw_trace_point::RawTracePoint
  9389. pub fn aya::programs::raw_trace_point::RawTracePoint::from(t: T) -> T
  9390. pub struct aya::programs::SchedClassifier
  9391. impl aya::programs::tc::SchedClassifier
  9392. pub const aya::programs::tc::SchedClassifier::PROGRAM_TYPE: aya::programs::ProgramType
  9393. 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>
  9394. 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>
  9395. pub fn aya::programs::tc::SchedClassifier::attach_with_options(&mut self, interface: &str, attach_type: aya::programs::tc::TcAttachType, options: aya::programs::tc::TcAttachOptions) -> core::result::Result<aya::programs::tc::SchedClassifierLinkId, aya::programs::ProgramError>
  9396. pub fn aya::programs::tc::SchedClassifier::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  9397. pub fn aya::programs::tc::SchedClassifier::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9398. pub fn aya::programs::tc::SchedClassifier::query_tcx(interface: &str, attach_type: aya::programs::tc::TcAttachType) -> core::result::Result<(u64, alloc::vec::Vec<aya::programs::ProgramInfo>), aya::programs::ProgramError>
  9399. impl aya::programs::tc::SchedClassifier
  9400. pub fn aya::programs::tc::SchedClassifier::detach(&mut self, link_id: aya::programs::tc::SchedClassifierLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  9401. 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>
  9402. impl aya::programs::tc::SchedClassifier
  9403. pub fn aya::programs::tc::SchedClassifier::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  9404. impl aya::programs::tc::SchedClassifier
  9405. pub fn aya::programs::tc::SchedClassifier::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  9406. impl aya::programs::tc::SchedClassifier
  9407. pub fn aya::programs::tc::SchedClassifier::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  9408. impl aya::programs::tc::SchedClassifier
  9409. pub fn aya::programs::tc::SchedClassifier::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  9410. pub fn aya::programs::tc::SchedClassifier::unpin(self) -> core::result::Result<(), std::io::error::Error>
  9411. impl aya::programs::tc::SchedClassifier
  9412. pub fn aya::programs::tc::SchedClassifier::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9413. impl aya::programs::MultiProgram for aya::programs::tc::SchedClassifier
  9414. pub fn aya::programs::tc::SchedClassifier::fd(&self) -> core::result::Result<std::os::fd::owned::BorrowedFd<'_>, aya::programs::ProgramError>
  9415. impl core::fmt::Debug for aya::programs::tc::SchedClassifier
  9416. pub fn aya::programs::tc::SchedClassifier::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9417. impl core::ops::drop::Drop for aya::programs::tc::SchedClassifier
  9418. pub fn aya::programs::tc::SchedClassifier::drop(&mut self)
  9419. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::tc::SchedClassifier
  9420. pub type &'a aya::programs::tc::SchedClassifier::Error = aya::programs::ProgramError
  9421. 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>
  9422. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::tc::SchedClassifier
  9423. pub type &'a mut aya::programs::tc::SchedClassifier::Error = aya::programs::ProgramError
  9424. 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>
  9425. impl core::marker::Freeze for aya::programs::tc::SchedClassifier
  9426. impl core::marker::Send for aya::programs::tc::SchedClassifier
  9427. impl core::marker::Sync for aya::programs::tc::SchedClassifier
  9428. impl core::marker::Unpin for aya::programs::tc::SchedClassifier
  9429. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::SchedClassifier
  9430. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tc::SchedClassifier
  9431. impl<T, U> core::convert::Into<U> for aya::programs::tc::SchedClassifier where U: core::convert::From<T>
  9432. pub fn aya::programs::tc::SchedClassifier::into(self) -> U
  9433. impl<T, U> core::convert::TryFrom<U> for aya::programs::tc::SchedClassifier where U: core::convert::Into<T>
  9434. pub type aya::programs::tc::SchedClassifier::Error = core::convert::Infallible
  9435. pub fn aya::programs::tc::SchedClassifier::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9436. impl<T, U> core::convert::TryInto<U> for aya::programs::tc::SchedClassifier where U: core::convert::TryFrom<T>
  9437. pub type aya::programs::tc::SchedClassifier::Error = <U as core::convert::TryFrom<T>>::Error
  9438. pub fn aya::programs::tc::SchedClassifier::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9439. impl<T> core::any::Any for aya::programs::tc::SchedClassifier where T: 'static + ?core::marker::Sized
  9440. pub fn aya::programs::tc::SchedClassifier::type_id(&self) -> core::any::TypeId
  9441. impl<T> core::borrow::Borrow<T> for aya::programs::tc::SchedClassifier where T: ?core::marker::Sized
  9442. pub fn aya::programs::tc::SchedClassifier::borrow(&self) -> &T
  9443. impl<T> core::borrow::BorrowMut<T> for aya::programs::tc::SchedClassifier where T: ?core::marker::Sized
  9444. pub fn aya::programs::tc::SchedClassifier::borrow_mut(&mut self) -> &mut T
  9445. impl<T> core::convert::From<T> for aya::programs::tc::SchedClassifier
  9446. pub fn aya::programs::tc::SchedClassifier::from(t: T) -> T
  9447. pub struct aya::programs::SkLookup
  9448. impl aya::programs::sk_lookup::SkLookup
  9449. pub const aya::programs::sk_lookup::SkLookup::PROGRAM_TYPE: aya::programs::ProgramType
  9450. pub fn aya::programs::sk_lookup::SkLookup::attach<T: std::os::fd::owned::AsFd>(&mut self, netns: T) -> core::result::Result<aya::programs::sk_lookup::SkLookupLinkId, aya::programs::ProgramError>
  9451. pub fn aya::programs::sk_lookup::SkLookup::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9452. impl aya::programs::sk_lookup::SkLookup
  9453. pub fn aya::programs::sk_lookup::SkLookup::detach(&mut self, link_id: aya::programs::sk_lookup::SkLookupLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  9454. pub fn aya::programs::sk_lookup::SkLookup::take_link(&mut self, link_id: aya::programs::sk_lookup::SkLookupLinkId) -> core::result::Result<aya::programs::sk_lookup::SkLookupLink, aya::programs::ProgramError>
  9455. impl aya::programs::sk_lookup::SkLookup
  9456. pub fn aya::programs::sk_lookup::SkLookup::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  9457. impl aya::programs::sk_lookup::SkLookup
  9458. pub fn aya::programs::sk_lookup::SkLookup::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  9459. impl aya::programs::sk_lookup::SkLookup
  9460. pub fn aya::programs::sk_lookup::SkLookup::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  9461. impl aya::programs::sk_lookup::SkLookup
  9462. pub fn aya::programs::sk_lookup::SkLookup::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  9463. impl aya::programs::sk_lookup::SkLookup
  9464. pub fn aya::programs::sk_lookup::SkLookup::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  9465. pub fn aya::programs::sk_lookup::SkLookup::unpin(self) -> core::result::Result<(), std::io::error::Error>
  9466. impl aya::programs::sk_lookup::SkLookup
  9467. pub fn aya::programs::sk_lookup::SkLookup::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9468. impl core::fmt::Debug for aya::programs::sk_lookup::SkLookup
  9469. pub fn aya::programs::sk_lookup::SkLookup::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9470. impl core::ops::drop::Drop for aya::programs::sk_lookup::SkLookup
  9471. pub fn aya::programs::sk_lookup::SkLookup::drop(&mut self)
  9472. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::sk_lookup::SkLookup
  9473. pub type &'a aya::programs::sk_lookup::SkLookup::Error = aya::programs::ProgramError
  9474. pub fn &'a aya::programs::sk_lookup::SkLookup::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::sk_lookup::SkLookup, aya::programs::ProgramError>
  9475. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::sk_lookup::SkLookup
  9476. pub type &'a mut aya::programs::sk_lookup::SkLookup::Error = aya::programs::ProgramError
  9477. pub fn &'a mut aya::programs::sk_lookup::SkLookup::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::sk_lookup::SkLookup, aya::programs::ProgramError>
  9478. impl core::marker::Freeze for aya::programs::sk_lookup::SkLookup
  9479. impl core::marker::Send for aya::programs::sk_lookup::SkLookup
  9480. impl core::marker::Sync for aya::programs::sk_lookup::SkLookup
  9481. impl core::marker::Unpin for aya::programs::sk_lookup::SkLookup
  9482. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sk_lookup::SkLookup
  9483. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sk_lookup::SkLookup
  9484. impl<T, U> core::convert::Into<U> for aya::programs::sk_lookup::SkLookup where U: core::convert::From<T>
  9485. pub fn aya::programs::sk_lookup::SkLookup::into(self) -> U
  9486. impl<T, U> core::convert::TryFrom<U> for aya::programs::sk_lookup::SkLookup where U: core::convert::Into<T>
  9487. pub type aya::programs::sk_lookup::SkLookup::Error = core::convert::Infallible
  9488. pub fn aya::programs::sk_lookup::SkLookup::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9489. impl<T, U> core::convert::TryInto<U> for aya::programs::sk_lookup::SkLookup where U: core::convert::TryFrom<T>
  9490. pub type aya::programs::sk_lookup::SkLookup::Error = <U as core::convert::TryFrom<T>>::Error
  9491. pub fn aya::programs::sk_lookup::SkLookup::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9492. impl<T> core::any::Any for aya::programs::sk_lookup::SkLookup where T: 'static + ?core::marker::Sized
  9493. pub fn aya::programs::sk_lookup::SkLookup::type_id(&self) -> core::any::TypeId
  9494. impl<T> core::borrow::Borrow<T> for aya::programs::sk_lookup::SkLookup where T: ?core::marker::Sized
  9495. pub fn aya::programs::sk_lookup::SkLookup::borrow(&self) -> &T
  9496. impl<T> core::borrow::BorrowMut<T> for aya::programs::sk_lookup::SkLookup where T: ?core::marker::Sized
  9497. pub fn aya::programs::sk_lookup::SkLookup::borrow_mut(&mut self) -> &mut T
  9498. impl<T> core::convert::From<T> for aya::programs::sk_lookup::SkLookup
  9499. pub fn aya::programs::sk_lookup::SkLookup::from(t: T) -> T
  9500. pub struct aya::programs::SkMsg
  9501. impl aya::programs::sk_msg::SkMsg
  9502. pub const aya::programs::sk_msg::SkMsg::PROGRAM_TYPE: aya::programs::ProgramType
  9503. pub fn aya::programs::sk_msg::SkMsg::attach(&mut self, map: &aya::maps::sock::SockMapFd) -> core::result::Result<aya::programs::sk_msg::SkMsgLinkId, aya::programs::ProgramError>
  9504. pub fn aya::programs::sk_msg::SkMsg::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9505. impl aya::programs::sk_msg::SkMsg
  9506. pub fn aya::programs::sk_msg::SkMsg::detach(&mut self, link_id: aya::programs::sk_msg::SkMsgLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  9507. pub fn aya::programs::sk_msg::SkMsg::take_link(&mut self, link_id: aya::programs::sk_msg::SkMsgLinkId) -> core::result::Result<aya::programs::sk_msg::SkMsgLink, aya::programs::ProgramError>
  9508. impl aya::programs::sk_msg::SkMsg
  9509. pub fn aya::programs::sk_msg::SkMsg::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  9510. impl aya::programs::sk_msg::SkMsg
  9511. pub fn aya::programs::sk_msg::SkMsg::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  9512. impl aya::programs::sk_msg::SkMsg
  9513. pub fn aya::programs::sk_msg::SkMsg::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  9514. impl aya::programs::sk_msg::SkMsg
  9515. pub fn aya::programs::sk_msg::SkMsg::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  9516. impl aya::programs::sk_msg::SkMsg
  9517. pub fn aya::programs::sk_msg::SkMsg::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  9518. pub fn aya::programs::sk_msg::SkMsg::unpin(self) -> core::result::Result<(), std::io::error::Error>
  9519. impl aya::programs::sk_msg::SkMsg
  9520. pub fn aya::programs::sk_msg::SkMsg::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9521. impl core::fmt::Debug for aya::programs::sk_msg::SkMsg
  9522. pub fn aya::programs::sk_msg::SkMsg::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9523. impl core::ops::drop::Drop for aya::programs::sk_msg::SkMsg
  9524. pub fn aya::programs::sk_msg::SkMsg::drop(&mut self)
  9525. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::sk_msg::SkMsg
  9526. pub type &'a aya::programs::sk_msg::SkMsg::Error = aya::programs::ProgramError
  9527. pub fn &'a aya::programs::sk_msg::SkMsg::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::sk_msg::SkMsg, aya::programs::ProgramError>
  9528. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::sk_msg::SkMsg
  9529. pub type &'a mut aya::programs::sk_msg::SkMsg::Error = aya::programs::ProgramError
  9530. pub fn &'a mut aya::programs::sk_msg::SkMsg::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::sk_msg::SkMsg, aya::programs::ProgramError>
  9531. impl core::marker::Freeze for aya::programs::sk_msg::SkMsg
  9532. impl core::marker::Send for aya::programs::sk_msg::SkMsg
  9533. impl core::marker::Sync for aya::programs::sk_msg::SkMsg
  9534. impl core::marker::Unpin for aya::programs::sk_msg::SkMsg
  9535. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sk_msg::SkMsg
  9536. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sk_msg::SkMsg
  9537. impl<T, U> core::convert::Into<U> for aya::programs::sk_msg::SkMsg where U: core::convert::From<T>
  9538. pub fn aya::programs::sk_msg::SkMsg::into(self) -> U
  9539. impl<T, U> core::convert::TryFrom<U> for aya::programs::sk_msg::SkMsg where U: core::convert::Into<T>
  9540. pub type aya::programs::sk_msg::SkMsg::Error = core::convert::Infallible
  9541. pub fn aya::programs::sk_msg::SkMsg::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9542. impl<T, U> core::convert::TryInto<U> for aya::programs::sk_msg::SkMsg where U: core::convert::TryFrom<T>
  9543. pub type aya::programs::sk_msg::SkMsg::Error = <U as core::convert::TryFrom<T>>::Error
  9544. pub fn aya::programs::sk_msg::SkMsg::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9545. impl<T> core::any::Any for aya::programs::sk_msg::SkMsg where T: 'static + ?core::marker::Sized
  9546. pub fn aya::programs::sk_msg::SkMsg::type_id(&self) -> core::any::TypeId
  9547. impl<T> core::borrow::Borrow<T> for aya::programs::sk_msg::SkMsg where T: ?core::marker::Sized
  9548. pub fn aya::programs::sk_msg::SkMsg::borrow(&self) -> &T
  9549. impl<T> core::borrow::BorrowMut<T> for aya::programs::sk_msg::SkMsg where T: ?core::marker::Sized
  9550. pub fn aya::programs::sk_msg::SkMsg::borrow_mut(&mut self) -> &mut T
  9551. impl<T> core::convert::From<T> for aya::programs::sk_msg::SkMsg
  9552. pub fn aya::programs::sk_msg::SkMsg::from(t: T) -> T
  9553. pub struct aya::programs::SkSkb
  9554. impl aya::programs::sk_skb::SkSkb
  9555. pub const aya::programs::sk_skb::SkSkb::PROGRAM_TYPE: aya::programs::ProgramType
  9556. pub fn aya::programs::sk_skb::SkSkb::attach(&mut self, map: &aya::maps::sock::SockMapFd) -> core::result::Result<aya::programs::sk_skb::SkSkbLinkId, aya::programs::ProgramError>
  9557. pub fn aya::programs::sk_skb::SkSkb::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, kind: aya::programs::sk_skb::SkSkbKind) -> core::result::Result<Self, aya::programs::ProgramError>
  9558. pub fn aya::programs::sk_skb::SkSkb::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9559. impl aya::programs::sk_skb::SkSkb
  9560. pub fn aya::programs::sk_skb::SkSkb::detach(&mut self, link_id: aya::programs::sk_skb::SkSkbLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  9561. pub fn aya::programs::sk_skb::SkSkb::take_link(&mut self, link_id: aya::programs::sk_skb::SkSkbLinkId) -> core::result::Result<aya::programs::sk_skb::SkSkbLink, aya::programs::ProgramError>
  9562. impl aya::programs::sk_skb::SkSkb
  9563. pub fn aya::programs::sk_skb::SkSkb::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  9564. impl aya::programs::sk_skb::SkSkb
  9565. pub fn aya::programs::sk_skb::SkSkb::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>, kind: aya::programs::sk_skb::SkSkbKind) -> core::result::Result<Self, aya::programs::ProgramError>
  9566. impl aya::programs::sk_skb::SkSkb
  9567. pub fn aya::programs::sk_skb::SkSkb::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  9568. impl aya::programs::sk_skb::SkSkb
  9569. pub fn aya::programs::sk_skb::SkSkb::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  9570. pub fn aya::programs::sk_skb::SkSkb::unpin(self) -> core::result::Result<(), std::io::error::Error>
  9571. impl aya::programs::sk_skb::SkSkb
  9572. pub fn aya::programs::sk_skb::SkSkb::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9573. impl core::fmt::Debug for aya::programs::sk_skb::SkSkb
  9574. pub fn aya::programs::sk_skb::SkSkb::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9575. impl core::ops::drop::Drop for aya::programs::sk_skb::SkSkb
  9576. pub fn aya::programs::sk_skb::SkSkb::drop(&mut self)
  9577. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::sk_skb::SkSkb
  9578. pub type &'a aya::programs::sk_skb::SkSkb::Error = aya::programs::ProgramError
  9579. pub fn &'a aya::programs::sk_skb::SkSkb::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::sk_skb::SkSkb, aya::programs::ProgramError>
  9580. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::sk_skb::SkSkb
  9581. pub type &'a mut aya::programs::sk_skb::SkSkb::Error = aya::programs::ProgramError
  9582. pub fn &'a mut aya::programs::sk_skb::SkSkb::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::sk_skb::SkSkb, aya::programs::ProgramError>
  9583. impl core::marker::Freeze for aya::programs::sk_skb::SkSkb
  9584. impl core::marker::Send for aya::programs::sk_skb::SkSkb
  9585. impl core::marker::Sync for aya::programs::sk_skb::SkSkb
  9586. impl core::marker::Unpin for aya::programs::sk_skb::SkSkb
  9587. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sk_skb::SkSkb
  9588. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sk_skb::SkSkb
  9589. impl<T, U> core::convert::Into<U> for aya::programs::sk_skb::SkSkb where U: core::convert::From<T>
  9590. pub fn aya::programs::sk_skb::SkSkb::into(self) -> U
  9591. impl<T, U> core::convert::TryFrom<U> for aya::programs::sk_skb::SkSkb where U: core::convert::Into<T>
  9592. pub type aya::programs::sk_skb::SkSkb::Error = core::convert::Infallible
  9593. pub fn aya::programs::sk_skb::SkSkb::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9594. impl<T, U> core::convert::TryInto<U> for aya::programs::sk_skb::SkSkb where U: core::convert::TryFrom<T>
  9595. pub type aya::programs::sk_skb::SkSkb::Error = <U as core::convert::TryFrom<T>>::Error
  9596. pub fn aya::programs::sk_skb::SkSkb::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9597. impl<T> core::any::Any for aya::programs::sk_skb::SkSkb where T: 'static + ?core::marker::Sized
  9598. pub fn aya::programs::sk_skb::SkSkb::type_id(&self) -> core::any::TypeId
  9599. impl<T> core::borrow::Borrow<T> for aya::programs::sk_skb::SkSkb where T: ?core::marker::Sized
  9600. pub fn aya::programs::sk_skb::SkSkb::borrow(&self) -> &T
  9601. impl<T> core::borrow::BorrowMut<T> for aya::programs::sk_skb::SkSkb where T: ?core::marker::Sized
  9602. pub fn aya::programs::sk_skb::SkSkb::borrow_mut(&mut self) -> &mut T
  9603. impl<T> core::convert::From<T> for aya::programs::sk_skb::SkSkb
  9604. pub fn aya::programs::sk_skb::SkSkb::from(t: T) -> T
  9605. pub struct aya::programs::SockOps
  9606. impl aya::programs::sock_ops::SockOps
  9607. pub const aya::programs::sock_ops::SockOps::PROGRAM_TYPE: aya::programs::ProgramType
  9608. pub fn aya::programs::sock_ops::SockOps::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T, mode: aya::programs::links::CgroupAttachMode) -> core::result::Result<aya::programs::sock_ops::SockOpsLinkId, aya::programs::ProgramError>
  9609. pub fn aya::programs::sock_ops::SockOps::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9610. impl aya::programs::sock_ops::SockOps
  9611. pub fn aya::programs::sock_ops::SockOps::detach(&mut self, link_id: aya::programs::sock_ops::SockOpsLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  9612. pub fn aya::programs::sock_ops::SockOps::take_link(&mut self, link_id: aya::programs::sock_ops::SockOpsLinkId) -> core::result::Result<aya::programs::sock_ops::SockOpsLink, aya::programs::ProgramError>
  9613. impl aya::programs::sock_ops::SockOps
  9614. pub fn aya::programs::sock_ops::SockOps::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  9615. impl aya::programs::sock_ops::SockOps
  9616. pub fn aya::programs::sock_ops::SockOps::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  9617. impl aya::programs::sock_ops::SockOps
  9618. pub fn aya::programs::sock_ops::SockOps::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  9619. impl aya::programs::sock_ops::SockOps
  9620. pub fn aya::programs::sock_ops::SockOps::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  9621. impl aya::programs::sock_ops::SockOps
  9622. pub fn aya::programs::sock_ops::SockOps::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  9623. pub fn aya::programs::sock_ops::SockOps::unpin(self) -> core::result::Result<(), std::io::error::Error>
  9624. impl aya::programs::sock_ops::SockOps
  9625. pub fn aya::programs::sock_ops::SockOps::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9626. impl core::fmt::Debug for aya::programs::sock_ops::SockOps
  9627. pub fn aya::programs::sock_ops::SockOps::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9628. impl core::ops::drop::Drop for aya::programs::sock_ops::SockOps
  9629. pub fn aya::programs::sock_ops::SockOps::drop(&mut self)
  9630. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::sock_ops::SockOps
  9631. pub type &'a aya::programs::sock_ops::SockOps::Error = aya::programs::ProgramError
  9632. pub fn &'a aya::programs::sock_ops::SockOps::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::sock_ops::SockOps, aya::programs::ProgramError>
  9633. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::sock_ops::SockOps
  9634. pub type &'a mut aya::programs::sock_ops::SockOps::Error = aya::programs::ProgramError
  9635. pub fn &'a mut aya::programs::sock_ops::SockOps::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::sock_ops::SockOps, aya::programs::ProgramError>
  9636. impl core::marker::Freeze for aya::programs::sock_ops::SockOps
  9637. impl core::marker::Send for aya::programs::sock_ops::SockOps
  9638. impl core::marker::Sync for aya::programs::sock_ops::SockOps
  9639. impl core::marker::Unpin for aya::programs::sock_ops::SockOps
  9640. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sock_ops::SockOps
  9641. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sock_ops::SockOps
  9642. impl<T, U> core::convert::Into<U> for aya::programs::sock_ops::SockOps where U: core::convert::From<T>
  9643. pub fn aya::programs::sock_ops::SockOps::into(self) -> U
  9644. impl<T, U> core::convert::TryFrom<U> for aya::programs::sock_ops::SockOps where U: core::convert::Into<T>
  9645. pub type aya::programs::sock_ops::SockOps::Error = core::convert::Infallible
  9646. pub fn aya::programs::sock_ops::SockOps::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9647. impl<T, U> core::convert::TryInto<U> for aya::programs::sock_ops::SockOps where U: core::convert::TryFrom<T>
  9648. pub type aya::programs::sock_ops::SockOps::Error = <U as core::convert::TryFrom<T>>::Error
  9649. pub fn aya::programs::sock_ops::SockOps::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9650. impl<T> core::any::Any for aya::programs::sock_ops::SockOps where T: 'static + ?core::marker::Sized
  9651. pub fn aya::programs::sock_ops::SockOps::type_id(&self) -> core::any::TypeId
  9652. impl<T> core::borrow::Borrow<T> for aya::programs::sock_ops::SockOps where T: ?core::marker::Sized
  9653. pub fn aya::programs::sock_ops::SockOps::borrow(&self) -> &T
  9654. impl<T> core::borrow::BorrowMut<T> for aya::programs::sock_ops::SockOps where T: ?core::marker::Sized
  9655. pub fn aya::programs::sock_ops::SockOps::borrow_mut(&mut self) -> &mut T
  9656. impl<T> core::convert::From<T> for aya::programs::sock_ops::SockOps
  9657. pub fn aya::programs::sock_ops::SockOps::from(t: T) -> T
  9658. pub struct aya::programs::SocketFilter
  9659. impl aya::programs::socket_filter::SocketFilter
  9660. pub const aya::programs::socket_filter::SocketFilter::PROGRAM_TYPE: aya::programs::ProgramType
  9661. pub fn aya::programs::socket_filter::SocketFilter::attach<T: std::os::fd::owned::AsFd>(&mut self, socket: T) -> core::result::Result<aya::programs::socket_filter::SocketFilterLinkId, aya::programs::ProgramError>
  9662. pub fn aya::programs::socket_filter::SocketFilter::detach(&mut self, link_id: aya::programs::socket_filter::SocketFilterLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  9663. pub fn aya::programs::socket_filter::SocketFilter::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9664. pub fn aya::programs::socket_filter::SocketFilter::take_link(&mut self, link_id: aya::programs::socket_filter::SocketFilterLinkId) -> core::result::Result<aya::programs::socket_filter::SocketFilterLink, aya::programs::ProgramError>
  9665. impl aya::programs::socket_filter::SocketFilter
  9666. pub fn aya::programs::socket_filter::SocketFilter::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  9667. impl aya::programs::socket_filter::SocketFilter
  9668. pub fn aya::programs::socket_filter::SocketFilter::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  9669. impl aya::programs::socket_filter::SocketFilter
  9670. pub fn aya::programs::socket_filter::SocketFilter::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  9671. impl aya::programs::socket_filter::SocketFilter
  9672. pub fn aya::programs::socket_filter::SocketFilter::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  9673. pub fn aya::programs::socket_filter::SocketFilter::unpin(self) -> core::result::Result<(), std::io::error::Error>
  9674. impl aya::programs::socket_filter::SocketFilter
  9675. pub fn aya::programs::socket_filter::SocketFilter::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9676. impl core::fmt::Debug for aya::programs::socket_filter::SocketFilter
  9677. pub fn aya::programs::socket_filter::SocketFilter::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9678. impl core::ops::drop::Drop for aya::programs::socket_filter::SocketFilter
  9679. pub fn aya::programs::socket_filter::SocketFilter::drop(&mut self)
  9680. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::socket_filter::SocketFilter
  9681. pub type &'a aya::programs::socket_filter::SocketFilter::Error = aya::programs::ProgramError
  9682. pub fn &'a aya::programs::socket_filter::SocketFilter::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::socket_filter::SocketFilter, aya::programs::ProgramError>
  9683. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::socket_filter::SocketFilter
  9684. pub type &'a mut aya::programs::socket_filter::SocketFilter::Error = aya::programs::ProgramError
  9685. pub fn &'a mut aya::programs::socket_filter::SocketFilter::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::socket_filter::SocketFilter, aya::programs::ProgramError>
  9686. impl core::marker::Freeze for aya::programs::socket_filter::SocketFilter
  9687. impl core::marker::Send for aya::programs::socket_filter::SocketFilter
  9688. impl core::marker::Sync for aya::programs::socket_filter::SocketFilter
  9689. impl core::marker::Unpin for aya::programs::socket_filter::SocketFilter
  9690. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::socket_filter::SocketFilter
  9691. impl core::panic::unwind_safe::UnwindSafe for aya::programs::socket_filter::SocketFilter
  9692. impl<T, U> core::convert::Into<U> for aya::programs::socket_filter::SocketFilter where U: core::convert::From<T>
  9693. pub fn aya::programs::socket_filter::SocketFilter::into(self) -> U
  9694. impl<T, U> core::convert::TryFrom<U> for aya::programs::socket_filter::SocketFilter where U: core::convert::Into<T>
  9695. pub type aya::programs::socket_filter::SocketFilter::Error = core::convert::Infallible
  9696. pub fn aya::programs::socket_filter::SocketFilter::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9697. impl<T, U> core::convert::TryInto<U> for aya::programs::socket_filter::SocketFilter where U: core::convert::TryFrom<T>
  9698. pub type aya::programs::socket_filter::SocketFilter::Error = <U as core::convert::TryFrom<T>>::Error
  9699. pub fn aya::programs::socket_filter::SocketFilter::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9700. impl<T> core::any::Any for aya::programs::socket_filter::SocketFilter where T: 'static + ?core::marker::Sized
  9701. pub fn aya::programs::socket_filter::SocketFilter::type_id(&self) -> core::any::TypeId
  9702. impl<T> core::borrow::Borrow<T> for aya::programs::socket_filter::SocketFilter where T: ?core::marker::Sized
  9703. pub fn aya::programs::socket_filter::SocketFilter::borrow(&self) -> &T
  9704. impl<T> core::borrow::BorrowMut<T> for aya::programs::socket_filter::SocketFilter where T: ?core::marker::Sized
  9705. pub fn aya::programs::socket_filter::SocketFilter::borrow_mut(&mut self) -> &mut T
  9706. impl<T> core::convert::From<T> for aya::programs::socket_filter::SocketFilter
  9707. pub fn aya::programs::socket_filter::SocketFilter::from(t: T) -> T
  9708. pub struct aya::programs::TracePoint
  9709. impl aya::programs::trace_point::TracePoint
  9710. pub const aya::programs::trace_point::TracePoint::PROGRAM_TYPE: aya::programs::ProgramType
  9711. 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>
  9712. pub fn aya::programs::trace_point::TracePoint::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9713. impl aya::programs::trace_point::TracePoint
  9714. pub fn aya::programs::trace_point::TracePoint::detach(&mut self, link_id: aya::programs::trace_point::TracePointLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  9715. 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>
  9716. impl aya::programs::trace_point::TracePoint
  9717. pub fn aya::programs::trace_point::TracePoint::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  9718. impl aya::programs::trace_point::TracePoint
  9719. 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>
  9720. impl aya::programs::trace_point::TracePoint
  9721. pub fn aya::programs::trace_point::TracePoint::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  9722. impl aya::programs::trace_point::TracePoint
  9723. pub fn aya::programs::trace_point::TracePoint::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  9724. impl aya::programs::trace_point::TracePoint
  9725. 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>
  9726. pub fn aya::programs::trace_point::TracePoint::unpin(self) -> core::result::Result<(), std::io::error::Error>
  9727. impl aya::programs::trace_point::TracePoint
  9728. pub fn aya::programs::trace_point::TracePoint::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9729. impl core::fmt::Debug for aya::programs::trace_point::TracePoint
  9730. pub fn aya::programs::trace_point::TracePoint::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9731. impl core::ops::drop::Drop for aya::programs::trace_point::TracePoint
  9732. pub fn aya::programs::trace_point::TracePoint::drop(&mut self)
  9733. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::trace_point::TracePoint
  9734. pub type &'a aya::programs::trace_point::TracePoint::Error = aya::programs::ProgramError
  9735. 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>
  9736. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::trace_point::TracePoint
  9737. pub type &'a mut aya::programs::trace_point::TracePoint::Error = aya::programs::ProgramError
  9738. 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>
  9739. impl core::marker::Freeze for aya::programs::trace_point::TracePoint
  9740. impl core::marker::Send for aya::programs::trace_point::TracePoint
  9741. impl core::marker::Sync for aya::programs::trace_point::TracePoint
  9742. impl core::marker::Unpin for aya::programs::trace_point::TracePoint
  9743. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::trace_point::TracePoint
  9744. impl core::panic::unwind_safe::UnwindSafe for aya::programs::trace_point::TracePoint
  9745. impl<T, U> core::convert::Into<U> for aya::programs::trace_point::TracePoint where U: core::convert::From<T>
  9746. pub fn aya::programs::trace_point::TracePoint::into(self) -> U
  9747. impl<T, U> core::convert::TryFrom<U> for aya::programs::trace_point::TracePoint where U: core::convert::Into<T>
  9748. pub type aya::programs::trace_point::TracePoint::Error = core::convert::Infallible
  9749. pub fn aya::programs::trace_point::TracePoint::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9750. impl<T, U> core::convert::TryInto<U> for aya::programs::trace_point::TracePoint where U: core::convert::TryFrom<T>
  9751. pub type aya::programs::trace_point::TracePoint::Error = <U as core::convert::TryFrom<T>>::Error
  9752. pub fn aya::programs::trace_point::TracePoint::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9753. impl<T> core::any::Any for aya::programs::trace_point::TracePoint where T: 'static + ?core::marker::Sized
  9754. pub fn aya::programs::trace_point::TracePoint::type_id(&self) -> core::any::TypeId
  9755. impl<T> core::borrow::Borrow<T> for aya::programs::trace_point::TracePoint where T: ?core::marker::Sized
  9756. pub fn aya::programs::trace_point::TracePoint::borrow(&self) -> &T
  9757. impl<T> core::borrow::BorrowMut<T> for aya::programs::trace_point::TracePoint where T: ?core::marker::Sized
  9758. pub fn aya::programs::trace_point::TracePoint::borrow_mut(&mut self) -> &mut T
  9759. impl<T> core::convert::From<T> for aya::programs::trace_point::TracePoint
  9760. pub fn aya::programs::trace_point::TracePoint::from(t: T) -> T
  9761. pub struct aya::programs::UProbe
  9762. impl aya::programs::uprobe::UProbe
  9763. pub const aya::programs::uprobe::UProbe::PROGRAM_TYPE: aya::programs::ProgramType
  9764. pub fn aya::programs::uprobe::UProbe::attach<'loc, T: core::convert::AsRef<std::path::Path>, Loc: core::convert::Into<aya::programs::uprobe::UProbeAttachLocation<'loc>>>(&mut self, location: Loc, target: T, pid: core::option::Option<libc::unix::pid_t>, cookie: core::option::Option<u64>) -> core::result::Result<aya::programs::uprobe::UProbeLinkId, aya::programs::ProgramError>
  9765. 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>
  9766. pub fn aya::programs::uprobe::UProbe::kind(&self) -> aya::programs::ProbeKind
  9767. pub fn aya::programs::uprobe::UProbe::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9768. impl aya::programs::uprobe::UProbe
  9769. pub fn aya::programs::uprobe::UProbe::detach(&mut self, link_id: aya::programs::uprobe::UProbeLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  9770. 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>
  9771. impl aya::programs::uprobe::UProbe
  9772. pub fn aya::programs::uprobe::UProbe::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  9773. impl aya::programs::uprobe::UProbe
  9774. pub unsafe fn aya::programs::uprobe::UProbe::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>, kind: aya::programs::ProbeKind) -> core::result::Result<Self, aya::programs::ProgramError>
  9775. impl aya::programs::uprobe::UProbe
  9776. pub fn aya::programs::uprobe::UProbe::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  9777. impl aya::programs::uprobe::UProbe
  9778. pub fn aya::programs::uprobe::UProbe::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  9779. pub fn aya::programs::uprobe::UProbe::unpin(self) -> core::result::Result<(), std::io::error::Error>
  9780. impl aya::programs::uprobe::UProbe
  9781. pub fn aya::programs::uprobe::UProbe::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9782. impl core::fmt::Debug for aya::programs::uprobe::UProbe
  9783. pub fn aya::programs::uprobe::UProbe::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9784. impl core::ops::drop::Drop for aya::programs::uprobe::UProbe
  9785. pub fn aya::programs::uprobe::UProbe::drop(&mut self)
  9786. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::uprobe::UProbe
  9787. pub type &'a aya::programs::uprobe::UProbe::Error = aya::programs::ProgramError
  9788. 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>
  9789. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::uprobe::UProbe
  9790. pub type &'a mut aya::programs::uprobe::UProbe::Error = aya::programs::ProgramError
  9791. 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>
  9792. impl core::marker::Freeze for aya::programs::uprobe::UProbe
  9793. impl core::marker::Send for aya::programs::uprobe::UProbe
  9794. impl core::marker::Sync for aya::programs::uprobe::UProbe
  9795. impl core::marker::Unpin for aya::programs::uprobe::UProbe
  9796. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::uprobe::UProbe
  9797. impl core::panic::unwind_safe::UnwindSafe for aya::programs::uprobe::UProbe
  9798. impl<T, U> core::convert::Into<U> for aya::programs::uprobe::UProbe where U: core::convert::From<T>
  9799. pub fn aya::programs::uprobe::UProbe::into(self) -> U
  9800. impl<T, U> core::convert::TryFrom<U> for aya::programs::uprobe::UProbe where U: core::convert::Into<T>
  9801. pub type aya::programs::uprobe::UProbe::Error = core::convert::Infallible
  9802. pub fn aya::programs::uprobe::UProbe::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9803. impl<T, U> core::convert::TryInto<U> for aya::programs::uprobe::UProbe where U: core::convert::TryFrom<T>
  9804. pub type aya::programs::uprobe::UProbe::Error = <U as core::convert::TryFrom<T>>::Error
  9805. pub fn aya::programs::uprobe::UProbe::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9806. impl<T> core::any::Any for aya::programs::uprobe::UProbe where T: 'static + ?core::marker::Sized
  9807. pub fn aya::programs::uprobe::UProbe::type_id(&self) -> core::any::TypeId
  9808. impl<T> core::borrow::Borrow<T> for aya::programs::uprobe::UProbe where T: ?core::marker::Sized
  9809. pub fn aya::programs::uprobe::UProbe::borrow(&self) -> &T
  9810. impl<T> core::borrow::BorrowMut<T> for aya::programs::uprobe::UProbe where T: ?core::marker::Sized
  9811. pub fn aya::programs::uprobe::UProbe::borrow_mut(&mut self) -> &mut T
  9812. impl<T> core::convert::From<T> for aya::programs::uprobe::UProbe
  9813. pub fn aya::programs::uprobe::UProbe::from(t: T) -> T
  9814. pub struct aya::programs::Xdp
  9815. impl aya::programs::xdp::Xdp
  9816. pub const aya::programs::xdp::Xdp::PROGRAM_TYPE: aya::programs::ProgramType
  9817. 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>
  9818. 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>
  9819. 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>
  9820. 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>
  9821. pub fn aya::programs::xdp::Xdp::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9822. impl aya::programs::xdp::Xdp
  9823. pub fn aya::programs::xdp::Xdp::detach(&mut self, link_id: aya::programs::xdp::XdpLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  9824. 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>
  9825. impl aya::programs::xdp::Xdp
  9826. pub fn aya::programs::xdp::Xdp::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  9827. impl aya::programs::xdp::Xdp
  9828. pub fn aya::programs::xdp::Xdp::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>, attach_type: aya_obj::programs::xdp::XdpAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  9829. impl aya::programs::xdp::Xdp
  9830. pub fn aya::programs::xdp::Xdp::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  9831. impl aya::programs::xdp::Xdp
  9832. pub fn aya::programs::xdp::Xdp::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  9833. pub fn aya::programs::xdp::Xdp::unpin(self) -> core::result::Result<(), std::io::error::Error>
  9834. impl aya::programs::xdp::Xdp
  9835. pub fn aya::programs::xdp::Xdp::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9836. impl core::fmt::Debug for aya::programs::xdp::Xdp
  9837. pub fn aya::programs::xdp::Xdp::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9838. impl core::ops::drop::Drop for aya::programs::xdp::Xdp
  9839. pub fn aya::programs::xdp::Xdp::drop(&mut self)
  9840. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::xdp::Xdp
  9841. pub type &'a aya::programs::xdp::Xdp::Error = aya::programs::ProgramError
  9842. 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>
  9843. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::xdp::Xdp
  9844. pub type &'a mut aya::programs::xdp::Xdp::Error = aya::programs::ProgramError
  9845. 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>
  9846. impl core::marker::Freeze for aya::programs::xdp::Xdp
  9847. impl core::marker::Send for aya::programs::xdp::Xdp
  9848. impl core::marker::Sync for aya::programs::xdp::Xdp
  9849. impl core::marker::Unpin for aya::programs::xdp::Xdp
  9850. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::xdp::Xdp
  9851. impl core::panic::unwind_safe::UnwindSafe for aya::programs::xdp::Xdp
  9852. impl<T, U> core::convert::Into<U> for aya::programs::xdp::Xdp where U: core::convert::From<T>
  9853. pub fn aya::programs::xdp::Xdp::into(self) -> U
  9854. impl<T, U> core::convert::TryFrom<U> for aya::programs::xdp::Xdp where U: core::convert::Into<T>
  9855. pub type aya::programs::xdp::Xdp::Error = core::convert::Infallible
  9856. pub fn aya::programs::xdp::Xdp::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9857. impl<T, U> core::convert::TryInto<U> for aya::programs::xdp::Xdp where U: core::convert::TryFrom<T>
  9858. pub type aya::programs::xdp::Xdp::Error = <U as core::convert::TryFrom<T>>::Error
  9859. pub fn aya::programs::xdp::Xdp::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9860. impl<T> core::any::Any for aya::programs::xdp::Xdp where T: 'static + ?core::marker::Sized
  9861. pub fn aya::programs::xdp::Xdp::type_id(&self) -> core::any::TypeId
  9862. impl<T> core::borrow::Borrow<T> for aya::programs::xdp::Xdp where T: ?core::marker::Sized
  9863. pub fn aya::programs::xdp::Xdp::borrow(&self) -> &T
  9864. impl<T> core::borrow::BorrowMut<T> for aya::programs::xdp::Xdp where T: ?core::marker::Sized
  9865. pub fn aya::programs::xdp::Xdp::borrow_mut(&mut self) -> &mut T
  9866. impl<T> core::convert::From<T> for aya::programs::xdp::Xdp
  9867. pub fn aya::programs::xdp::Xdp::from(t: T) -> T
  9868. pub struct aya::programs::XdpFlags(_)
  9869. impl aya::programs::xdp::XdpFlags
  9870. pub const aya::programs::xdp::XdpFlags::DRV_MODE: Self
  9871. pub const aya::programs::xdp::XdpFlags::HW_MODE: Self
  9872. pub const aya::programs::xdp::XdpFlags::REPLACE: Self
  9873. pub const aya::programs::xdp::XdpFlags::SKB_MODE: Self
  9874. pub const aya::programs::xdp::XdpFlags::UPDATE_IF_NOEXIST: Self
  9875. impl aya::programs::xdp::XdpFlags
  9876. pub const fn aya::programs::xdp::XdpFlags::all() -> Self
  9877. pub const fn aya::programs::xdp::XdpFlags::bits(&self) -> u32
  9878. pub const fn aya::programs::xdp::XdpFlags::complement(self) -> Self
  9879. pub const fn aya::programs::xdp::XdpFlags::contains(&self, other: Self) -> bool
  9880. pub const fn aya::programs::xdp::XdpFlags::difference(self, other: Self) -> Self
  9881. pub const fn aya::programs::xdp::XdpFlags::empty() -> Self
  9882. pub const fn aya::programs::xdp::XdpFlags::from_bits(bits: u32) -> core::option::Option<Self>
  9883. pub const fn aya::programs::xdp::XdpFlags::from_bits_retain(bits: u32) -> Self
  9884. pub const fn aya::programs::xdp::XdpFlags::from_bits_truncate(bits: u32) -> Self
  9885. pub fn aya::programs::xdp::XdpFlags::from_name(name: &str) -> core::option::Option<Self>
  9886. pub fn aya::programs::xdp::XdpFlags::insert(&mut self, other: Self)
  9887. pub const fn aya::programs::xdp::XdpFlags::intersection(self, other: Self) -> Self
  9888. pub const fn aya::programs::xdp::XdpFlags::intersects(&self, other: Self) -> bool
  9889. pub const fn aya::programs::xdp::XdpFlags::is_all(&self) -> bool
  9890. pub const fn aya::programs::xdp::XdpFlags::is_empty(&self) -> bool
  9891. pub fn aya::programs::xdp::XdpFlags::remove(&mut self, other: Self)
  9892. pub fn aya::programs::xdp::XdpFlags::set(&mut self, other: Self, value: bool)
  9893. pub const fn aya::programs::xdp::XdpFlags::symmetric_difference(self, other: Self) -> Self
  9894. pub fn aya::programs::xdp::XdpFlags::toggle(&mut self, other: Self)
  9895. pub const fn aya::programs::xdp::XdpFlags::union(self, other: Self) -> Self
  9896. impl aya::programs::xdp::XdpFlags
  9897. pub const fn aya::programs::xdp::XdpFlags::iter(&self) -> bitflags::iter::Iter<aya::programs::xdp::XdpFlags>
  9898. pub const fn aya::programs::xdp::XdpFlags::iter_names(&self) -> bitflags::iter::IterNames<aya::programs::xdp::XdpFlags>
  9899. impl bitflags::traits::Flags for aya::programs::xdp::XdpFlags
  9900. pub type aya::programs::xdp::XdpFlags::Bits = u32
  9901. pub const aya::programs::xdp::XdpFlags::FLAGS: &'static [bitflags::traits::Flag<aya::programs::xdp::XdpFlags>]
  9902. pub fn aya::programs::xdp::XdpFlags::bits(&self) -> u32
  9903. pub fn aya::programs::xdp::XdpFlags::from_bits_retain(bits: u32) -> aya::programs::xdp::XdpFlags
  9904. impl bitflags::traits::PublicFlags for aya::programs::xdp::XdpFlags
  9905. pub type aya::programs::xdp::XdpFlags::Internal = InternalBitFlags
  9906. pub type aya::programs::xdp::XdpFlags::Primitive = u32
  9907. impl core::clone::Clone for aya::programs::xdp::XdpFlags
  9908. pub fn aya::programs::xdp::XdpFlags::clone(&self) -> aya::programs::xdp::XdpFlags
  9909. impl core::default::Default for aya::programs::xdp::XdpFlags
  9910. pub fn aya::programs::xdp::XdpFlags::default() -> aya::programs::xdp::XdpFlags
  9911. impl core::fmt::Binary for aya::programs::xdp::XdpFlags
  9912. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9913. impl core::fmt::Debug for aya::programs::xdp::XdpFlags
  9914. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9915. impl core::fmt::LowerHex for aya::programs::xdp::XdpFlags
  9916. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9917. impl core::fmt::Octal for aya::programs::xdp::XdpFlags
  9918. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9919. impl core::fmt::UpperHex for aya::programs::xdp::XdpFlags
  9920. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9921. impl core::iter::traits::collect::Extend<aya::programs::xdp::XdpFlags> for aya::programs::xdp::XdpFlags
  9922. pub fn aya::programs::xdp::XdpFlags::extend<T: core::iter::traits::collect::IntoIterator<Item = Self>>(&mut self, iterator: T)
  9923. impl core::iter::traits::collect::FromIterator<aya::programs::xdp::XdpFlags> for aya::programs::xdp::XdpFlags
  9924. pub fn aya::programs::xdp::XdpFlags::from_iter<T: core::iter::traits::collect::IntoIterator<Item = Self>>(iterator: T) -> Self
  9925. impl core::iter::traits::collect::IntoIterator for aya::programs::xdp::XdpFlags
  9926. pub type aya::programs::xdp::XdpFlags::IntoIter = bitflags::iter::Iter<aya::programs::xdp::XdpFlags>
  9927. pub type aya::programs::xdp::XdpFlags::Item = aya::programs::xdp::XdpFlags
  9928. pub fn aya::programs::xdp::XdpFlags::into_iter(self) -> Self::IntoIter
  9929. impl core::marker::Copy for aya::programs::xdp::XdpFlags
  9930. impl core::ops::arith::Sub for aya::programs::xdp::XdpFlags
  9931. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  9932. pub fn aya::programs::xdp::XdpFlags::sub(self, other: Self) -> Self
  9933. impl core::ops::arith::SubAssign for aya::programs::xdp::XdpFlags
  9934. pub fn aya::programs::xdp::XdpFlags::sub_assign(&mut self, other: Self)
  9935. impl core::ops::bit::BitAnd for aya::programs::xdp::XdpFlags
  9936. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  9937. pub fn aya::programs::xdp::XdpFlags::bitand(self, other: Self) -> Self
  9938. impl core::ops::bit::BitAndAssign for aya::programs::xdp::XdpFlags
  9939. pub fn aya::programs::xdp::XdpFlags::bitand_assign(&mut self, other: Self)
  9940. impl core::ops::bit::BitOr for aya::programs::xdp::XdpFlags
  9941. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  9942. pub fn aya::programs::xdp::XdpFlags::bitor(self, other: aya::programs::xdp::XdpFlags) -> Self
  9943. impl core::ops::bit::BitOrAssign for aya::programs::xdp::XdpFlags
  9944. pub fn aya::programs::xdp::XdpFlags::bitor_assign(&mut self, other: Self)
  9945. impl core::ops::bit::BitXor for aya::programs::xdp::XdpFlags
  9946. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  9947. pub fn aya::programs::xdp::XdpFlags::bitxor(self, other: Self) -> Self
  9948. impl core::ops::bit::BitXorAssign for aya::programs::xdp::XdpFlags
  9949. pub fn aya::programs::xdp::XdpFlags::bitxor_assign(&mut self, other: Self)
  9950. impl core::ops::bit::Not for aya::programs::xdp::XdpFlags
  9951. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  9952. pub fn aya::programs::xdp::XdpFlags::not(self) -> Self
  9953. impl core::marker::Freeze for aya::programs::xdp::XdpFlags
  9954. impl core::marker::Send for aya::programs::xdp::XdpFlags
  9955. impl core::marker::Sync for aya::programs::xdp::XdpFlags
  9956. impl core::marker::Unpin for aya::programs::xdp::XdpFlags
  9957. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::xdp::XdpFlags
  9958. impl core::panic::unwind_safe::UnwindSafe for aya::programs::xdp::XdpFlags
  9959. impl<T, U> core::convert::Into<U> for aya::programs::xdp::XdpFlags where U: core::convert::From<T>
  9960. pub fn aya::programs::xdp::XdpFlags::into(self) -> U
  9961. impl<T, U> core::convert::TryFrom<U> for aya::programs::xdp::XdpFlags where U: core::convert::Into<T>
  9962. pub type aya::programs::xdp::XdpFlags::Error = core::convert::Infallible
  9963. pub fn aya::programs::xdp::XdpFlags::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9964. impl<T, U> core::convert::TryInto<U> for aya::programs::xdp::XdpFlags where U: core::convert::TryFrom<T>
  9965. pub type aya::programs::xdp::XdpFlags::Error = <U as core::convert::TryFrom<T>>::Error
  9966. pub fn aya::programs::xdp::XdpFlags::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9967. impl<T> alloc::borrow::ToOwned for aya::programs::xdp::XdpFlags where T: core::clone::Clone
  9968. pub type aya::programs::xdp::XdpFlags::Owned = T
  9969. pub fn aya::programs::xdp::XdpFlags::clone_into(&self, target: &mut T)
  9970. pub fn aya::programs::xdp::XdpFlags::to_owned(&self) -> T
  9971. impl<T> core::any::Any for aya::programs::xdp::XdpFlags where T: 'static + ?core::marker::Sized
  9972. pub fn aya::programs::xdp::XdpFlags::type_id(&self) -> core::any::TypeId
  9973. impl<T> core::borrow::Borrow<T> for aya::programs::xdp::XdpFlags where T: ?core::marker::Sized
  9974. pub fn aya::programs::xdp::XdpFlags::borrow(&self) -> &T
  9975. impl<T> core::borrow::BorrowMut<T> for aya::programs::xdp::XdpFlags where T: ?core::marker::Sized
  9976. pub fn aya::programs::xdp::XdpFlags::borrow_mut(&mut self) -> &mut T
  9977. impl<T> core::clone::CloneToUninit for aya::programs::xdp::XdpFlags where T: core::clone::Clone
  9978. pub unsafe fn aya::programs::xdp::XdpFlags::clone_to_uninit(&self, dest: *mut u8)
  9979. impl<T> core::convert::From<T> for aya::programs::xdp::XdpFlags
  9980. pub fn aya::programs::xdp::XdpFlags::from(t: T) -> T
  9981. pub trait aya::programs::Link: core::fmt::Debug + core::cmp::Eq + core::hash::Hash + 'static
  9982. pub type aya::programs::Link::Id: core::fmt::Debug + core::cmp::Eq + core::hash::Hash + equivalent::Equivalent<Self>
  9983. pub fn aya::programs::Link::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  9984. pub fn aya::programs::Link::id(&self) -> Self::Id
  9985. impl aya::programs::links::Link for aya::programs::cgroup_device::CgroupDeviceLink
  9986. pub type aya::programs::cgroup_device::CgroupDeviceLink::Id = aya::programs::cgroup_device::CgroupDeviceLinkId
  9987. pub fn aya::programs::cgroup_device::CgroupDeviceLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  9988. pub fn aya::programs::cgroup_device::CgroupDeviceLink::id(&self) -> Self::Id
  9989. impl aya::programs::links::Link for aya::programs::cgroup_skb::CgroupSkbLink
  9990. pub type aya::programs::cgroup_skb::CgroupSkbLink::Id = aya::programs::cgroup_skb::CgroupSkbLinkId
  9991. pub fn aya::programs::cgroup_skb::CgroupSkbLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  9992. pub fn aya::programs::cgroup_skb::CgroupSkbLink::id(&self) -> Self::Id
  9993. impl aya::programs::links::Link for aya::programs::cgroup_sock::CgroupSockLink
  9994. pub type aya::programs::cgroup_sock::CgroupSockLink::Id = aya::programs::cgroup_sock::CgroupSockLinkId
  9995. pub fn aya::programs::cgroup_sock::CgroupSockLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  9996. pub fn aya::programs::cgroup_sock::CgroupSockLink::id(&self) -> Self::Id
  9997. impl aya::programs::links::Link for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  9998. pub type aya::programs::cgroup_sock_addr::CgroupSockAddrLink::Id = aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  9999. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10000. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::id(&self) -> Self::Id
  10001. impl aya::programs::links::Link for aya::programs::cgroup_sockopt::CgroupSockoptLink
  10002. pub type aya::programs::cgroup_sockopt::CgroupSockoptLink::Id = aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  10003. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10004. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::id(&self) -> Self::Id
  10005. impl aya::programs::links::Link for aya::programs::cgroup_sysctl::CgroupSysctlLink
  10006. pub type aya::programs::cgroup_sysctl::CgroupSysctlLink::Id = aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  10007. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10008. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::id(&self) -> Self::Id
  10009. impl aya::programs::links::Link for aya::programs::extension::ExtensionLink
  10010. pub type aya::programs::extension::ExtensionLink::Id = aya::programs::extension::ExtensionLinkId
  10011. pub fn aya::programs::extension::ExtensionLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10012. pub fn aya::programs::extension::ExtensionLink::id(&self) -> Self::Id
  10013. impl aya::programs::links::Link for aya::programs::fentry::FEntryLink
  10014. pub type aya::programs::fentry::FEntryLink::Id = aya::programs::fentry::FEntryLinkId
  10015. pub fn aya::programs::fentry::FEntryLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10016. pub fn aya::programs::fentry::FEntryLink::id(&self) -> Self::Id
  10017. impl aya::programs::links::Link for aya::programs::fexit::FExitLink
  10018. pub type aya::programs::fexit::FExitLink::Id = aya::programs::fexit::FExitLinkId
  10019. pub fn aya::programs::fexit::FExitLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10020. pub fn aya::programs::fexit::FExitLink::id(&self) -> Self::Id
  10021. impl aya::programs::links::Link for aya::programs::flow_dissector::FlowDissectorLink
  10022. pub type aya::programs::flow_dissector::FlowDissectorLink::Id = aya::programs::flow_dissector::FlowDissectorLinkId
  10023. pub fn aya::programs::flow_dissector::FlowDissectorLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10024. pub fn aya::programs::flow_dissector::FlowDissectorLink::id(&self) -> Self::Id
  10025. impl aya::programs::links::Link for aya::programs::iter::IterLink
  10026. pub type aya::programs::iter::IterLink::Id = aya::programs::iter::IterLinkId
  10027. pub fn aya::programs::iter::IterLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10028. pub fn aya::programs::iter::IterLink::id(&self) -> Self::Id
  10029. impl aya::programs::links::Link for aya::programs::kprobe::KProbeLink
  10030. pub type aya::programs::kprobe::KProbeLink::Id = aya::programs::kprobe::KProbeLinkId
  10031. pub fn aya::programs::kprobe::KProbeLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10032. pub fn aya::programs::kprobe::KProbeLink::id(&self) -> Self::Id
  10033. impl aya::programs::links::Link for aya::programs::links::FdLink
  10034. pub type aya::programs::links::FdLink::Id = aya::programs::links::FdLinkId
  10035. pub fn aya::programs::links::FdLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10036. pub fn aya::programs::links::FdLink::id(&self) -> Self::Id
  10037. impl aya::programs::links::Link for aya::programs::links::ProgAttachLink
  10038. pub type aya::programs::links::ProgAttachLink::Id = aya::programs::links::ProgAttachLinkId
  10039. pub fn aya::programs::links::ProgAttachLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10040. pub fn aya::programs::links::ProgAttachLink::id(&self) -> Self::Id
  10041. impl aya::programs::links::Link for aya::programs::lirc_mode2::LircLink
  10042. pub type aya::programs::lirc_mode2::LircLink::Id = aya::programs::lirc_mode2::LircLinkId
  10043. pub fn aya::programs::lirc_mode2::LircLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10044. pub fn aya::programs::lirc_mode2::LircLink::id(&self) -> Self::Id
  10045. impl aya::programs::links::Link for aya::programs::lsm::LsmLink
  10046. pub type aya::programs::lsm::LsmLink::Id = aya::programs::lsm::LsmLinkId
  10047. pub fn aya::programs::lsm::LsmLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10048. pub fn aya::programs::lsm::LsmLink::id(&self) -> Self::Id
  10049. impl aya::programs::links::Link for aya::programs::perf_attach::PerfLink
  10050. pub type aya::programs::perf_attach::PerfLink::Id = aya::programs::perf_attach::PerfLinkId
  10051. pub fn aya::programs::perf_attach::PerfLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10052. pub fn aya::programs::perf_attach::PerfLink::id(&self) -> Self::Id
  10053. impl aya::programs::links::Link for aya::programs::perf_event::PerfEventLink
  10054. pub type aya::programs::perf_event::PerfEventLink::Id = aya::programs::perf_event::PerfEventLinkId
  10055. pub fn aya::programs::perf_event::PerfEventLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10056. pub fn aya::programs::perf_event::PerfEventLink::id(&self) -> Self::Id
  10057. impl aya::programs::links::Link for aya::programs::raw_trace_point::RawTracePointLink
  10058. pub type aya::programs::raw_trace_point::RawTracePointLink::Id = aya::programs::raw_trace_point::RawTracePointLinkId
  10059. pub fn aya::programs::raw_trace_point::RawTracePointLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10060. pub fn aya::programs::raw_trace_point::RawTracePointLink::id(&self) -> Self::Id
  10061. impl aya::programs::links::Link for aya::programs::sk_lookup::SkLookupLink
  10062. pub type aya::programs::sk_lookup::SkLookupLink::Id = aya::programs::sk_lookup::SkLookupLinkId
  10063. pub fn aya::programs::sk_lookup::SkLookupLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10064. pub fn aya::programs::sk_lookup::SkLookupLink::id(&self) -> Self::Id
  10065. impl aya::programs::links::Link for aya::programs::sk_msg::SkMsgLink
  10066. pub type aya::programs::sk_msg::SkMsgLink::Id = aya::programs::sk_msg::SkMsgLinkId
  10067. pub fn aya::programs::sk_msg::SkMsgLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10068. pub fn aya::programs::sk_msg::SkMsgLink::id(&self) -> Self::Id
  10069. impl aya::programs::links::Link for aya::programs::sk_skb::SkSkbLink
  10070. pub type aya::programs::sk_skb::SkSkbLink::Id = aya::programs::sk_skb::SkSkbLinkId
  10071. pub fn aya::programs::sk_skb::SkSkbLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10072. pub fn aya::programs::sk_skb::SkSkbLink::id(&self) -> Self::Id
  10073. impl aya::programs::links::Link for aya::programs::sock_ops::SockOpsLink
  10074. pub type aya::programs::sock_ops::SockOpsLink::Id = aya::programs::sock_ops::SockOpsLinkId
  10075. pub fn aya::programs::sock_ops::SockOpsLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10076. pub fn aya::programs::sock_ops::SockOpsLink::id(&self) -> Self::Id
  10077. impl aya::programs::links::Link for aya::programs::socket_filter::SocketFilterLink
  10078. pub type aya::programs::socket_filter::SocketFilterLink::Id = aya::programs::socket_filter::SocketFilterLinkId
  10079. pub fn aya::programs::socket_filter::SocketFilterLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10080. pub fn aya::programs::socket_filter::SocketFilterLink::id(&self) -> Self::Id
  10081. impl aya::programs::links::Link for aya::programs::tc::SchedClassifierLink
  10082. pub type aya::programs::tc::SchedClassifierLink::Id = aya::programs::tc::SchedClassifierLinkId
  10083. pub fn aya::programs::tc::SchedClassifierLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10084. pub fn aya::programs::tc::SchedClassifierLink::id(&self) -> Self::Id
  10085. impl aya::programs::links::Link for aya::programs::tp_btf::BtfTracePointLink
  10086. pub type aya::programs::tp_btf::BtfTracePointLink::Id = aya::programs::tp_btf::BtfTracePointLinkId
  10087. pub fn aya::programs::tp_btf::BtfTracePointLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10088. pub fn aya::programs::tp_btf::BtfTracePointLink::id(&self) -> Self::Id
  10089. impl aya::programs::links::Link for aya::programs::trace_point::TracePointLink
  10090. pub type aya::programs::trace_point::TracePointLink::Id = aya::programs::trace_point::TracePointLinkId
  10091. pub fn aya::programs::trace_point::TracePointLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10092. pub fn aya::programs::trace_point::TracePointLink::id(&self) -> Self::Id
  10093. impl aya::programs::links::Link for aya::programs::uprobe::UProbeLink
  10094. pub type aya::programs::uprobe::UProbeLink::Id = aya::programs::uprobe::UProbeLinkId
  10095. pub fn aya::programs::uprobe::UProbeLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10096. pub fn aya::programs::uprobe::UProbeLink::id(&self) -> Self::Id
  10097. impl aya::programs::links::Link for aya::programs::xdp::XdpLink
  10098. pub type aya::programs::xdp::XdpLink::Id = aya::programs::xdp::XdpLinkId
  10099. pub fn aya::programs::xdp::XdpLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10100. pub fn aya::programs::xdp::XdpLink::id(&self) -> Self::Id
  10101. pub trait aya::programs::MultiProgLink
  10102. pub fn aya::programs::MultiProgLink::fd(&self) -> core::result::Result<std::os::fd::owned::BorrowedFd<'_>, aya::programs::links::LinkError>
  10103. impl aya::programs::MultiProgLink for aya::programs::tc::SchedClassifierLink
  10104. pub fn aya::programs::tc::SchedClassifierLink::fd(&self) -> core::result::Result<std::os::fd::owned::BorrowedFd<'_>, aya::programs::links::LinkError>
  10105. pub trait aya::programs::MultiProgram
  10106. pub fn aya::programs::MultiProgram::fd(&self) -> core::result::Result<std::os::fd::owned::BorrowedFd<'_>, aya::programs::ProgramError>
  10107. impl aya::programs::MultiProgram for aya::programs::tc::SchedClassifier
  10108. pub fn aya::programs::tc::SchedClassifier::fd(&self) -> core::result::Result<std::os::fd::owned::BorrowedFd<'_>, aya::programs::ProgramError>
  10109. pub fn aya::programs::loaded_links() -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<aya::programs::links::LinkInfo, aya::programs::links::LinkError>>
  10110. pub fn aya::programs::loaded_programs() -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>>
  10111. pub mod aya::sys
  10112. #[non_exhaustive] pub enum aya::sys::Stats
  10113. pub aya::sys::Stats::RunTime
  10114. impl core::clone::Clone for aya::sys::Stats
  10115. pub fn aya::sys::Stats::clone(&self) -> aya::sys::Stats
  10116. impl core::convert::From<aya::sys::Stats> for aya_obj::generated::linux_bindings_x86_64::bpf_stats_type
  10117. pub fn aya_obj::generated::linux_bindings_x86_64::bpf_stats_type::from(value: aya::sys::Stats) -> Self
  10118. impl core::fmt::Debug for aya::sys::Stats
  10119. pub fn aya::sys::Stats::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  10120. impl core::marker::Copy for aya::sys::Stats
  10121. impl core::marker::Freeze for aya::sys::Stats
  10122. impl core::marker::Send for aya::sys::Stats
  10123. impl core::marker::Sync for aya::sys::Stats
  10124. impl core::marker::Unpin for aya::sys::Stats
  10125. impl core::panic::unwind_safe::RefUnwindSafe for aya::sys::Stats
  10126. impl core::panic::unwind_safe::UnwindSafe for aya::sys::Stats
  10127. impl<T, U> core::convert::Into<U> for aya::sys::Stats where U: core::convert::From<T>
  10128. pub fn aya::sys::Stats::into(self) -> U
  10129. impl<T, U> core::convert::TryFrom<U> for aya::sys::Stats where U: core::convert::Into<T>
  10130. pub type aya::sys::Stats::Error = core::convert::Infallible
  10131. pub fn aya::sys::Stats::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  10132. impl<T, U> core::convert::TryInto<U> for aya::sys::Stats where U: core::convert::TryFrom<T>
  10133. pub type aya::sys::Stats::Error = <U as core::convert::TryFrom<T>>::Error
  10134. pub fn aya::sys::Stats::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  10135. impl<T> alloc::borrow::ToOwned for aya::sys::Stats where T: core::clone::Clone
  10136. pub type aya::sys::Stats::Owned = T
  10137. pub fn aya::sys::Stats::clone_into(&self, target: &mut T)
  10138. pub fn aya::sys::Stats::to_owned(&self) -> T
  10139. impl<T> core::any::Any for aya::sys::Stats where T: 'static + ?core::marker::Sized
  10140. pub fn aya::sys::Stats::type_id(&self) -> core::any::TypeId
  10141. impl<T> core::borrow::Borrow<T> for aya::sys::Stats where T: ?core::marker::Sized
  10142. pub fn aya::sys::Stats::borrow(&self) -> &T
  10143. impl<T> core::borrow::BorrowMut<T> for aya::sys::Stats where T: ?core::marker::Sized
  10144. pub fn aya::sys::Stats::borrow_mut(&mut self) -> &mut T
  10145. impl<T> core::clone::CloneToUninit for aya::sys::Stats where T: core::clone::Clone
  10146. pub unsafe fn aya::sys::Stats::clone_to_uninit(&self, dest: *mut u8)
  10147. impl<T> core::convert::From<T> for aya::sys::Stats
  10148. pub fn aya::sys::Stats::from(t: T) -> T
  10149. pub struct aya::sys::SyscallError
  10150. pub aya::sys::SyscallError::call: &'static str
  10151. pub aya::sys::SyscallError::io_error: std::io::error::Error
  10152. impl core::convert::From<aya::sys::SyscallError> for aya::maps::MapError
  10153. pub fn aya::maps::MapError::from(source: aya::sys::SyscallError) -> Self
  10154. impl core::convert::From<aya::sys::SyscallError> for aya::pin::PinError
  10155. pub fn aya::pin::PinError::from(source: aya::sys::SyscallError) -> Self
  10156. impl core::convert::From<aya::sys::SyscallError> for aya::programs::ProgramError
  10157. pub fn aya::programs::ProgramError::from(source: aya::sys::SyscallError) -> Self
  10158. impl core::convert::From<aya::sys::SyscallError> for aya::programs::links::LinkError
  10159. pub fn aya::programs::links::LinkError::from(source: aya::sys::SyscallError) -> Self
  10160. impl core::error::Error for aya::sys::SyscallError
  10161. pub fn aya::sys::SyscallError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  10162. impl core::fmt::Debug for aya::sys::SyscallError
  10163. pub fn aya::sys::SyscallError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  10164. impl core::fmt::Display for aya::sys::SyscallError
  10165. pub fn aya::sys::SyscallError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  10166. impl core::marker::Freeze for aya::sys::SyscallError
  10167. impl core::marker::Send for aya::sys::SyscallError
  10168. impl core::marker::Sync for aya::sys::SyscallError
  10169. impl core::marker::Unpin for aya::sys::SyscallError
  10170. impl !core::panic::unwind_safe::RefUnwindSafe for aya::sys::SyscallError
  10171. impl !core::panic::unwind_safe::UnwindSafe for aya::sys::SyscallError
  10172. impl<T, U> core::convert::Into<U> for aya::sys::SyscallError where U: core::convert::From<T>
  10173. pub fn aya::sys::SyscallError::into(self) -> U
  10174. impl<T, U> core::convert::TryFrom<U> for aya::sys::SyscallError where U: core::convert::Into<T>
  10175. pub type aya::sys::SyscallError::Error = core::convert::Infallible
  10176. pub fn aya::sys::SyscallError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  10177. impl<T, U> core::convert::TryInto<U> for aya::sys::SyscallError where U: core::convert::TryFrom<T>
  10178. pub type aya::sys::SyscallError::Error = <U as core::convert::TryFrom<T>>::Error
  10179. pub fn aya::sys::SyscallError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  10180. impl<T> alloc::string::ToString for aya::sys::SyscallError where T: core::fmt::Display + ?core::marker::Sized
  10181. pub fn aya::sys::SyscallError::to_string(&self) -> alloc::string::String
  10182. impl<T> core::any::Any for aya::sys::SyscallError where T: 'static + ?core::marker::Sized
  10183. pub fn aya::sys::SyscallError::type_id(&self) -> core::any::TypeId
  10184. impl<T> core::borrow::Borrow<T> for aya::sys::SyscallError where T: ?core::marker::Sized
  10185. pub fn aya::sys::SyscallError::borrow(&self) -> &T
  10186. impl<T> core::borrow::BorrowMut<T> for aya::sys::SyscallError where T: ?core::marker::Sized
  10187. pub fn aya::sys::SyscallError::borrow_mut(&mut self) -> &mut T
  10188. impl<T> core::convert::From<T> for aya::sys::SyscallError
  10189. pub fn aya::sys::SyscallError::from(t: T) -> T
  10190. pub fn aya::sys::enable_stats(stats_type: aya::sys::Stats) -> core::result::Result<std::os::fd::owned::OwnedFd, aya::sys::SyscallError>
  10191. pub fn aya::sys::is_map_supported(map_type: aya::maps::MapType) -> core::result::Result<bool, aya::sys::SyscallError>
  10192. pub fn aya::sys::is_program_supported(program_type: aya::programs::ProgramType) -> core::result::Result<bool, aya::programs::ProgramError>
  10193. pub mod aya::util
  10194. pub struct aya::util::KernelVersion
  10195. impl aya::util::KernelVersion
  10196. pub fn aya::util::KernelVersion::code(self) -> u32
  10197. pub fn aya::util::KernelVersion::current() -> core::result::Result<Self, impl core::error::Error>
  10198. pub fn aya::util::KernelVersion::new(major: u8, minor: u8, patch: u16) -> Self
  10199. impl core::clone::Clone for aya::util::KernelVersion
  10200. pub fn aya::util::KernelVersion::clone(&self) -> aya::util::KernelVersion
  10201. impl core::cmp::Eq for aya::util::KernelVersion
  10202. impl core::cmp::PartialEq for aya::util::KernelVersion
  10203. pub fn aya::util::KernelVersion::eq(&self, other: &aya::util::KernelVersion) -> bool
  10204. impl core::cmp::PartialOrd for aya::util::KernelVersion
  10205. pub fn aya::util::KernelVersion::partial_cmp(&self, other: &aya::util::KernelVersion) -> core::option::Option<core::cmp::Ordering>
  10206. impl core::fmt::Debug for aya::util::KernelVersion
  10207. pub fn aya::util::KernelVersion::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  10208. impl core::fmt::Display for aya::util::KernelVersion
  10209. pub fn aya::util::KernelVersion::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  10210. impl core::marker::Copy for aya::util::KernelVersion
  10211. impl core::marker::StructuralPartialEq for aya::util::KernelVersion
  10212. impl core::marker::Freeze for aya::util::KernelVersion
  10213. impl core::marker::Send for aya::util::KernelVersion
  10214. impl core::marker::Sync for aya::util::KernelVersion
  10215. impl core::marker::Unpin for aya::util::KernelVersion
  10216. impl core::panic::unwind_safe::RefUnwindSafe for aya::util::KernelVersion
  10217. impl core::panic::unwind_safe::UnwindSafe for aya::util::KernelVersion
  10218. impl<Q, K> equivalent::Equivalent<K> for aya::util::KernelVersion where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  10219. pub fn aya::util::KernelVersion::equivalent(&self, key: &K) -> bool
  10220. impl<T, U> core::convert::Into<U> for aya::util::KernelVersion where U: core::convert::From<T>
  10221. pub fn aya::util::KernelVersion::into(self) -> U
  10222. impl<T, U> core::convert::TryFrom<U> for aya::util::KernelVersion where U: core::convert::Into<T>
  10223. pub type aya::util::KernelVersion::Error = core::convert::Infallible
  10224. pub fn aya::util::KernelVersion::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  10225. impl<T, U> core::convert::TryInto<U> for aya::util::KernelVersion where U: core::convert::TryFrom<T>
  10226. pub type aya::util::KernelVersion::Error = <U as core::convert::TryFrom<T>>::Error
  10227. pub fn aya::util::KernelVersion::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  10228. impl<T> alloc::borrow::ToOwned for aya::util::KernelVersion where T: core::clone::Clone
  10229. pub type aya::util::KernelVersion::Owned = T
  10230. pub fn aya::util::KernelVersion::clone_into(&self, target: &mut T)
  10231. pub fn aya::util::KernelVersion::to_owned(&self) -> T
  10232. impl<T> alloc::string::ToString for aya::util::KernelVersion where T: core::fmt::Display + ?core::marker::Sized
  10233. pub fn aya::util::KernelVersion::to_string(&self) -> alloc::string::String
  10234. impl<T> core::any::Any for aya::util::KernelVersion where T: 'static + ?core::marker::Sized
  10235. pub fn aya::util::KernelVersion::type_id(&self) -> core::any::TypeId
  10236. impl<T> core::borrow::Borrow<T> for aya::util::KernelVersion where T: ?core::marker::Sized
  10237. pub fn aya::util::KernelVersion::borrow(&self) -> &T
  10238. impl<T> core::borrow::BorrowMut<T> for aya::util::KernelVersion where T: ?core::marker::Sized
  10239. pub fn aya::util::KernelVersion::borrow_mut(&mut self) -> &mut T
  10240. impl<T> core::clone::CloneToUninit for aya::util::KernelVersion where T: core::clone::Clone
  10241. pub unsafe fn aya::util::KernelVersion::clone_to_uninit(&self, dest: *mut u8)
  10242. impl<T> core::convert::From<T> for aya::util::KernelVersion
  10243. pub fn aya::util::KernelVersion::from(t: T) -> T
  10244. pub fn aya::util::kernel_symbols() -> core::result::Result<alloc::collections::btree::map::BTreeMap<u64, alloc::string::String>, std::io::error::Error>
  10245. pub fn aya::util::nr_cpus() -> core::result::Result<usize, (&'static str, std::io::error::Error)>
  10246. pub fn aya::util::online_cpus() -> core::result::Result<alloc::vec::Vec<u32>, (&'static str, std::io::error::Error)>
  10247. pub fn aya::util::syscall_prefix() -> core::result::Result<&'static str, std::io::error::Error>
  10248. pub macro aya::include_bytes_aligned!
  10249. pub enum aya::EbpfError
  10250. pub aya::EbpfError::BtfError(aya_obj::btf::btf::BtfError)
  10251. pub aya::EbpfError::BtfRelocationError(aya_obj::btf::relocation::BtfRelocationError)
  10252. pub aya::EbpfError::FileError
  10253. pub aya::EbpfError::FileError::error: std::io::error::Error
  10254. pub aya::EbpfError::FileError::path: std::path::PathBuf
  10255. pub aya::EbpfError::MapError(aya::maps::MapError)
  10256. pub aya::EbpfError::NoBTF
  10257. pub aya::EbpfError::ParseError(aya_obj::obj::ParseError)
  10258. pub aya::EbpfError::ProgramError(aya::programs::ProgramError)
  10259. pub aya::EbpfError::RelocationError(aya_obj::relocation::EbpfRelocationError)
  10260. pub aya::EbpfError::UnexpectedPinningType
  10261. pub aya::EbpfError::UnexpectedPinningType::name: u32
  10262. impl core::convert::From<aya::maps::MapError> for aya::EbpfError
  10263. pub fn aya::EbpfError::from(source: aya::maps::MapError) -> Self
  10264. impl core::convert::From<aya::programs::ProgramError> for aya::EbpfError
  10265. pub fn aya::EbpfError::from(source: aya::programs::ProgramError) -> Self
  10266. impl core::convert::From<aya_obj::btf::btf::BtfError> for aya::EbpfError
  10267. pub fn aya::EbpfError::from(source: aya_obj::btf::btf::BtfError) -> Self
  10268. impl core::convert::From<aya_obj::btf::relocation::BtfRelocationError> for aya::EbpfError
  10269. pub fn aya::EbpfError::from(source: aya_obj::btf::relocation::BtfRelocationError) -> Self
  10270. impl core::convert::From<aya_obj::obj::ParseError> for aya::EbpfError
  10271. pub fn aya::EbpfError::from(source: aya_obj::obj::ParseError) -> Self
  10272. impl core::convert::From<aya_obj::relocation::EbpfRelocationError> for aya::EbpfError
  10273. pub fn aya::EbpfError::from(source: aya_obj::relocation::EbpfRelocationError) -> Self
  10274. impl core::error::Error for aya::EbpfError
  10275. pub fn aya::EbpfError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  10276. impl core::fmt::Debug for aya::EbpfError
  10277. pub fn aya::EbpfError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  10278. impl core::fmt::Display for aya::EbpfError
  10279. pub fn aya::EbpfError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  10280. impl core::marker::Freeze for aya::EbpfError
  10281. impl core::marker::Send for aya::EbpfError
  10282. impl core::marker::Sync for aya::EbpfError
  10283. impl core::marker::Unpin for aya::EbpfError
  10284. impl !core::panic::unwind_safe::RefUnwindSafe for aya::EbpfError
  10285. impl !core::panic::unwind_safe::UnwindSafe for aya::EbpfError
  10286. impl<T, U> core::convert::Into<U> for aya::EbpfError where U: core::convert::From<T>
  10287. pub fn aya::EbpfError::into(self) -> U
  10288. impl<T, U> core::convert::TryFrom<U> for aya::EbpfError where U: core::convert::Into<T>
  10289. pub type aya::EbpfError::Error = core::convert::Infallible
  10290. pub fn aya::EbpfError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  10291. impl<T, U> core::convert::TryInto<U> for aya::EbpfError where U: core::convert::TryFrom<T>
  10292. pub type aya::EbpfError::Error = <U as core::convert::TryFrom<T>>::Error
  10293. pub fn aya::EbpfError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  10294. impl<T> alloc::string::ToString for aya::EbpfError where T: core::fmt::Display + ?core::marker::Sized
  10295. pub fn aya::EbpfError::to_string(&self) -> alloc::string::String
  10296. impl<T> core::any::Any for aya::EbpfError where T: 'static + ?core::marker::Sized
  10297. pub fn aya::EbpfError::type_id(&self) -> core::any::TypeId
  10298. impl<T> core::borrow::Borrow<T> for aya::EbpfError where T: ?core::marker::Sized
  10299. pub fn aya::EbpfError::borrow(&self) -> &T
  10300. impl<T> core::borrow::BorrowMut<T> for aya::EbpfError where T: ?core::marker::Sized
  10301. pub fn aya::EbpfError::borrow_mut(&mut self) -> &mut T
  10302. impl<T> core::convert::From<T> for aya::EbpfError
  10303. pub fn aya::EbpfError::from(t: T) -> T
  10304. pub struct aya::Ebpf
  10305. impl aya::Ebpf
  10306. pub fn aya::Ebpf::load(data: &[u8]) -> core::result::Result<Self, aya::EbpfError>
  10307. pub fn aya::Ebpf::load_file<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::EbpfError>
  10308. pub fn aya::Ebpf::map(&self, name: &str) -> core::option::Option<&aya::maps::Map>
  10309. pub fn aya::Ebpf::map_mut(&mut self, name: &str) -> core::option::Option<&mut aya::maps::Map>
  10310. pub fn aya::Ebpf::maps(&self) -> impl core::iter::traits::iterator::Iterator<Item = (&str, &aya::maps::Map)>
  10311. pub fn aya::Ebpf::maps_mut(&mut self) -> impl core::iter::traits::iterator::Iterator<Item = (&str, &mut aya::maps::Map)>
  10312. pub fn aya::Ebpf::program(&self, name: &str) -> core::option::Option<&aya::programs::Program>
  10313. pub fn aya::Ebpf::program_mut(&mut self, name: &str) -> core::option::Option<&mut aya::programs::Program>
  10314. pub fn aya::Ebpf::programs(&self) -> impl core::iter::traits::iterator::Iterator<Item = (&str, &aya::programs::Program)>
  10315. pub fn aya::Ebpf::programs_mut(&mut self) -> impl core::iter::traits::iterator::Iterator<Item = (&str, &mut aya::programs::Program)>
  10316. pub fn aya::Ebpf::take_map(&mut self, name: &str) -> core::option::Option<aya::maps::Map>
  10317. impl core::fmt::Debug for aya::Ebpf
  10318. pub fn aya::Ebpf::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  10319. impl core::marker::Freeze for aya::Ebpf
  10320. impl core::marker::Send for aya::Ebpf
  10321. impl core::marker::Sync for aya::Ebpf
  10322. impl core::marker::Unpin for aya::Ebpf
  10323. impl core::panic::unwind_safe::RefUnwindSafe for aya::Ebpf
  10324. impl core::panic::unwind_safe::UnwindSafe for aya::Ebpf
  10325. impl<T, U> core::convert::Into<U> for aya::Ebpf where U: core::convert::From<T>
  10326. pub fn aya::Ebpf::into(self) -> U
  10327. impl<T, U> core::convert::TryFrom<U> for aya::Ebpf where U: core::convert::Into<T>
  10328. pub type aya::Ebpf::Error = core::convert::Infallible
  10329. pub fn aya::Ebpf::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  10330. impl<T, U> core::convert::TryInto<U> for aya::Ebpf where U: core::convert::TryFrom<T>
  10331. pub type aya::Ebpf::Error = <U as core::convert::TryFrom<T>>::Error
  10332. pub fn aya::Ebpf::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  10333. impl<T> core::any::Any for aya::Ebpf where T: 'static + ?core::marker::Sized
  10334. pub fn aya::Ebpf::type_id(&self) -> core::any::TypeId
  10335. impl<T> core::borrow::Borrow<T> for aya::Ebpf where T: ?core::marker::Sized
  10336. pub fn aya::Ebpf::borrow(&self) -> &T
  10337. impl<T> core::borrow::BorrowMut<T> for aya::Ebpf where T: ?core::marker::Sized
  10338. pub fn aya::Ebpf::borrow_mut(&mut self) -> &mut T
  10339. impl<T> core::convert::From<T> for aya::Ebpf
  10340. pub fn aya::Ebpf::from(t: T) -> T
  10341. pub struct aya::EbpfLoader<'a>
  10342. impl<'a> aya::EbpfLoader<'a>
  10343. pub fn aya::EbpfLoader<'a>::allow_unsupported_maps(&mut self) -> &mut Self
  10344. pub fn aya::EbpfLoader<'a>::btf(&mut self, btf: core::option::Option<&'a aya_obj::btf::btf::Btf>) -> &mut Self
  10345. pub fn aya::EbpfLoader<'a>::extension(&mut self, name: &'a str) -> &mut Self
  10346. pub fn aya::EbpfLoader<'a>::load(&mut self, data: &[u8]) -> core::result::Result<aya::Ebpf, aya::EbpfError>
  10347. pub fn aya::EbpfLoader<'a>::load_file<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<aya::Ebpf, aya::EbpfError>
  10348. pub fn aya::EbpfLoader<'a>::map_pin_path<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> &mut Self
  10349. pub fn aya::EbpfLoader<'a>::new() -> Self
  10350. pub fn aya::EbpfLoader<'a>::set_global<T: core::convert::Into<aya::GlobalData<'a>>>(&mut self, name: &'a str, value: T, must_exist: bool) -> &mut Self
  10351. pub fn aya::EbpfLoader<'a>::set_max_entries(&mut self, name: &'a str, size: u32) -> &mut Self
  10352. pub fn aya::EbpfLoader<'a>::verifier_log_level(&mut self, level: aya::VerifierLogLevel) -> &mut Self
  10353. impl core::default::Default for aya::EbpfLoader<'_>
  10354. pub fn aya::EbpfLoader<'_>::default() -> Self
  10355. impl<'a> core::fmt::Debug for aya::EbpfLoader<'a>
  10356. pub fn aya::EbpfLoader<'a>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  10357. impl<'a> core::marker::Freeze for aya::EbpfLoader<'a>
  10358. impl<'a> core::marker::Send for aya::EbpfLoader<'a>
  10359. impl<'a> core::marker::Sync for aya::EbpfLoader<'a>
  10360. impl<'a> core::marker::Unpin for aya::EbpfLoader<'a>
  10361. impl<'a> core::panic::unwind_safe::RefUnwindSafe for aya::EbpfLoader<'a>
  10362. impl<'a> core::panic::unwind_safe::UnwindSafe for aya::EbpfLoader<'a>
  10363. impl<T, U> core::convert::Into<U> for aya::EbpfLoader<'a> where U: core::convert::From<T>
  10364. pub fn aya::EbpfLoader<'a>::into(self) -> U
  10365. impl<T, U> core::convert::TryFrom<U> for aya::EbpfLoader<'a> where U: core::convert::Into<T>
  10366. pub type aya::EbpfLoader<'a>::Error = core::convert::Infallible
  10367. pub fn aya::EbpfLoader<'a>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  10368. impl<T, U> core::convert::TryInto<U> for aya::EbpfLoader<'a> where U: core::convert::TryFrom<T>
  10369. pub type aya::EbpfLoader<'a>::Error = <U as core::convert::TryFrom<T>>::Error
  10370. pub fn aya::EbpfLoader<'a>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  10371. impl<T> core::any::Any for aya::EbpfLoader<'a> where T: 'static + ?core::marker::Sized
  10372. pub fn aya::EbpfLoader<'a>::type_id(&self) -> core::any::TypeId
  10373. impl<T> core::borrow::Borrow<T> for aya::EbpfLoader<'a> where T: ?core::marker::Sized
  10374. pub fn aya::EbpfLoader<'a>::borrow(&self) -> &T
  10375. impl<T> core::borrow::BorrowMut<T> for aya::EbpfLoader<'a> where T: ?core::marker::Sized
  10376. pub fn aya::EbpfLoader<'a>::borrow_mut(&mut self) -> &mut T
  10377. impl<T> core::convert::From<T> for aya::EbpfLoader<'a>
  10378. pub fn aya::EbpfLoader<'a>::from(t: T) -> T
  10379. pub struct aya::GlobalData<'a>
  10380. impl<'a, T: aya::Pod> core::convert::From<&'a T> for aya::GlobalData<'a>
  10381. pub fn aya::GlobalData<'a>::from(v: &'a T) -> Self
  10382. impl<'a, T: aya::Pod> core::convert::From<&'a [T]> for aya::GlobalData<'a>
  10383. pub fn aya::GlobalData<'a>::from(s: &'a [T]) -> Self
  10384. impl<'a> core::marker::Freeze for aya::GlobalData<'a>
  10385. impl<'a> core::marker::Send for aya::GlobalData<'a>
  10386. impl<'a> core::marker::Sync for aya::GlobalData<'a>
  10387. impl<'a> core::marker::Unpin for aya::GlobalData<'a>
  10388. impl<'a> core::panic::unwind_safe::RefUnwindSafe for aya::GlobalData<'a>
  10389. impl<'a> core::panic::unwind_safe::UnwindSafe for aya::GlobalData<'a>
  10390. impl<T, U> core::convert::Into<U> for aya::GlobalData<'a> where U: core::convert::From<T>
  10391. pub fn aya::GlobalData<'a>::into(self) -> U
  10392. impl<T, U> core::convert::TryFrom<U> for aya::GlobalData<'a> where U: core::convert::Into<T>
  10393. pub type aya::GlobalData<'a>::Error = core::convert::Infallible
  10394. pub fn aya::GlobalData<'a>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  10395. impl<T, U> core::convert::TryInto<U> for aya::GlobalData<'a> where U: core::convert::TryFrom<T>
  10396. pub type aya::GlobalData<'a>::Error = <U as core::convert::TryFrom<T>>::Error
  10397. pub fn aya::GlobalData<'a>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  10398. impl<T> core::any::Any for aya::GlobalData<'a> where T: 'static + ?core::marker::Sized
  10399. pub fn aya::GlobalData<'a>::type_id(&self) -> core::any::TypeId
  10400. impl<T> core::borrow::Borrow<T> for aya::GlobalData<'a> where T: ?core::marker::Sized
  10401. pub fn aya::GlobalData<'a>::borrow(&self) -> &T
  10402. impl<T> core::borrow::BorrowMut<T> for aya::GlobalData<'a> where T: ?core::marker::Sized
  10403. pub fn aya::GlobalData<'a>::borrow_mut(&mut self) -> &mut T
  10404. impl<T> core::convert::From<T> for aya::GlobalData<'a>
  10405. pub fn aya::GlobalData<'a>::from(t: T) -> T
  10406. pub struct aya::VerifierLogLevel(_)
  10407. impl aya::VerifierLogLevel
  10408. pub const aya::VerifierLogLevel::DEBUG: Self
  10409. pub const aya::VerifierLogLevel::DISABLE: Self
  10410. pub const aya::VerifierLogLevel::STATS: Self
  10411. pub const aya::VerifierLogLevel::VERBOSE: Self
  10412. impl aya::VerifierLogLevel
  10413. pub const fn aya::VerifierLogLevel::all() -> Self
  10414. pub const fn aya::VerifierLogLevel::bits(&self) -> u32
  10415. pub const fn aya::VerifierLogLevel::complement(self) -> Self
  10416. pub const fn aya::VerifierLogLevel::contains(&self, other: Self) -> bool
  10417. pub const fn aya::VerifierLogLevel::difference(self, other: Self) -> Self
  10418. pub const fn aya::VerifierLogLevel::empty() -> Self
  10419. pub const fn aya::VerifierLogLevel::from_bits(bits: u32) -> core::option::Option<Self>
  10420. pub const fn aya::VerifierLogLevel::from_bits_retain(bits: u32) -> Self
  10421. pub const fn aya::VerifierLogLevel::from_bits_truncate(bits: u32) -> Self
  10422. pub fn aya::VerifierLogLevel::from_name(name: &str) -> core::option::Option<Self>
  10423. pub fn aya::VerifierLogLevel::insert(&mut self, other: Self)
  10424. pub const fn aya::VerifierLogLevel::intersection(self, other: Self) -> Self
  10425. pub const fn aya::VerifierLogLevel::intersects(&self, other: Self) -> bool
  10426. pub const fn aya::VerifierLogLevel::is_all(&self) -> bool
  10427. pub const fn aya::VerifierLogLevel::is_empty(&self) -> bool
  10428. pub fn aya::VerifierLogLevel::remove(&mut self, other: Self)
  10429. pub fn aya::VerifierLogLevel::set(&mut self, other: Self, value: bool)
  10430. pub const fn aya::VerifierLogLevel::symmetric_difference(self, other: Self) -> Self
  10431. pub fn aya::VerifierLogLevel::toggle(&mut self, other: Self)
  10432. pub const fn aya::VerifierLogLevel::union(self, other: Self) -> Self
  10433. impl aya::VerifierLogLevel
  10434. pub const fn aya::VerifierLogLevel::iter(&self) -> bitflags::iter::Iter<aya::VerifierLogLevel>
  10435. pub const fn aya::VerifierLogLevel::iter_names(&self) -> bitflags::iter::IterNames<aya::VerifierLogLevel>
  10436. impl bitflags::traits::Flags for aya::VerifierLogLevel
  10437. pub type aya::VerifierLogLevel::Bits = u32
  10438. pub const aya::VerifierLogLevel::FLAGS: &'static [bitflags::traits::Flag<aya::VerifierLogLevel>]
  10439. pub fn aya::VerifierLogLevel::bits(&self) -> u32
  10440. pub fn aya::VerifierLogLevel::from_bits_retain(bits: u32) -> aya::VerifierLogLevel
  10441. impl bitflags::traits::PublicFlags for aya::VerifierLogLevel
  10442. pub type aya::VerifierLogLevel::Internal = InternalBitFlags
  10443. pub type aya::VerifierLogLevel::Primitive = u32
  10444. impl core::clone::Clone for aya::VerifierLogLevel
  10445. pub fn aya::VerifierLogLevel::clone(&self) -> aya::VerifierLogLevel
  10446. impl core::default::Default for aya::VerifierLogLevel
  10447. pub fn aya::VerifierLogLevel::default() -> Self
  10448. impl core::fmt::Binary for aya::VerifierLogLevel
  10449. pub fn aya::VerifierLogLevel::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  10450. impl core::fmt::Debug for aya::VerifierLogLevel
  10451. pub fn aya::VerifierLogLevel::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  10452. impl core::fmt::LowerHex for aya::VerifierLogLevel
  10453. pub fn aya::VerifierLogLevel::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  10454. impl core::fmt::Octal for aya::VerifierLogLevel
  10455. pub fn aya::VerifierLogLevel::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  10456. impl core::fmt::UpperHex for aya::VerifierLogLevel
  10457. pub fn aya::VerifierLogLevel::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  10458. impl core::iter::traits::collect::Extend<aya::VerifierLogLevel> for aya::VerifierLogLevel
  10459. pub fn aya::VerifierLogLevel::extend<T: core::iter::traits::collect::IntoIterator<Item = Self>>(&mut self, iterator: T)
  10460. impl core::iter::traits::collect::FromIterator<aya::VerifierLogLevel> for aya::VerifierLogLevel
  10461. pub fn aya::VerifierLogLevel::from_iter<T: core::iter::traits::collect::IntoIterator<Item = Self>>(iterator: T) -> Self
  10462. impl core::iter::traits::collect::IntoIterator for aya::VerifierLogLevel
  10463. pub type aya::VerifierLogLevel::IntoIter = bitflags::iter::Iter<aya::VerifierLogLevel>
  10464. pub type aya::VerifierLogLevel::Item = aya::VerifierLogLevel
  10465. pub fn aya::VerifierLogLevel::into_iter(self) -> Self::IntoIter
  10466. impl core::marker::Copy for aya::VerifierLogLevel
  10467. impl core::ops::arith::Sub for aya::VerifierLogLevel
  10468. pub type aya::VerifierLogLevel::Output = aya::VerifierLogLevel
  10469. pub fn aya::VerifierLogLevel::sub(self, other: Self) -> Self
  10470. impl core::ops::arith::SubAssign for aya::VerifierLogLevel
  10471. pub fn aya::VerifierLogLevel::sub_assign(&mut self, other: Self)
  10472. impl core::ops::bit::BitAnd for aya::VerifierLogLevel
  10473. pub type aya::VerifierLogLevel::Output = aya::VerifierLogLevel
  10474. pub fn aya::VerifierLogLevel::bitand(self, other: Self) -> Self
  10475. impl core::ops::bit::BitAndAssign for aya::VerifierLogLevel
  10476. pub fn aya::VerifierLogLevel::bitand_assign(&mut self, other: Self)
  10477. impl core::ops::bit::BitOr for aya::VerifierLogLevel
  10478. pub type aya::VerifierLogLevel::Output = aya::VerifierLogLevel
  10479. pub fn aya::VerifierLogLevel::bitor(self, other: aya::VerifierLogLevel) -> Self
  10480. impl core::ops::bit::BitOrAssign for aya::VerifierLogLevel
  10481. pub fn aya::VerifierLogLevel::bitor_assign(&mut self, other: Self)
  10482. impl core::ops::bit::BitXor for aya::VerifierLogLevel
  10483. pub type aya::VerifierLogLevel::Output = aya::VerifierLogLevel
  10484. pub fn aya::VerifierLogLevel::bitxor(self, other: Self) -> Self
  10485. impl core::ops::bit::BitXorAssign for aya::VerifierLogLevel
  10486. pub fn aya::VerifierLogLevel::bitxor_assign(&mut self, other: Self)
  10487. impl core::ops::bit::Not for aya::VerifierLogLevel
  10488. pub type aya::VerifierLogLevel::Output = aya::VerifierLogLevel
  10489. pub fn aya::VerifierLogLevel::not(self) -> Self
  10490. impl core::marker::Freeze for aya::VerifierLogLevel
  10491. impl core::marker::Send for aya::VerifierLogLevel
  10492. impl core::marker::Sync for aya::VerifierLogLevel
  10493. impl core::marker::Unpin for aya::VerifierLogLevel
  10494. impl core::panic::unwind_safe::RefUnwindSafe for aya::VerifierLogLevel
  10495. impl core::panic::unwind_safe::UnwindSafe for aya::VerifierLogLevel
  10496. impl<T, U> core::convert::Into<U> for aya::VerifierLogLevel where U: core::convert::From<T>
  10497. pub fn aya::VerifierLogLevel::into(self) -> U
  10498. impl<T, U> core::convert::TryFrom<U> for aya::VerifierLogLevel where U: core::convert::Into<T>
  10499. pub type aya::VerifierLogLevel::Error = core::convert::Infallible
  10500. pub fn aya::VerifierLogLevel::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  10501. impl<T, U> core::convert::TryInto<U> for aya::VerifierLogLevel where U: core::convert::TryFrom<T>
  10502. pub type aya::VerifierLogLevel::Error = <U as core::convert::TryFrom<T>>::Error
  10503. pub fn aya::VerifierLogLevel::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  10504. impl<T> alloc::borrow::ToOwned for aya::VerifierLogLevel where T: core::clone::Clone
  10505. pub type aya::VerifierLogLevel::Owned = T
  10506. pub fn aya::VerifierLogLevel::clone_into(&self, target: &mut T)
  10507. pub fn aya::VerifierLogLevel::to_owned(&self) -> T
  10508. impl<T> core::any::Any for aya::VerifierLogLevel where T: 'static + ?core::marker::Sized
  10509. pub fn aya::VerifierLogLevel::type_id(&self) -> core::any::TypeId
  10510. impl<T> core::borrow::Borrow<T> for aya::VerifierLogLevel where T: ?core::marker::Sized
  10511. pub fn aya::VerifierLogLevel::borrow(&self) -> &T
  10512. impl<T> core::borrow::BorrowMut<T> for aya::VerifierLogLevel where T: ?core::marker::Sized
  10513. pub fn aya::VerifierLogLevel::borrow_mut(&mut self) -> &mut T
  10514. impl<T> core::clone::CloneToUninit for aya::VerifierLogLevel where T: core::clone::Clone
  10515. pub unsafe fn aya::VerifierLogLevel::clone_to_uninit(&self, dest: *mut u8)
  10516. impl<T> core::convert::From<T> for aya::VerifierLogLevel
  10517. pub fn aya::VerifierLogLevel::from(t: T) -> T
  10518. pub unsafe trait aya::Pod: core::marker::Copy + 'static
  10519. impl aya::Pod for aya_obj::generated::linux_bindings_x86_64::bpf_cpumap_val
  10520. impl aya::Pod for aya_obj::generated::linux_bindings_x86_64::bpf_devmap_val
  10521. impl aya::Pod for i128
  10522. impl aya::Pod for i16
  10523. impl aya::Pod for i32
  10524. impl aya::Pod for i64
  10525. impl aya::Pod for i8
  10526. impl aya::Pod for u128
  10527. impl aya::Pod for u16
  10528. impl aya::Pod for u32
  10529. impl aya::Pod for u64
  10530. impl aya::Pod for u8
  10531. impl<K: aya::Pod> aya::Pod for aya::maps::lpm_trie::Key<K>
  10532. impl<T: aya::Pod, const N: usize> aya::Pod for [T; N]
  10533. pub fn aya::features() -> &'static aya_obj::obj::Features
  10534. pub type aya::Bpf = aya::Ebpf
  10535. pub type aya::BpfError = aya::EbpfError
  10536. pub type aya::BpfLoader<'a> = aya::EbpfLoader<'a>